diff --git a/.editorconfig b/.editorconfig index 58d0d332bb..872a068c7c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,7 +9,7 @@ indent_style = space tab_width = 4 # New line preferences -end_of_line = crlf:suggestion +#end_of_line = crlf insert_final_newline = true trim_trailing_whitespace = true @@ -104,7 +104,6 @@ csharp_preferred_modifier_order = public, private, protected, internal, new, abs # 'using' directive preferences csharp_using_directive_placement = outside_namespace:silent -csharp_style_namespace_declarations = file_scoped:suggestion #### C# Formatting Rules #### diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs index ce95e9a158..261e164f17 100644 --- a/Content.Benchmarks/MapLoadBenchmark.cs +++ b/Content.Benchmarks/MapLoadBenchmark.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; @@ -46,7 +46,7 @@ public class MapLoadBenchmark PoolManager.Shutdown(); } - public static readonly string[] MapsSource = { "Empty", "Box", "Bagel", "Dev", "CentComm", "Atlas", "Core", "TestTeg", "Saltern", "Packed", "Omega", "Cluster", "Reach", "Origin", "Meta", "Marathon", "Europa", "MeteorArena", "Fland", "Barratry" }; + public static readonly string[] MapsSource = { "Empty", "Box", "Bagel", "Dev", "CentComm", "Atlas", "Core", "TestTeg", "Saltern", "Packed", "Omega", "Cluster", "Reach", "Origin", "Meta", "Marathon", "Europa", "MeteorArena", "Fland", "Barratry", "Oasis" }; [ParamsSource(nameof(MapsSource))] public string Map; diff --git a/Content.Client/Administration/Managers/ClientAdminManager.cs b/Content.Client/Administration/Managers/ClientAdminManager.cs index fdd62fb6a2..0f740c8104 100644 --- a/Content.Client/Administration/Managers/ClientAdminManager.cs +++ b/Content.Client/Administration/Managers/ClientAdminManager.cs @@ -126,12 +126,15 @@ namespace Content.Client.Administration.Managers public AdminData? GetAdminData(EntityUid uid, bool includeDeAdmin = false) { - return uid == _player.LocalEntity ? _adminData : null; + if (uid == _player.LocalEntity && (_adminData?.Active ?? includeDeAdmin)) + return _adminData; + + return null; } public AdminData? GetAdminData(ICommonSession session, bool includeDeAdmin = false) { - if (_player.LocalUser == session.UserId) + if (_player.LocalUser == session.UserId && (_adminData?.Active ?? includeDeAdmin)) return _adminData; return null; diff --git a/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs b/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs index 1f32640f7d..dc263d6055 100644 --- a/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs +++ b/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs @@ -3,6 +3,7 @@ using System.Net; using System.Net.Sockets; using Content.Client.Administration.UI.CustomControls; using Content.Shared.Administration; +using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Roles; using Robust.Client.AutoGenerated; @@ -11,6 +12,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -32,8 +34,11 @@ public sealed partial class BanPanel : DefaultWindow // This is less efficient than just holding a reference to the root control and enumerating children, but you // have to know how the controls are nested, which makes the code more complicated. private readonly List _roleCheckboxes = new(); + private readonly ISawmill _banpanelSawmill; [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ILogManager _logManager = default!; private enum TabNumbers { @@ -65,6 +70,7 @@ public sealed partial class BanPanel : DefaultWindow { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _banpanelSawmill = _logManager.GetSawmill("admin.banpanel"); PlayerList.OnSelectionChanged += OnPlayerSelectionChanged; PlayerNameLine.OnFocusExit += _ => OnPlayerNameChanged(); PlayerCheckbox.OnPressed += _ => @@ -104,6 +110,11 @@ public sealed partial class BanPanel : DefaultWindow }; SubmitButton.OnPressed += SubmitButtonOnOnPressed; + IpCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanIpBanDefault); + HwidCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanHwidBanDefault); + LastConnCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanUseLastDetails); + EraseCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanErasePlayer); + SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-none"), (int) NoteSeverity.None); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-low"), (int) NoteSeverity.Minor); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-medium"), (int) NoteSeverity.Medium); @@ -175,6 +186,39 @@ public sealed partial class BanPanel : DefaultWindow c.Pressed = args.Pressed; } } + + if (args.Pressed) + { + if (!Enum.TryParse(_cfg.GetCVar(CCVars.DepartmentBanDefaultSeverity), true, out NoteSeverity newSeverity)) + { + _banpanelSawmill + .Warning("Departmental role ban severity could not be parsed from config!"); + return; + } + SeverityOption.SelectId((int) newSeverity); + } + else + { + foreach (var childContainer in RolesContainer.Children) + { + if (childContainer is Container) + { + foreach (var child in childContainer.Children) + { + if (child is CheckBox { Pressed: true }) + return; + } + } + } + + if (!Enum.TryParse(_cfg.GetCVar(CCVars.RoleBanDefaultSeverity), true, out NoteSeverity newSeverity)) + { + _banpanelSawmill + .Warning("Role ban severity could not be parsed from config!"); + return; + } + SeverityOption.SelectId((int) newSeverity); + } }; outerContainer.AddChild(innerContainer); foreach (var role in roleList) @@ -353,6 +397,35 @@ public sealed partial class BanPanel : DefaultWindow { TypeOption.ModulateSelfOverride = null; Tabs.SetTabVisible((int) TabNumbers.Roles, TypeOption.SelectedId == (int) Types.Role); + NoteSeverity? newSeverity = null; + switch (TypeOption.SelectedId) + { + case (int)Types.Server: + if (Enum.TryParse(_cfg.GetCVar(CCVars.ServerBanDefaultSeverity), true, out NoteSeverity serverSeverity)) + newSeverity = serverSeverity; + else + { + _banpanelSawmill + .Warning("Server ban severity could not be parsed from config!"); + } + + break; + case (int) Types.Role: + + if (Enum.TryParse(_cfg.GetCVar(CCVars.RoleBanDefaultSeverity), true, out NoteSeverity roleSeverity)) + { + newSeverity = roleSeverity; + } + else + { + _banpanelSawmill + .Warning("Role ban severity could not be parsed from config!"); + } + break; + } + + if (newSeverity != null) + SeverityOption.SelectId((int) newSeverity.Value); } private void UpdateSubmitEnabled() diff --git a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs index b105e629cf..b54af3a587 100644 --- a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs +++ b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs @@ -163,6 +163,26 @@ namespace Content.Client.Atmos.UI parent.AddChild(panel); panel.AddChild(dataContainer); + // Volume label + var volBox = new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Horizontal }; + + volBox.AddChild(new Label + { + Text = Loc.GetString("gas-analyzer-window-volume-text") + }); + volBox.AddChild(new Control + { + MinSize = new Vector2(10, 0), + HorizontalExpand = true + }); + volBox.AddChild(new Label + { + Text = Loc.GetString("gas-analyzer-window-volume-val-text", ("volume", $"{gasMix.Volume:0.##}")), + Align = Label.AlignMode.Right, + HorizontalExpand = true + }); + dataContainer.AddChild(volBox); + // Pressure label var presBox = new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Horizontal }; diff --git a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs new file mode 100644 index 0000000000..072730d65d --- /dev/null +++ b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs @@ -0,0 +1,119 @@ +using Content.Shared.Audio.Jukebox; +using Robust.Client.Audio; +using Robust.Client.Player; +using Robust.Shared.Audio.Components; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; + +namespace Content.Client.Audio.Jukebox; + +public sealed class JukeboxBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + + [ViewVariables] + private JukeboxMenu? _menu; + + public JukeboxBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _menu = new JukeboxMenu(); + _menu.OnClose += Close; + _menu.OpenCentered(); + + _menu.OnPlayPressed += args => + { + if (args) + { + SendMessage(new JukeboxPlayingMessage()); + } + else + { + SendMessage(new JukeboxPauseMessage()); + } + }; + + _menu.OnStopPressed += () => + { + SendMessage(new JukeboxStopMessage()); + }; + + _menu.OnSongSelected += SelectSong; + + _menu.SetTime += SetTime; + PopulateMusic(); + Reload(); + } + + /// + /// Reloads the attached menu if it exists. + /// + public void Reload() + { + if (_menu == null || !EntMan.TryGetComponent(Owner, out JukeboxComponent? jukebox)) + return; + + _menu.SetAudioStream(jukebox.AudioStream); + + if (_protoManager.TryIndex(jukebox.SelectedSongId, out var songProto)) + { + var length = EntMan.System().GetAudioLength(songProto.Path.Path.ToString()); + _menu.SetSelectedSong(songProto.Name, (float) length.TotalSeconds); + } + else + { + _menu.SetSelectedSong(string.Empty, 0f); + } + } + + public void PopulateMusic() + { + _menu?.Populate(_protoManager.EnumeratePrototypes()); + } + + public void SelectSong(ProtoId songid) + { + SendMessage(new JukeboxSelectedMessage(songid)); + } + + public void SetTime(float time) + { + var sentTime = time; + + // You may be wondering, what the fuck is this + // Well we want to be able to predict the playback slider change, of which there are many ways to do it + // We can't just use SendPredictedMessage because it will reset every tick and audio updates every frame + // so it will go BRRRRT + // Using ping gets us close enough that it SHOULD, MOST OF THE TIME, fall within the 0.1 second tolerance + // that's still on engine so our playback position never gets corrected. + if (EntMan.TryGetComponent(Owner, out JukeboxComponent? jukebox) && + EntMan.TryGetComponent(jukebox.AudioStream, out AudioComponent? audioComp)) + { + audioComp.PlaybackPosition = time; + } + + SendMessage(new JukeboxSetTimeMessage(sentTime)); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + + if (_menu == null) + return; + + _menu.OnClose -= Close; + _menu.Dispose(); + _menu = null; + } +} + diff --git a/Content.Client/Audio/Jukebox/JukeboxMenu.xaml b/Content.Client/Audio/Jukebox/JukeboxMenu.xaml new file mode 100644 index 0000000000..e8d39a9b11 --- /dev/null +++ b/Content.Client/Audio/Jukebox/JukeboxMenu.xaml @@ -0,0 +1,18 @@ + + + + + + + + Text="{Loc 'analysis-console-server-list-button'}"> + + + + + @@ -36,13 +52,13 @@ - + - + diff --git a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs index 90732f814f..2acf35da25 100644 --- a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs +++ b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs @@ -3,6 +3,7 @@ using Content.Client.UserInterface.Controls; using Content.Shared.Xenoarchaeology.Equipment; using Robust.Client.AutoGenerated; using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -19,6 +20,8 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow public event Action? OnScanButtonPressed; public event Action? OnPrintButtonPressed; public event Action? OnExtractButtonPressed; + public event Action? OnUpBiasButtonPressed; + public event Action? OnDownBiasButtonPressed; // For rendering the progress bar, updated from BUI state private TimeSpan? _startTime; @@ -36,6 +39,12 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow ScanButton.OnPressed += _ => OnScanButtonPressed?.Invoke(); PrintButton.OnPressed += _ => OnPrintButtonPressed?.Invoke(); ExtractButton.OnPressed += _ => OnExtractButtonPressed?.Invoke(); + UpBiasButton.OnPressed += _ => OnUpBiasButtonPressed?.Invoke(); + DownBiasButton.OnPressed += _ => OnDownBiasButtonPressed?.Invoke(); + + var buttonGroup = new ButtonGroup(false); + UpBiasButton.Group = buttonGroup; + DownBiasButton.Group = buttonGroup; } protected override void FrameUpdate(FrameEventArgs args) @@ -60,7 +69,7 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow ProgressBar.Value = Math.Clamp(1.0f - (float) remaining.Divide(total), 0.0f, 1.0f); } - public void SetButtonsDisabled(AnalysisConsoleScanUpdateState state) + public void SetButtonsDisabled(AnalysisConsoleUpdateState state) { ScanButton.Disabled = !state.CanScan; PrintButton.Disabled = !state.CanPrint; @@ -78,7 +87,6 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow ExtractButton.AddStyleClass("ButtonColorGreen"); } } - private void UpdateArtifactIcon(EntityUid? uid) { if (uid == null) @@ -91,7 +99,7 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow ArtifactDisplay.SetEntity(uid); } - public void UpdateInformationDisplay(AnalysisConsoleScanUpdateState state) + public void UpdateInformationDisplay(AnalysisConsoleUpdateState state) { var message = new FormattedMessage(); @@ -129,7 +137,7 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow Information.SetMessage(message); } - public void UpdateProgressBar(AnalysisConsoleScanUpdateState state) + public void UpdateProgressBar(AnalysisConsoleUpdateState state) { ProgressBar.Visible = state.Scanning; ProgressLabel.Visible = state.Scanning; diff --git a/Content.IntegrationTests/Pair/TestMapData.cs b/Content.IntegrationTests/Pair/TestMapData.cs index bdf1208038..343641e161 100644 --- a/Content.IntegrationTests/Pair/TestMapData.cs +++ b/Content.IntegrationTests/Pair/TestMapData.cs @@ -10,9 +10,8 @@ namespace Content.IntegrationTests.Pair; public sealed class TestMapData { public EntityUid MapUid { get; set; } - public EntityUid GridUid { get; set; } - public MapId MapId { get; set; } - public MapGridComponent MapGrid { get; set; } = default!; + public Entity Grid; + public MapId MapId; public EntityCoordinates GridCoords { get; set; } public MapCoordinates MapCoords { get; set; } public TileRef Tile { get; set; } @@ -21,4 +20,4 @@ public sealed class TestMapData public EntityUid CMapUid { get; set; } public EntityUid CGridUid { get; set; } public EntityCoordinates CGridCoords { get; set; } -} \ No newline at end of file +} diff --git a/Content.IntegrationTests/Pair/TestPair.Helpers.cs b/Content.IntegrationTests/Pair/TestPair.Helpers.cs index 554807b2d2..0ea6d3e2dc 100644 --- a/Content.IntegrationTests/Pair/TestPair.Helpers.cs +++ b/Content.IntegrationTests/Pair/TestPair.Helpers.cs @@ -1,5 +1,6 @@ #nullable enable using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using System.Linq; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -14,36 +15,37 @@ public sealed partial class TestPair /// /// Creates a map, a grid, and a tile, and gives back references to them. /// - public async Task CreateTestMap() + [MemberNotNull(nameof(TestMap))] + public async Task CreateTestMap(bool initialized = true, string tile = "Plating") { + var mapData = new TestMapData(); + TestMap = mapData; await Server.WaitIdleAsync(); var tileDefinitionManager = Server.ResolveDependency(); - var mapData = new TestMapData(); TestMap = mapData; await Server.WaitPost(() => { - mapData.MapId = Server.MapMan.CreateMap(); - mapData.MapUid = Server.MapMan.GetMapEntityId(mapData.MapId); - var mapGrid = Server.MapMan.CreateGridEntity(mapData.MapId); - mapData.MapGrid = mapGrid; - mapData.GridUid = mapGrid.Owner; // Fixing this requires an engine PR. - mapData.GridCoords = new EntityCoordinates(mapData.GridUid, 0, 0); - var plating = tileDefinitionManager["Plating"]; + mapData.MapUid = Server.System().CreateMap(out mapData.MapId, runMapInit: initialized); + mapData.Grid = Server.MapMan.CreateGridEntity(mapData.MapId); + mapData.GridCoords = new EntityCoordinates(mapData.Grid, 0, 0); + var plating = tileDefinitionManager[tile]; var platingTile = new Tile(plating.TileId); - mapData.MapGrid.SetTile(mapData.GridCoords, platingTile); + mapData.Grid.Comp.SetTile(mapData.GridCoords, platingTile); mapData.MapCoords = new MapCoordinates(0, 0, mapData.MapId); - mapData.Tile = mapData.MapGrid.GetAllTiles().First(); + mapData.Tile = mapData.Grid.Comp.GetAllTiles().First(); }); + TestMap = mapData; if (!Settings.Connected) return mapData; await RunTicksSync(10); mapData.CMapUid = ToClientUid(mapData.MapUid); - mapData.CGridUid = ToClientUid(mapData.GridUid); + mapData.CGridUid = ToClientUid(mapData.Grid); mapData.CGridCoords = new EntityCoordinates(mapData.CGridUid, 0, 0); + TestMap = mapData; return mapData; } diff --git a/Content.IntegrationTests/Pair/TestPair.Recycle.cs b/Content.IntegrationTests/Pair/TestPair.Recycle.cs index 52fdf600bb..c0f4b3b745 100644 --- a/Content.IntegrationTests/Pair/TestPair.Recycle.cs +++ b/Content.IntegrationTests/Pair/TestPair.Recycle.cs @@ -131,7 +131,7 @@ public sealed partial class TestPair : IAsyncDisposable // Move to pre-round lobby. Required to toggle dummy ticker on and off if (gameTicker.RunLevel != GameRunLevel.PreRoundLobby) { - await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Restarting server."); + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Restarting round."); Assert.That(gameTicker.DummyTicker, Is.False); Server.CfgMan.SetCVar(CCVars.GameLobbyEnabled, true); await Server.WaitPost(() => gameTicker.RestartRound()); @@ -146,6 +146,7 @@ public sealed partial class TestPair : IAsyncDisposable // Restart server. await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Restarting server again"); + await Server.WaitPost(() => Server.EntMan.FlushEntities()); await Server.WaitPost(() => gameTicker.RestartRound()); await RunTicksSync(1); diff --git a/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs b/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs index 98c7363a6c..772af337a1 100644 --- a/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs +++ b/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs @@ -32,8 +32,8 @@ public sealed class AddTests var guid = Guid.NewGuid(); - var testMap = await pair.CreateTestMap(); - var coordinates = testMap.GridCoords; + await pair.CreateTestMap(); + var coordinates = pair.TestMap.GridCoords; await server.WaitPost(() => { var entity = sEntities.SpawnEntity(null, coordinates); diff --git a/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs b/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs index 26ea726211..b37f7cfa46 100644 --- a/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs +++ b/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs @@ -212,7 +212,7 @@ namespace Content.IntegrationTests.Tests.DeviceNetwork DeviceNetworkComponent networkComponent1 = null; DeviceNetworkComponent networkComponent2 = null; WiredNetworkComponent wiredNetworkComponent = null; - var grid = testMap.MapGrid; + var grid = testMap.Grid.Comp; var testValue = "test"; var payload = new NetworkPayload diff --git a/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs b/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs index d47eb13273..0ebd17d887 100644 --- a/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs +++ b/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs @@ -3,8 +3,6 @@ using Content.IntegrationTests.Tests.Construction.Interaction; using Content.IntegrationTests.Tests.Interaction; using Content.IntegrationTests.Tests.Weldable; using Content.Shared.Tools.Components; -using Content.Server.Tools.Components; -using Content.Shared.DoAfter; namespace Content.IntegrationTests.Tests.DoAfter; diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 152eb72522..d3b1fb4722 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -354,41 +354,18 @@ namespace Content.IntegrationTests.Tests await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; - - var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var componentFactory = server.ResolveDependency(); - var tileDefinitionManager = server.ResolveDependency(); - var mapSystem = entityManager.System(); var logmill = server.ResolveDependency().GetSawmill("EntityTest"); - Entity grid = default!; - - await server.WaitPost(() => - { - // Create a one tile grid to stave off the grid 0 monsters - var mapId = mapManager.CreateMap(); - - mapManager.AddUninitializedMap(mapId); - - grid = mapManager.CreateGridEntity(mapId); - - var tileDefinition = tileDefinitionManager["Plating"]; - var tile = new Tile(tileDefinition.TileId); - var coordinates = new EntityCoordinates(grid.Owner, Vector2.Zero); - - mapSystem.SetTile(grid.Owner, grid.Comp!, coordinates, tile); - - mapManager.DoMapInitialize(mapId); - }); - + await pair.CreateTestMap(); await server.WaitRunTicks(5); + var testLocation = pair.TestMap.GridCoords; await server.WaitAssertion(() => { Assert.Multiple(() => { - var testLocation = new EntityCoordinates(grid.Owner, Vector2.Zero); foreach (var type in componentFactory.AllRegisteredTypes) { diff --git a/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs b/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs index 611af67380..a9069892df 100644 --- a/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs +++ b/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs @@ -46,17 +46,14 @@ namespace Content.IntegrationTests.Tests.Fluids var server = pair.Server; var testMap = await pair.CreateTestMap(); + var grid = testMap.Grid.Comp; var entitySystemManager = server.ResolveDependency(); var spillSystem = entitySystemManager.GetEntitySystem(); - MapGridComponent grid = null; - // Remove all tiles await server.WaitPost(() => { - grid = testMap.MapGrid; - foreach (var tile in grid.GetAllTiles()) { grid.SetTile(tile.GridIndices, Tile.Empty); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index 88448e7b80..480fd9cde6 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -989,7 +989,7 @@ public abstract partial class InteractionTest /// protected async Task AddGravity(EntityUid? uid = null) { - var target = uid ?? MapData.GridUid; + var target = uid ?? MapData.Grid; await Server.WaitPost(() => { var gravity = SEntMan.EnsureComponent(target); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index bed27ba6ef..a4ed31e998 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -184,7 +184,7 @@ public abstract partial class InteractionTest await Pair.CreateTestMap(); PlayerCoords = SEntMan.GetNetCoordinates(MapData.GridCoords.Offset(new Vector2(0.5f, 0.5f)).WithEntityId(MapData.MapUid, Transform, SEntMan)); TargetCoords = SEntMan.GetNetCoordinates(MapData.GridCoords.Offset(new Vector2(1.5f, 0.5f)).WithEntityId(MapData.MapUid, Transform, SEntMan)); - await SetTile(Plating, grid: MapData.MapGrid); + await SetTile(Plating, grid: MapData.Grid.Comp); // Get player data var sPlayerMan = Server.ResolveDependency(); diff --git a/Content.IntegrationTests/Tests/Interaction/MovementTest.cs b/Content.IntegrationTests/Tests/Interaction/MovementTest.cs index 553b031c2b..dc5aec92cf 100644 --- a/Content.IntegrationTests/Tests/Interaction/MovementTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/MovementTest.cs @@ -31,7 +31,7 @@ public abstract class MovementTest : InteractionTest for (var i = -Tiles; i <= Tiles; i++) { - await SetTile(Plating, SEntMan.GetNetCoordinates(pCoords.Offset(new Vector2(i, 0))), MapData.MapGrid); + await SetTile(Plating, SEntMan.GetNetCoordinates(pCoords.Offset(new Vector2(i, 0))), MapData.Grid.Comp); } AssertGridCount(1); diff --git a/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs b/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs index a2faef0dd4..51be2fb431 100644 --- a/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs +++ b/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs @@ -183,7 +183,7 @@ public sealed class MaterialArbitrageTest var spawnedPrice = await GetSpawnedPrice(spawnedEnts); var price = await GetPrice(id); if (spawnedPrice > 0 && price > 0) - Assert.That(spawnedPrice, Is.LessThanOrEqualTo(price), $"{id} increases in price after being destroyed"); + Assert.That(spawnedPrice, Is.LessThanOrEqualTo(price), $"{id} increases in price after being destroyed\nEntities spawned on destruction: {string.Join(',', spawnedEnts)}"); // Check lathe production if (latheRecipes.TryGetValue(id, out var recipe)) @@ -359,7 +359,7 @@ public sealed class MaterialArbitrageTest { var ent = entManager.SpawnEntity(id, testMap.GridCoords); stackSys.SetCount(ent, 1); - priceCache[id] = price = pricing.GetPrice(ent); + priceCache[id] = price = pricing.GetPrice(ent, false); entManager.DeleteEntity(ent); }); } diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index d9e0d69aa6..9098c7cd79 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -63,7 +63,8 @@ namespace Content.IntegrationTests.Tests "MeteorArena", //"Atlas", //"Reach", - //"Train" + //"Train", + //"Oasis" //CrystallPunk maps "CaveArena", @@ -158,7 +159,10 @@ namespace Content.IntegrationTests.Tests [Test, TestCaseSource(nameof(GameMaps))] public async Task GameMapsLoadableTest(string mapProto) { - await using var pair = await PoolManager.GetServerClient(); + await using var pair = await PoolManager.GetServerClient(new PoolSettings + { + Dirty = true // Stations spawn a bunch of nullspace entities and maps like centcomm. + }); var server = pair.Server; var mapManager = server.ResolveDependency(); diff --git a/Content.IntegrationTests/Tests/PrototypeSaveTest.cs b/Content.IntegrationTests/Tests/PrototypeSaveTest.cs index e4a9c1a840..9e26fa5eaa 100644 --- a/Content.IntegrationTests/Tests/PrototypeSaveTest.cs +++ b/Content.IntegrationTests/Tests/PrototypeSaveTest.cs @@ -38,31 +38,15 @@ public sealed class PrototypeSaveTest var mapManager = server.ResolveDependency(); var entityMan = server.ResolveDependency(); var prototypeMan = server.ResolveDependency(); - var tileDefinitionManager = server.ResolveDependency(); var seriMan = server.ResolveDependency(); var compFact = server.ResolveDependency(); var prototypes = new List(); - MapGridComponent grid = default!; EntityUid uid; - MapId mapId = default; - //Build up test environment - await server.WaitPost(() => - { - // Create a one tile grid to stave off the grid 0 monsters - mapId = mapManager.CreateMap(); - - mapManager.AddUninitializedMap(mapId); - - grid = mapManager.CreateGrid(mapId); - - var tileDefinition = tileDefinitionManager["FloorSteel"]; // Wires n such disable ambiance while under the floor - var tile = new Tile(tileDefinition.TileId); - var coordinates = grid.Owner.ToCoordinates(); - - grid.SetTile(coordinates, tile); - }); + await pair.CreateTestMap(false, "FloorSteel"); // Wires n such disable ambiance while under the floor + var mapId = pair.TestMap.MapId; + var grid = pair.TestMap.Grid; await server.WaitRunTicks(5); diff --git a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs index b6fc273570..a1aa462a69 100644 --- a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs +++ b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs @@ -39,7 +39,7 @@ public sealed class DockTest : ContentUnitTest await server.WaitAssertion(() => { - entManager.DeleteEntity(map.GridUid); + entManager.DeleteEntity(map.Grid); var grid1 = mapManager.CreateGridEntity(mapId); var grid2 = mapManager.CreateGridEntity(mapId); var grid1Ent = grid1.Owner; @@ -104,7 +104,7 @@ public sealed class DockTest : ContentUnitTest // Spawn shuttle and affirm no valid docks. await server.WaitAssertion(() => { - entManager.DeleteEntity(map.GridUid); + entManager.DeleteEntity(map.Grid); Assert.That(entManager.System().TryLoad(otherMap.MapId, "/Maps/Shuttles/emergency.yml", out var rootUids)); shuttle = rootUids[0]; diff --git a/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs b/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs new file mode 100644 index 0000000000..5750be09c2 --- /dev/null +++ b/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs @@ -0,0 +1,114 @@ +using System.Linq; +using Content.Server.GameTicking; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Systems; +using Content.Server.Station.Components; +using Content.Shared.CCVar; +using Content.Shared.Shuttles.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Map.Components; + +namespace Content.IntegrationTests.Tests.Station; + +[TestFixture] +[TestOf(typeof(EmergencyShuttleSystem))] +public sealed class EvacShuttleTest +{ + /// + /// Ensure that the emergency shuttle can be called, and that it will travel to centcomm + /// + [Test] + public async Task EmergencyEvacTest() + { + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = true, Dirty = true }); + var server = pair.Server; + var entMan = server.EntMan; + var ticker = server.System(); + + // Dummy ticker tests should not have centcomm + Assert.That(entMan.Count(), Is.Zero); + + var shuttleEnabled = pair.Server.CfgMan.GetCVar(CCVars.EmergencyShuttleEnabled); + pair.Server.CfgMan.SetCVar(CCVars.GameMap, "Saltern"); + pair.Server.CfgMan.SetCVar(CCVars.GameDummyTicker, false); + pair.Server.CfgMan.SetCVar(CCVars.EmergencyShuttleEnabled, true); + + await server.WaitPost(() => ticker.RestartRound()); + await pair.RunTicksSync(25); + Assert.That(ticker.RunLevel, Is.EqualTo(GameRunLevel.InRound)); + + // Find the station, centcomm, and shuttle, and ftl map. + + Assert.That(entMan.Count(), Is.EqualTo(1)); + Assert.That(entMan.Count(), Is.EqualTo(1)); + Assert.That(entMan.Count(), Is.EqualTo(1)); + Assert.That(entMan.Count(), Is.EqualTo(1)); + Assert.That(entMan.Count(), Is.EqualTo(0)); + + var station = (Entity) entMan.AllComponentsList().Single(); + var data = entMan.GetComponent(station); + var shuttleData = entMan.GetComponent(station); + + var saltern = data.Grids.Single(); + Assert.That(entMan.HasComponent(saltern)); + + var shuttle = shuttleData.EmergencyShuttle!.Value; + Assert.That(entMan.HasComponent(shuttle)); + Assert.That(entMan.HasComponent(shuttle)); + + var centcomm = station.Comp.Entity!.Value; + Assert.That(entMan.HasComponent(centcomm)); + + var centcommMap = station.Comp.MapEntity!.Value; + Assert.That(entMan.HasComponent(centcommMap)); + Assert.That(server.Transform(centcomm).MapUid, Is.EqualTo(centcommMap)); + + var salternXform = server.Transform(saltern); + Assert.That(salternXform.MapUid, Is.Not.Null); + Assert.That(salternXform.MapUid, Is.Not.EqualTo(centcommMap)); + + var shuttleXform = server.Transform(shuttle); + Assert.That(shuttleXform.MapUid, Is.Not.Null); + Assert.That(shuttleXform.MapUid, Is.EqualTo(centcommMap)); + + // Set up shuttle timing + var evacSys = server.System(); + evacSys.TransitTime = ShuttleSystem.DefaultTravelTime; // Absolute minimum transit time, so the test has to run for at least this long + // TODO SHUTTLE fix spaghetti + + var dockTime = server.CfgMan.GetCVar(CCVars.EmergencyShuttleDockTime); + server.CfgMan.SetCVar(CCVars.EmergencyShuttleDockTime, 2); + async Task RunSeconds(float seconds) + { + await pair.RunTicksSync((int) Math.Ceiling(seconds / server.Timing.TickPeriod.TotalSeconds)); + } + + // Call evac shuttle. + await pair.WaitCommand("callshuttle 0:02"); + await RunSeconds(3); + + // Shuttle should have arrived on the station + Assert.That(shuttleXform.MapUid, Is.EqualTo(salternXform.MapUid)); + + await RunSeconds(2); + + // Shuttle should be FTLing back to centcomm + Assert.That(entMan.Count(), Is.EqualTo(1)); + var ftl = (Entity) entMan.AllComponentsList().Single(); + Assert.That(entMan.HasComponent(ftl)); + Assert.That(ftl.Owner, Is.Not.EqualTo(centcommMap)); + Assert.That(ftl.Owner, Is.Not.EqualTo(salternXform.MapUid)); + Assert.That(shuttleXform.MapUid, Is.EqualTo(ftl.Owner)); + + // Shuttle should have arrived at centcomm + await RunSeconds(ShuttleSystem.DefaultTravelTime); + Assert.That(shuttleXform.MapUid, Is.EqualTo(centcommMap)); + + // Round should be ending now + Assert.That(ticker.RunLevel, Is.EqualTo(GameRunLevel.PostRound)); + + server.CfgMan.SetCVar(CCVars.EmergencyShuttleDockTime, dockTime); + pair.Server.CfgMan.SetCVar(CCVars.EmergencyShuttleEnabled, shuttleEnabled); + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs b/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs index 0a2af88887..083e817d69 100644 --- a/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs +++ b/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs @@ -37,7 +37,7 @@ public sealed class TileConstructionTests : InteractionTest // Remove grid await SetTile(null); await SetTile(null, PlayerCoords); - Assert.That(MapData.MapGrid.Deleted); + Assert.That(MapData.Grid.Comp.Deleted); AssertGridCount(0); // Place Lattice @@ -70,7 +70,7 @@ public sealed class TileConstructionTests : InteractionTest // Remove grid await SetTile(null); await SetTile(null, PlayerCoords); - Assert.That(MapData.MapGrid.Deleted); + Assert.That(MapData.Grid.Comp.Deleted); AssertGridCount(0); // Space -> Lattice diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs index 9849d2df79..eff97136d0 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs @@ -111,7 +111,7 @@ public sealed partial class AdminVerbSystem { Text = Loc.GetString("admin-verb-text-make-thief"), Category = VerbCategory.Antag, - Icon = new SpriteSpecifier.Rsi(new ResPath("/Textures/Clothing/Hands/Gloves/ihscombat.rsi"), "icon"), + Icon = new SpriteSpecifier.Rsi(new ResPath("/Textures/Clothing/Hands/Gloves/Color/black.rsi"), "icon"), Act = () => { _thief.AdminMakeThief(args.Target, false); //Midround add pacified is bad diff --git a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs index 152fba8fc4..60d90e1e60 100644 --- a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs @@ -12,6 +12,7 @@ namespace Content.Server.Atmos.EntitySystems [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly ExplosionSystem _explosionSystem = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; public override void Initialize() { @@ -59,12 +60,14 @@ namespace Content.Server.Atmos.EntitySystems var gridId = xform.GridUid; var coords = xform.Coordinates; - - var tilePos = grid.TileIndicesFor(coords); + var tilePos = _mapSystem.TileIndicesFor(gridId.Value, grid, coords); // Update and invalidate new position. airtight.LastPosition = (gridId.Value, tilePos); InvalidatePosition(gridId.Value, tilePos); + + var airtightEv = new AirtightChanged(uid, airtight, (gridId.Value, tilePos)); + RaiseLocalEvent(uid, ref airtightEv, true); } private void OnAirtightReAnchor(EntityUid uid, AirtightComponent airtight, ref ReAnchorEvent args) @@ -74,6 +77,9 @@ namespace Content.Server.Atmos.EntitySystems // Update and invalidate new position. airtight.LastPosition = (gridId, args.TilePos); InvalidatePosition(gridId, args.TilePos); + + var airtightEv = new AirtightChanged(uid, airtight, (gridId, args.TilePos)); + RaiseLocalEvent(uid, ref airtightEv, true); } } @@ -153,6 +159,5 @@ namespace Content.Server.Atmos.EntitySystems } [ByRefEvent] - public readonly record struct AirtightChanged(EntityUid Entity, AirtightComponent Airtight, - (EntityUid Grid, Vector2i Tile) Position); + public readonly record struct AirtightChanged(EntityUid Entity, AirtightComponent Airtight, (EntityUid Grid, Vector2i Tile) Position); } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index a5e37398c6..f711b235af 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -3,6 +3,7 @@ using Content.Server.Administration; using Content.Server.Atmos.Components; using Content.Shared.Administration; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -84,44 +85,72 @@ public sealed partial class AtmosphereSystem continue; } - var transform = Transform(euid.Value); + // Force Invalidate & update air on all tiles + Entity grid = + new(euid.Value, gridAtmosphere, Comp(euid.Value), gridComp, Transform(euid.Value)); - foreach (var (indices, tileMain) in gridAtmosphere.Tiles) + RebuildGridTiles(grid); + + var query = GetEntityQuery(); + foreach (var (indices, tile) in gridAtmosphere.Tiles.ToArray()) { - var tile = tileMain.Air; - if (tile == null) + if (tile.Air is not {Immutable: false} air) continue; - if (!_mapSystem.TryGetTile(gridComp, indices, out var gTile) || gTile.IsEmpty) - { - gridAtmosphere.Tiles.Remove(indices); - continue; - } - - if (tile.Immutable && !IsTileSpace(euid, transform.MapUid, indices)) - { - tile = new GasMixture(tile.Volume) { Temperature = tile.Temperature }; - tileMain.Air = tile; - } - - tile.Clear(); + air.Clear(); var mixtureId = 0; - foreach (var entUid in gridComp.GetAnchoredEntities(indices)) + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(grid, grid, indices); + while (enumerator.MoveNext(out var entUid)) { - if (!TryComp(entUid, out AtmosFixMarkerComponent? afm)) - continue; - mixtureId = afm.Mode; - break; + if (query.TryComp(entUid, out var marker)) + mixtureId = marker.Mode; } - var mixture = mixtures[mixtureId]; - Merge(tile, mixture); - tile.Temperature = mixture.Temperature; - gridAtmosphere.InvalidatedCoords.Add(indices); + var mixture = mixtures[mixtureId]; + Merge(air, mixture); + air.Temperature = mixture.Temperature; } } } + /// + /// Clears & re-creates all references to s stored on a grid. + /// + private void RebuildGridTiles( + Entity ent) + { + foreach (var indices in ent.Comp1.Tiles.Keys) + { + InvalidateVisuals((ent, ent), indices); + } + + var atmos = ent.Comp1; + atmos.MapTiles.Clear(); + atmos.ActiveTiles.Clear(); + atmos.ExcitedGroups.Clear(); + atmos.HotspotTiles.Clear(); + atmos.SuperconductivityTiles.Clear(); + atmos.HighPressureDelta.Clear(); + atmos.CurrentRunTiles.Clear(); + atmos.CurrentRunExcitedGroups.Clear(); + atmos.InvalidatedCoords.Clear(); + atmos.CurrentRunInvalidatedTiles.Clear(); + atmos.PossiblyDisconnectedTiles.Clear(); + atmos.Tiles.Clear(); + + var volume = GetVolumeForTiles(ent); + TryComp(ent.Comp4.MapUid, out MapAtmosphereComponent? mapAtmos); + + var enumerator = _map.GetAllTilesEnumerator(ent, ent); + while (enumerator.MoveNext(out var tileRef)) + { + var tile = GetOrNewTile(ent, ent, tileRef.Value.GridIndices); + UpdateTileData(ent, mapAtmos, tile); + UpdateAdjacentTiles(ent, tile, activate: true); + UpdateTileAir(ent, tile, volume); + } + } + private CompletionResult FixGridAtmosCommandCompletions(IConsoleShell shell, string[] args) { MapId? playerMap = null; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index bd023e8574..85b1a93e20 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -30,13 +30,15 @@ namespace Content.Server.Atmos.EntitySystems private int _currentRunAtmosphereIndex; private bool _simulationPaused; - private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index) + private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index, bool invalidateNew = true) { var tile = atmosphere.Tiles.GetOrNew(index, out var existing); if (existing) return tile; - atmosphere.InvalidatedCoords.Add(index); + if (invalidateNew) + atmosphere.InvalidatedCoords.Add(index); + tile.GridIndex = owner; tile.GridIndices = index; return tile; @@ -68,7 +70,7 @@ namespace Content.Server.Atmos.EntitySystems atmosphere.CurrentRunInvalidatedTiles.EnsureCapacity(atmosphere.InvalidatedCoords.Count); foreach (var indices in atmosphere.InvalidatedCoords) { - var tile = GetOrNewTile(uid, atmosphere, indices); + var tile = GetOrNewTile(uid, atmosphere, indices, invalidateNew: false); atmosphere.CurrentRunInvalidatedTiles.Enqueue(tile); // Update tile.IsSpace and tile.MapAtmosphere, and tile.AirtightData. diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index 2eedb1c6a7..1f5ca80935 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -132,7 +132,7 @@ namespace Content.Server.Atmos.EntitySystems /// private void OnDisabledMessage(EntityUid uid, GasAnalyzerComponent component, GasAnalyzerDisableMessage message) { - if (message.Session.AttachedEntity is not {Valid: true}) + if (message.Session.AttachedEntity is not { Valid: true }) return; DisableAnalyzer(uid, component); } @@ -169,7 +169,7 @@ namespace Content.Server.Atmos.EntitySystems // Check if position is out of range => don't update and disable if (!component.LastPosition.Value.InRange(EntityManager, _transform, userPos, SharedInteractionSystem.InteractionRange)) { - if(component.User is { } userId && component.Enabled) + if (component.User is { } userId && component.Enabled) _popup.PopupEntity(Loc.GetString("gas-analyzer-shutoff"), userId, userId); DisableAnalyzer(uid, component, component.User); return false; @@ -182,13 +182,13 @@ namespace Content.Server.Atmos.EntitySystems var tileMixture = _atmo.GetContainingMixture(uid, true); if (tileMixture != null) { - gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), tileMixture.Pressure, tileMixture.Temperature, + gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), tileMixture.Volume, tileMixture.Pressure, tileMixture.Temperature, GenerateGasEntryArray(tileMixture))); } else { // No gases were found - gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), 0f, 0f)); + gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), 0f, 0f, 0f)); } var deviceFlipped = false; @@ -209,8 +209,8 @@ namespace Content.Server.Atmos.EntitySystems { foreach (var mixes in ev.GasMixtures) { - if(mixes.Value != null) - gasMixList.Add(new GasMixEntry(mixes.Key, mixes.Value.Pressure, mixes.Value.Temperature, GenerateGasEntryArray(mixes.Value))); + if (mixes.Item2 != null) + gasMixList.Add(new GasMixEntry(mixes.Item1, mixes.Item2.Volume, mixes.Item2.Pressure, mixes.Item2.Temperature, GenerateGasEntryArray(mixes.Item2))); } deviceFlipped = ev.DeviceFlipped; @@ -223,7 +223,16 @@ namespace Content.Server.Atmos.EntitySystems foreach (var pair in node.Nodes) { if (pair.Value is PipeNode pipeNode) - gasMixList.Add(new GasMixEntry(pair.Key, pipeNode.Air.Pressure, pipeNode.Air.Temperature, GenerateGasEntryArray(pipeNode.Air))); + { + // check if the volume is zero for some reason so we don't divide by zero + if (pipeNode.Air.Volume == 0f) + continue; + // only display the gas in the analyzed pipe element, not the whole system + var pipeAir = pipeNode.Air.Clone(); + pipeAir.Multiply(pipeNode.Volume / pipeNode.Air.Volume); + pipeAir.Volume = pipeNode.Volume; + gasMixList.Add(new GasMixEntry(pair.Key, pipeAir.Volume, pipeAir.Pressure, pipeAir.Temperature, GenerateGasEntryArray(pipeAir))); + } } } } @@ -286,9 +295,9 @@ namespace Content.Server.Atmos.EntitySystems public sealed class GasAnalyzerScanEvent : EntityEventArgs { /// - /// Key is the mix name (ex "pipe", "inlet", "filter"), value is the pipe direction and GasMixture. Add all mixes that should be reported when scanned. + /// The string is for the name (ex "pipe", "inlet", "filter"), GasMixture for the corresponding gas mix. Add all mixes that should be reported when scanned. /// - public Dictionary? GasMixtures; + public List<(string, GasMixture?)>? GasMixtures; /// /// If the device is flipped. Flipped is defined as when the inline input is 90 degrees CW to the side input diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index 80842416e8..dd84756e45 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -359,7 +359,8 @@ namespace Content.Server.Atmos.EntitySystems /// private void OnAnalyzed(EntityUid uid, GasTankComponent component, GasAnalyzerScanEvent args) { - args.GasMixtures = new Dictionary { {Name(uid), component.Air} }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), component.Air)); } private void OnGasTankPrice(EntityUid uid, GasTankComponent component, ref PriceCalculationEvent args) diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs index fbd4260469..c0c2b930f6 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs @@ -73,7 +73,7 @@ namespace Content.Server.Atmos.Piping.Trinary.EntitySystems if (filter.FilteredGas.HasValue) { - var filteredOut = new GasMixture() {Temperature = removed.Temperature}; + var filteredOut = new GasMixture() { Temperature = removed.Temperature }; filteredOut.SetMoles(filter.FilteredGas.Value, removed.GetMoles(filter.FilteredGas.Value)); removed.SetMoles(filter.FilteredGas.Value, 0f); @@ -180,17 +180,30 @@ namespace Content.Server.Atmos.Piping.Trinary.EntitySystems /// private void OnFilterAnalyzed(EntityUid uid, GasFilterComponent component, GasAnalyzerScanEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; + args.GasMixtures ??= new List<(string, GasMixture?)>(); - args.GasMixtures ??= new Dictionary(); - - if(_nodeContainer.TryGetNode(nodeContainer, component.InletName, out PipeNode? inlet)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-inlet"), inlet.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.FilterName, out PipeNode? filterNode)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-filter"), filterNode.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.OutletName, out PipeNode? outlet)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-outlet"), outlet.Air); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, component.InletName, out PipeNode? inlet) && inlet.Air.Volume != 0f) + { + var inletAirLocal = inlet.Air.Clone(); + inletAirLocal.Multiply(inlet.Volume / inlet.Air.Volume); + inletAirLocal.Volume = inlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-inlet"), inletAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.FilterName, out PipeNode? filterNode) && filterNode.Air.Volume != 0f) + { + var filterNodeAirLocal = filterNode.Air.Clone(); + filterNodeAirLocal.Multiply(filterNode.Volume / filterNode.Air.Volume); + filterNodeAirLocal.Volume = filterNode.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-filter"), filterNodeAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.OutletName, out PipeNode? outlet) && outlet.Air.Volume != 0f) + { + var outletAirLocal = outlet.Air.Clone(); + outletAirLocal.Multiply(outlet.Volume / outlet.Air.Volume); + outletAirLocal.Volume = outlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-outlet"), outletAirLocal)); + } args.DeviceFlipped = inlet != null && filterNode != null && inlet.CurrentPipeDirection.ToDirection() == filterNode.CurrentPipeDirection.ToDirection().GetClockwise90Degrees(); } diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs index ba8ebf3c9a..4d7fc134c7 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs @@ -205,19 +205,31 @@ namespace Content.Server.Atmos.Piping.Trinary.EntitySystems /// private void OnMixerAnalyzed(EntityUid uid, GasMixerComponent component, GasAnalyzerScanEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; + args.GasMixtures ??= new List<(string, GasMixture?)>(); - var gasMixDict = new Dictionary(); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, component.InletOneName, out PipeNode? inletOne) && inletOne.Air.Volume != 0f) + { + var inletOneAirLocal = inletOne.Air.Clone(); + inletOneAirLocal.Multiply(inletOne.Volume / inletOne.Air.Volume); + inletOneAirLocal.Volume = inletOne.Volume; + args.GasMixtures.Add(($"{inletOne.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletOneAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.InletTwoName, out PipeNode? inletTwo) && inletTwo.Air.Volume != 0f) + { + var inletTwoAirLocal = inletTwo.Air.Clone(); + inletTwoAirLocal.Multiply(inletTwo.Volume / inletTwo.Air.Volume); + inletTwoAirLocal.Volume = inletTwo.Volume; + args.GasMixtures.Add(($"{inletTwo.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletTwoAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.OutletName, out PipeNode? outlet) && outlet.Air.Volume != 0f) + { + var outletAirLocal = outlet.Air.Clone(); + outletAirLocal.Multiply(outlet.Volume / outlet.Air.Volume); + outletAirLocal.Volume = outlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-outlet"), outletAirLocal)); + } - if(_nodeContainer.TryGetNode(nodeContainer, component.InletOneName, out PipeNode? inletOne)) - gasMixDict.Add($"{inletOne.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletOne.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.InletTwoName, out PipeNode? inletTwo)) - gasMixDict.Add($"{inletTwo.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletTwo.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.OutletName, out PipeNode? outlet)) - gasMixDict.Add(Loc.GetString("gas-analyzer-window-text-outlet"), outlet.Air); - - args.GasMixtures = gasMixDict; args.DeviceFlipped = inletOne != null && inletTwo != null && inletOne.CurrentPipeDirection.ToDirection() == inletTwo.CurrentPipeDirection.ToDirection().GetClockwise90Degrees(); } } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index 3e4340bf1d..bdc9e76538 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -294,9 +294,17 @@ public sealed class GasCanisterSystem : EntitySystem /// /// Returns the gas mixture for the gas analyzer /// - private void OnAnalyzed(EntityUid uid, GasCanisterComponent component, GasAnalyzerScanEvent args) + private void OnAnalyzed(EntityUid uid, GasCanisterComponent canisterComponent, GasAnalyzerScanEvent args) { - args.GasMixtures = new Dictionary { {Name(uid), component.Air} }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), canisterComponent.Air)); + // if a tank is inserted show it on the analyzer as well + if (canisterComponent.GasTankSlot.Item != null) + { + var tank = canisterComponent.GasTankSlot.Item.Value; + var tankComponent = Comp(tank); + args.GasMixtures.Add((Name(tank), tankComponent.Air)); + } } /// diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index a986385f5e..7c12cf3f77 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -80,7 +80,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems return; } - var timeDelta = args.dt; + var timeDelta = args.dt; var pressureDelta = timeDelta * vent.TargetPressureChange; if (vent.PumpDirection == VentPumpDirection.Releasing && pipe.Air.Pressure > 0) @@ -292,7 +292,7 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems /// private void OnAnalyzed(EntityUid uid, GasVentPumpComponent component, GasAnalyzerScanEvent args) { - var gasMixDict = new Dictionary(); + args.GasMixtures ??= new List<(string, GasMixture?)>(); // these are both called pipe, above it switches using this so I duplicated that...? var nodeName = component.PumpDirection switch @@ -301,10 +301,14 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems VentPumpDirection.Siphoning => component.Outlet, _ => throw new ArgumentOutOfRangeException() }; - if (_nodeContainer.TryGetNode(uid, nodeName, out PipeNode? pipe)) - gasMixDict.Add(nodeName, pipe.Air); - - args.GasMixtures = gasMixDict; + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, nodeName, out PipeNode? pipe) && pipe.Air.Volume != 0f) + { + var pipeAirLocal = pipe.Air.Clone(); + pipeAirLocal.Multiply(pipe.Volume / pipe.Air.Volume); + pipeAirLocal.Volume = pipe.Volume; + args.GasMixtures.Add((nodeName, pipeAirLocal)); + } } private void OnWeldChanged(EntityUid uid, GasVentPumpComponent component, ref WeldableChangedEvent args) diff --git a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs index f9043c091a..91ee588057 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs @@ -151,10 +151,8 @@ namespace Content.Server.Atmos.Portable /// private void OnScrubberAnalyzed(EntityUid uid, PortableScrubberComponent component, GasAnalyzerScanEvent args) { - args.GasMixtures ??= new Dictionary { { Name(uid), component.Air } }; - // If it's connected to a port, include the port side - if (_nodeContainer.TryGetNode(uid, component.PortName, out PipeNode? port)) - args.GasMixtures.Add(component.PortName, port.Air); + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), component.Air)); } } } diff --git a/Content.Server/Audio/Jukebox/JukeboxSystem.cs b/Content.Server/Audio/Jukebox/JukeboxSystem.cs new file mode 100644 index 0000000000..bfb9b2099a --- /dev/null +++ b/Content.Server/Audio/Jukebox/JukeboxSystem.cs @@ -0,0 +1,152 @@ +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.Audio.Jukebox; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Components; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Prototypes; +using JukeboxComponent = Content.Shared.Audio.Jukebox.JukeboxComponent; + +namespace Content.Server.Audio.Jukebox; + + +public sealed class JukeboxSystem : SharedJukeboxSystem +{ + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnJukeboxSelected); + SubscribeLocalEvent(OnJukeboxPlay); + SubscribeLocalEvent(OnJukeboxPause); + SubscribeLocalEvent(OnJukeboxStop); + SubscribeLocalEvent(OnJukeboxSetTime); + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnComponentShutdown); + + SubscribeLocalEvent(OnPowerChanged); + } + + private void OnComponentInit(EntityUid uid, JukeboxComponent component, ComponentInit args) + { + if (HasComp(uid)) + { + TryUpdateVisualState(uid, component); + } + } + + private void OnJukeboxPlay(EntityUid uid, JukeboxComponent component, ref JukeboxPlayingMessage args) + { + if (Exists(component.AudioStream)) + { + Audio.SetState(component.AudioStream, AudioState.Playing); + } + else + { + component.AudioStream = Audio.Stop(component.AudioStream); + + if (string.IsNullOrEmpty(component.SelectedSongId) || + !_protoManager.TryIndex(component.SelectedSongId, out var jukeboxProto)) + { + return; + } + + component.AudioStream = Audio.PlayPvs(jukeboxProto.Path, uid, AudioParams.Default.WithMaxDistance(10f))?.Entity; + Dirty(uid, component); + } + } + + private void OnJukeboxPause(Entity ent, ref JukeboxPauseMessage args) + { + Audio.SetState(ent.Comp.AudioStream, AudioState.Paused); + } + + private void OnJukeboxSetTime(EntityUid uid, JukeboxComponent component, JukeboxSetTimeMessage args) + { + var offset = (args.Session.Channel.Ping * 1.5f) / 1000f; + Audio.SetPlaybackPosition(component.AudioStream, args.SongTime + offset); + } + + private void OnPowerChanged(Entity entity, ref PowerChangedEvent args) + { + TryUpdateVisualState(entity); + + if (!this.IsPowered(entity.Owner, EntityManager)) + { + Stop(entity); + } + } + + private void OnJukeboxStop(Entity entity, ref JukeboxStopMessage args) + { + Stop(entity); + } + + private void Stop(Entity entity) + { + Audio.SetState(entity.Comp.AudioStream, AudioState.Stopped); + Dirty(entity); + } + + private void OnJukeboxSelected(EntityUid uid, JukeboxComponent component, JukeboxSelectedMessage args) + { + if (!Audio.IsPlaying(component.AudioStream)) + { + component.SelectedSongId = args.SongId; + DirectSetVisualState(uid, JukeboxVisualState.Select); + component.Selecting = true; + component.AudioStream = Audio.Stop(component.AudioStream); + } + + Dirty(uid, component); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + if (comp.Selecting) + { + comp.SelectAccumulator += frameTime; + if (comp.SelectAccumulator >= 0.5f) + { + comp.SelectAccumulator = 0f; + comp.Selecting = false; + + TryUpdateVisualState(uid, comp); + } + } + } + } + + private void OnComponentShutdown(EntityUid uid, JukeboxComponent component, ComponentShutdown args) + { + component.AudioStream = Audio.Stop(component.AudioStream); + } + + private void DirectSetVisualState(EntityUid uid, JukeboxVisualState state) + { + _appearanceSystem.SetData(uid, JukeboxVisuals.VisualState, state); + } + + private void TryUpdateVisualState(EntityUid uid, JukeboxComponent? jukeboxComponent = null) + { + if (!Resolve(uid, ref jukeboxComponent)) + return; + + var finalState = JukeboxVisualState.On; + + if (!this.IsPowered(uid, EntityManager)) + { + finalState = JukeboxVisualState.Off; + } + + _appearanceSystem.SetData(uid, JukeboxVisuals.VisualState, finalState); + } +} diff --git a/Content.Server/Botany/SeedPrototype.cs b/Content.Server/Botany/SeedPrototype.cs index 1a3c0473a4..0ae56bc5fc 100644 --- a/Content.Server/Botany/SeedPrototype.cs +++ b/Content.Server/Botany/SeedPrototype.cs @@ -2,16 +2,16 @@ using Content.Server.Botany.Components; using Content.Server.Botany.Systems; using Content.Shared.Atmos; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; using Robust.Shared.Utility; -using Robust.Shared.Audio; namespace Content.Server.Botany; [Prototype("seed")] -public sealed class SeedPrototype : SeedData, IPrototype +public sealed partial class SeedPrototype : SeedData, IPrototype { [IdDataField] public string ID { get; private init; } = default!; } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index 9ce414adc3..7a81e1a424 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -184,6 +184,15 @@ namespace Content.Server.Cargo.Systems order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); _audio.PlayPvs(component.ConfirmSound, uid); + var approverName = idCard.Comp?.FullName ?? Loc.GetString("access-reader-unknown-id"); + var approverJob = idCard.Comp?.JobTitle ?? Loc.GetString("access-reader-unknown-id"); + var message = Loc.GetString("cargo-console-unlock-approved-order-broadcast", + ("productName", Loc.GetString(order.ProductName)), + ("orderAmount", order.OrderQuantity), + ("approverName", approverName), + ("approverJob", approverJob), + ("cost", cost)); + _radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false); ConsolePopup(args.Session, Loc.GetString("cargo-console-trade-station", ("destination", MetaData(tradeDestination.Value).EntityName))); // Log order approval @@ -327,7 +336,7 @@ namespace Content.Server.Cargo.Systems private static CargoOrderData GetOrderData(CargoConsoleAddOrderMessage args, CargoProductPrototype cargoProduct, int id) { - return new CargoOrderData(id, cargoProduct.Product, cargoProduct.Cost, args.Amount, args.Requester, args.Reason); + return new CargoOrderData(id, cargoProduct.Product, cargoProduct.Name, cargoProduct.Cost, args.Amount, args.Requester, args.Reason); } public static int GetOutstandingOrderCount(StationCargoOrderDatabaseComponent component) @@ -376,6 +385,7 @@ namespace Content.Server.Cargo.Systems public bool AddAndApproveOrder( EntityUid dbUid, string spawnId, + string name, int cost, int qty, string sender, @@ -388,7 +398,7 @@ namespace Content.Server.Cargo.Systems DebugTools.Assert(_protoMan.HasIndex(spawnId)); // Make an order var id = GenerateOrderId(component); - var order = new CargoOrderData(id, spawnId, cost, qty, sender, description); + var order = new CargoOrderData(id, spawnId, name, cost, qty, sender, description); // Approve it now order.SetApproverData(dest, sender); diff --git a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs index 3bcd6d8d20..aa2614cdb8 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs @@ -154,7 +154,7 @@ public sealed partial class CargoSystem // We won't be able to fit the whole order on, so make one // which represents the space we do have left: var reducedOrder = new CargoOrderData(order.OrderId, - order.ProductId, order.Price, spaceRemaining, order.Requester, order.Reason); + order.ProductId, order.ProductName, order.Price, spaceRemaining, order.Requester, order.Reason); orders.Add(reducedOrder); } else diff --git a/Content.Server/Cargo/Systems/CargoSystem.cs b/Content.Server/Cargo/Systems/CargoSystem.cs index badad9e57b..a93a7bdcc2 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.cs @@ -8,6 +8,7 @@ using Content.Server.Stack; using Content.Server.Station.Systems; using Content.Shared.Access.Systems; using Content.Shared.Administration.Logs; +using Content.Server.Radio.EntitySystems; using Content.Shared.Cargo; using Content.Shared.Cargo.Components; using Content.Shared.Containers.ItemSlots; @@ -42,6 +43,7 @@ public sealed partial class CargoSystem : SharedCargoSystem [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; + [Dependency] private readonly RadioSystem _radio = default!; private EntityQuery _xformQuery; private EntityQuery _blacklistQuery; diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index 9e1970d63c..f878eeee75 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -199,7 +199,7 @@ public sealed class PricingSystem : EntitySystem /// This fires off an event to calculate the price. /// Calculating the price of an entity that somehow contains itself will likely hang. /// - public double GetPrice(EntityUid uid) + public double GetPrice(EntityUid uid, bool includeContents = true) { var ev = new PriceCalculationEvent(); RaiseLocalEvent(uid, ref ev); @@ -222,7 +222,7 @@ public sealed class PricingSystem : EntitySystem price += GetStaticPrice(uid); } - if (TryComp(uid, out var containers)) + if (includeContents && TryComp(uid, out var containers)) { foreach (var container in containers.Containers.Values) { diff --git a/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs b/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs new file mode 100644 index 0000000000..1f9203d299 --- /dev/null +++ b/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs @@ -0,0 +1,36 @@ +using System.Diagnostics; +using Content.Server.Administration; +using Content.Server.Chat.V2.Repository; +using Content.Shared.Administration; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.Errors; +using Robust.Shared.Utility; + +namespace Content.Server.Chat.V2.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +public sealed class DeleteChatMessageCommand : ToolshedCommand +{ + [Dependency] private readonly IEntitySystemManager _manager = default!; + + [CommandImplementation("id")] + public void DeleteChatMessage([CommandInvocationContext] IInvocationContext ctx, [CommandArgument] uint messageId) + { + if (!_manager.GetEntitySystem().Delete(messageId)) + { + ctx.ReportError(new MessageIdDoesNotExist()); + } + } +} + +public record struct MessageIdDoesNotExist() : IConError +{ + public FormattedMessage DescribeInner() + { + return FormattedMessage.FromUnformatted(Loc.GetString("command-error-deletechatmessage-id-notexist")); + } + + public string? Expression { get; set; } + public Vector2i? IssueSpan { get; set; } + public StackTrace? Trace { get; set; } +} diff --git a/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs b/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs new file mode 100644 index 0000000000..3d8b69dd76 --- /dev/null +++ b/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs @@ -0,0 +1,41 @@ +using System.Diagnostics; +using Content.Server.Administration; +using Content.Server.Chat.V2.Repository; +using Content.Shared.Administration; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.Errors; +using Robust.Shared.Utility; + +namespace Content.Server.Chat.V2.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +public sealed class NukeChatMessagesCommand : ToolshedCommand +{ + [Dependency] private readonly IEntitySystemManager _manager = default!; + + [CommandImplementation("usernames")] + public void Command([CommandInvocationContext] IInvocationContext ctx, [CommandArgument] string usernamesCsv) + { + var usernames = usernamesCsv.Split(','); + + foreach (var username in usernames) + { + if (!_manager.GetEntitySystem().NukeForUsername(username, out var reason)) + { + ctx.ReportError(new NukeMessagesForUsernameError(reason)); + } + } + } +} + +public record struct NukeMessagesForUsernameError(string Reason) : IConError +{ + public FormattedMessage DescribeInner() + { + return FormattedMessage.FromUnformatted(Reason); + } + + public string? Expression { get; set; } + public Vector2i? IssueSpan { get; set; } + public StackTrace? Trace { get; set; } +} diff --git a/Content.Server/Chat/V2/Messages.cs b/Content.Server/Chat/V2/Messages.cs new file mode 100644 index 0000000000..31a563cbeb --- /dev/null +++ b/Content.Server/Chat/V2/Messages.cs @@ -0,0 +1,94 @@ +using Content.Shared.Chat.Prototypes; +using Content.Shared.Chat.V2; +using Content.Shared.Radio; + +namespace Content.Server.Chat.V2; + +/// +/// Raised locally when a comms announcement is made. +/// +public sealed class CommsAnnouncementCreatedEvent(EntityUid sender, EntityUid console, string message) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = sender; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Announcement; + public EntityUid Console = console; +} + +/// +/// Raised locally when a character speaks in Dead Chat. +/// +public sealed class DeadChatCreatedEvent(EntityUid speaker, string message, bool isAdmin) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.DeadChat; + public bool IsAdmin = isAdmin; +} + +/// +/// Raised locally when a character emotes. +/// +public sealed class EmoteCreatedEvent(EntityUid sender, string message, float range) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = sender; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Emote; + public float Range = range; +} + +/// +/// Raised locally when a character talks in local. +/// +public sealed class LocalChatCreatedEvent(EntityUid speaker, string message, float range) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Local; + public float Range = range; +} + +/// +/// Raised locally when a character speaks in LOOC. +/// +public sealed class LoocCreatedEvent(EntityUid speaker, string message) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Looc; +} + +/// +/// Raised locally when a character speaks on the radio. +/// +public sealed class RadioCreatedEvent( + EntityUid speaker, + string message, + RadioChannelPrototype channel) + : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public RadioChannelPrototype Channel = channel; + public MessageType Type => MessageType.Radio; +} + +/// +/// Raised locally when a character whispers. +/// +public sealed class WhisperCreatedEvent(EntityUid speaker, string message, float minRange, float maxRange) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Whisper; + public float MinRange = minRange; + public float MaxRange = maxRange; +} + diff --git a/Content.Server/Chat/V2/Repository/ChatRepository.cs b/Content.Server/Chat/V2/Repository/ChatRepository.cs new file mode 100644 index 0000000000..06de37128f --- /dev/null +++ b/Content.Server/Chat/V2/Repository/ChatRepository.cs @@ -0,0 +1,196 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Runtime.InteropServices; +using Content.Shared.Chat.V2; +using Content.Shared.Chat.V2.Repository; +using Robust.Server.Player; +using Robust.Shared.Network; +using Robust.Shared.Replays; + +namespace Content.Server.Chat.V2.Repository; + +/// +/// Stores , gives them UIDs, and issues . +/// Allows for deletion of messages. +/// +public sealed class ChatRepositorySystem : EntitySystem +{ + [Dependency] private readonly IReplayRecordingManager _replay = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + // Clocks should start at 1, as 0 indicates "clock not set" or "clock forgotten to be set by bad programmer". + private uint _nextMessageId = 1; + private Dictionary _messages = new(); + private Dictionary> _playerMessages = new(); + + public override void Initialize() + { + Refresh(); + + _replay.RecordingFinished += _ => + { + // TODO: resolve https://github.com/space-wizards/space-station-14/issues/25485 so we can dump the chat to disc. + Refresh(); + }; + } + + /// + /// Adds an to the repo and raises it with a UID for consumption elsewhere. + /// + /// The event to store and raise + /// If storing and raising succeeded. + public bool Add(IChatEvent ev) + { + if (!_player.TryGetSessionByEntity(ev.Sender, out var session)) + { + return false; + } + + var messageId = _nextMessageId; + + _nextMessageId++; + + ev.Id = messageId; + + var storedEv = new ChatRecord + { + UserName = session.Name, + UserId = session.UserId, + EntityName = Name(ev.Sender), + StoredEvent = ev + }; + + _messages[messageId] = storedEv; + + CollectionsMarshal.GetValueRefOrAddDefault(_playerMessages, storedEv.UserId, out _)?.Add(messageId); + + RaiseLocalEvent(ev.Sender, new MessageCreatedEvent(ev), true); + + return true; + } + + /// + /// Returns the event associated with a UID, if it exists. + /// + /// The UID of a event. + /// The event, if it exists. + public IChatEvent? GetEventFor(uint id) + { + return _messages.TryGetValue(id, out var record) ? record.StoredEvent : null; + } + + /// + /// Edits a specific message and issues a that says this happened both locally and + /// on the network. Note that this doesn't replay the message (yet), so translators and mutators won't act on it. + /// + /// The ID to edit + /// The new message to send + /// If patching did anything did anything + /// Should be used for admining and admemeing only. + public bool Patch(uint id, string message) + { + if (!_messages.TryGetValue(id, out var ev)) + { + return false; + } + + ev.StoredEvent.Message = message; + + RaiseLocalEvent(new MessagePatchedEvent(id, message)); + + return true; + } + + /// + /// Deletes a message from the repository and issues a that says this has happened + /// both locally and on the network. + /// + /// The ID to delete + /// If deletion did anything + /// Should only be used for adminning + public bool Delete(uint id) + { + if (!_messages.TryGetValue(id, out var ev)) + { + return false; + } + + _messages.Remove(id); + + if (_playerMessages.TryGetValue(ev.UserId, out var set)) + { + set.Remove(id); + } + + RaiseLocalEvent(new MessageDeletedEvent(id)); + + return true; + } + + /// + /// Nukes a user's entire chat history from the repo and issues a saying this has + /// happened. + /// + /// The user ID to nuke. + /// Why nuking failed, if it did. + /// If nuking did anything. + /// Note that this could be a very large event, as we send every single event ID over the wire. + /// By necessity we can't leak the player-source of chat messages (or if they even have the same origin) because of + /// client modders who could use that information to cheat/metagrudge/etc >:( + public bool NukeForUsername(string userName, [NotNullWhen(false)] out string? reason) + { + if (!_player.TryGetUserId(userName, out var userId)) + { + reason = Loc.GetString("command-error-nukechatmessages-usernames-usernamenotexist", ("username", userName)); + + return false; + } + + return NukeForUserId(userId, out reason); + } + + /// + /// Nukes a user's entire chat history from the repo and issues a saying this has + /// happened. + /// + /// The user ID to nuke. + /// Why nuking failed, if it did. + /// If nuking did anything. + /// Note that this could be a very large event, as we send every single event ID over the wire. + /// By necessity we can't leak the player-source of chat messages (or if they even have the same origin) because of + /// client modders who could use that information to cheat/metagrudge/etc >:( + public bool NukeForUserId(NetUserId userId, [NotNullWhen(false)] out string? reason) + { + if (!_playerMessages.TryGetValue(userId, out var dict)) + { + reason = Loc.GetString("command-error-nukechatmessages-usernames-usernamenomessages", ("userId", userId.UserId.ToString())); + + return false; + } + + foreach (var id in dict) + { + _messages.Remove(id); + } + + var ev = new MessagesNukedEvent(dict); + + CollectionsMarshal.GetValueRefOrAddDefault(_playerMessages, userId, out _)?.Clear(); + + RaiseLocalEvent(ev); + + reason = null; + + return true; + } + + /// + /// Dumps held chat storage data and refreshes the repo. + /// + public void Refresh() + { + _nextMessageId = 1; + _messages.Clear(); + _playerMessages.Clear(); + } +} diff --git a/Content.Server/Chemistry/Components/ReagentTankComponent.cs b/Content.Server/Chemistry/Components/ReagentTankComponent.cs deleted file mode 100644 index cc0d2657d7..0000000000 --- a/Content.Server/Chemistry/Components/ReagentTankComponent.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Content.Shared.FixedPoint; - - -namespace Content.Server.Chemistry.Components -{ - [RegisterComponent] - public sealed partial class ReagentTankComponent : Component - { - [DataField("transferAmount")] - [ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 TransferAmount { get; set; } = FixedPoint2.New(10); - - [DataField("tankType")] - [ViewVariables(VVAccess.ReadWrite)] - public ReagentTankType TankType { get; set; } = ReagentTankType.Unspecified; - } - - public enum ReagentTankType : byte - { - Unspecified, - Fuel - } -} diff --git a/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs index 032374d4a5..d5f7655f88 100644 --- a/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs @@ -30,7 +30,7 @@ public sealed partial class ReactionMixerSystem : EntitySystem return; } - if (!_solutionContainers.TryGetMixableSolution(args.Target.Value, out var solution)) + if (!_solutionContainers.TryGetMixableSolution(args.Target.Value, out var solution, out _)) return; _popup.PopupEntity(Loc.GetString(entity.Comp.MixMessage, ("mixed", Identity.Entity(args.Target.Value, EntityManager)), ("mixer", Identity.Entity(entity.Owner, EntityManager))), args.User, args.User); diff --git a/Content.Server/Clothing/MagbootsSystem.cs b/Content.Server/Clothing/MagbootsSystem.cs index bc6880552f..f12558389e 100644 --- a/Content.Server/Clothing/MagbootsSystem.cs +++ b/Content.Server/Clothing/MagbootsSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Atmos.Components; using Content.Shared.Alert; using Content.Shared.Clothing; -using Content.Shared.Inventory.Events; namespace Content.Server.Clothing; @@ -13,8 +12,8 @@ public sealed class MagbootsSystem : SharedMagbootsSystem { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } protected override void UpdateMagbootEffects(EntityUid parent, EntityUid uid, bool state, MagbootsComponent? component) @@ -38,19 +37,13 @@ public sealed class MagbootsSystem : SharedMagbootsSystem } } - private void OnGotUnequipped(EntityUid uid, MagbootsComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, MagbootsComponent component, ref ClothingGotUnequippedEvent args) { - if (args.Slot == "shoes") - { - UpdateMagbootEffects(args.Equipee, uid, false, component); - } + UpdateMagbootEffects(args.Wearer, uid, false, component); } - private void OnGotEquipped(EntityUid uid, MagbootsComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, MagbootsComponent component, ref ClothingGotEquippedEvent args) { - if (args.Slot == "shoes") - { - UpdateMagbootEffects(args.Equipee, uid, true, component); - } + UpdateMagbootEffects(args.Wearer, uid, true, component); } } diff --git a/Content.Server/Construction/Components/WelderRefinableComponent.cs b/Content.Server/Construction/Components/WelderRefinableComponent.cs index 9d8958f761..ed37d6f74b 100644 --- a/Content.Server/Construction/Components/WelderRefinableComponent.cs +++ b/Content.Server/Construction/Components/WelderRefinableComponent.cs @@ -1,22 +1,24 @@ using Content.Shared.Tools; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; -namespace Content.Server.Construction.Components +namespace Content.Server.Construction.Components; + +/// +/// Used for something that can be refined by welder. +/// For example, glass shard can be refined to glass sheet. +/// +[RegisterComponent] +public sealed partial class WelderRefinableComponent : Component { - /// - /// Used for something that can be refined by welder. - /// For example, glass shard can be refined to glass sheet. - /// - [RegisterComponent] - public sealed partial class WelderRefinableComponent : Component - { - [DataField("refineResult")] - public HashSet? RefineResult = new(); + [DataField] + public HashSet? RefineResult = new(); - [DataField("refineTime")] - public float RefineTime = 2f; + [DataField] + public float RefineTime = 2f; - [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string QualityNeeded = "Welding"; - } + [DataField] + public float RefineFuel; + + [DataField] + public ProtoId QualityNeeded = "Welding"; } diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index 59a5fd6af5..ad7b2a11b0 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -11,10 +11,8 @@ using Content.Shared.DoAfter; using Content.Shared.Interaction; using Content.Shared.Prying.Systems; using Content.Shared.Radio.EntitySystems; -using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; using Robust.Shared.Containers; -using Robust.Shared.Map; using Robust.Shared.Utility; #if EXCEPTION_TOLERANCE // ReSharper disable once RedundantUsingDirective @@ -369,7 +367,8 @@ namespace Content.Server.Construction TimeSpan.FromSeconds(toolInsertStep.DoAfter), new [] { toolInsertStep.Tool }, new ConstructionInteractDoAfterEvent(EntityManager, interactUsing), - out var doAfter); + out var doAfter, + toolInsertStep.Fuel); return result && doAfter != null ? HandleResult.DoAfter : HandleResult.False; } diff --git a/Content.Server/Construction/RefiningSystem.cs b/Content.Server/Construction/RefiningSystem.cs index b9d80c7170..53cfb14528 100644 --- a/Content.Server/Construction/RefiningSystem.cs +++ b/Content.Server/Construction/RefiningSystem.cs @@ -1,11 +1,8 @@ using Content.Server.Construction.Components; using Content.Server.Stack; using Content.Shared.Construction; -using Content.Shared.DoAfter; using Content.Shared.Interaction; using Content.Shared.Stacks; -using Content.Shared.Tools; -using Robust.Shared.Serialization; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; namespace Content.Server.Construction @@ -26,7 +23,7 @@ namespace Content.Server.Construction if (args.Handled) return; - args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, component.RefineTime, component.QualityNeeded, new WelderRefineDoAfterEvent()); + args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, component.RefineTime, component.QualityNeeded, new WelderRefineDoAfterEvent(), fuel: component.RefineFuel); } private void OnDoAfter(EntityUid uid, WelderRefinableComponent component, WelderRefineDoAfterEvent args) @@ -41,7 +38,7 @@ namespace Content.Server.Construction // spawn each result after refine foreach (var result in component.RefineResult!) { - var droppedEnt = EntityManager.SpawnEntity(result, resultPosition); + var droppedEnt = Spawn(result, resultPosition); // TODO: If something has a stack... Just use a prototype with a single thing in the stack. // This is not a good way to do it. diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index 8782454eac..70e404fdef 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -28,7 +28,6 @@ - diff --git a/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs b/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs index 264ec4a8ec..42676c1891 100644 --- a/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs @@ -1,7 +1,5 @@ using Content.Server.Administration.Logs; using Content.Server.Damage.Components; -using Content.Server.Tools.Components; -using Content.Shared.Item; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Interaction; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs index 28c4b2ef16..f0499dc6a2 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs @@ -17,12 +17,12 @@ public sealed partial class BurnBodyBehavior : IThresholdBehavior var inventorySystem = system.EntityManager.System(); var sharedPopupSystem = system.EntityManager.System(); - if (!system.EntityManager.TryGetComponent(bodyId, out var comp)) - return; - - foreach (var item in inventorySystem.GetHandOrInventoryEntities(bodyId)) + if (system.EntityManager.TryGetComponent(bodyId, out var comp)) { - transformSystem.DropNextTo(item, bodyId); + foreach (var item in inventorySystem.GetHandOrInventoryEntities(bodyId)) + { + transformSystem.DropNextTo(item, bodyId); + } } sharedPopupSystem.PopupCoordinates(Loc.GetString("bodyburn-text-others", ("name", bodyId)), transformSystem.GetMoverCoordinates(bodyId), PopupType.LargeCaution); diff --git a/Content.Server/Electrocution/Components/ElectrifiedComponent.cs b/Content.Server/Electrocution/Components/ElectrifiedComponent.cs index 65a539eb08..4ef07a0cca 100644 --- a/Content.Server/Electrocution/Components/ElectrifiedComponent.cs +++ b/Content.Server/Electrocution/Components/ElectrifiedComponent.cs @@ -85,4 +85,7 @@ public sealed partial class ElectrifiedComponent : Component [DataField("shockVolume")] public float ShockVolume = 20; + + [DataField] + public float Probability = 1f; } diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 1163306282..8291e97efe 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -213,6 +213,9 @@ public sealed class ElectrocutionSystem : SharedElectrocutionSystem if (!IsPowered(uid, electrified, transform)) return false; + if (!_random.Prob(electrified.Probability)) + return false; + EnsureComp(uid); _appearance.SetData(uid, ElectrifiedVisuals.IsPowered, true); diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index fe073da7a4..d9b81c8e5a 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -14,12 +14,13 @@ namespace Content.Server.Entry "Icon", "HandheldGPS", "CableVisualizer", + "SolutionItemStatus", "UIFragment", "PdaBorderColor", "InventorySlots", "LightFade", "HolidayRsiSwap", - "OptionsVisualizer", + "OptionsVisualizer" }; } } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 94f5585536..3675c214b1 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -153,7 +153,7 @@ namespace Content.Server.Explosion.EntitySystems private void HandleFlashTrigger(EntityUid uid, FlashOnTriggerComponent component, TriggerEvent args) { // TODO Make flash durations sane ffs. - _flashSystem.FlashArea(uid, args.User, component.Range, component.Duration * 1000f); + _flashSystem.FlashArea(uid, args.User, component.Range, component.Duration * 1000f, probability: component.Probability); args.Handled = true; } diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index fe7eb81d1e..dd8cdab426 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -19,6 +19,7 @@ using Content.Shared.Weapons.Melee.Events; using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Random; using Robust.Shared.Timing; using InventoryComponent = Content.Shared.Inventory.InventoryComponent; @@ -37,6 +38,7 @@ namespace Content.Server.Flash [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly StunSystem _stun = default!; [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly IRobustRandom _random = default!; public override void Initialize() { @@ -63,7 +65,7 @@ namespace Content.Server.Flash args.Handled = true; foreach (var e in args.HitEntities) { - Flash(e, args.User, uid, comp.FlashDuration, comp.SlowTo, melee: true); + Flash(e, args.User, uid, comp.FlashDuration, comp.SlowTo, melee: true, stunDuration: comp.MeleeStunDuration); } } @@ -73,7 +75,7 @@ namespace Content.Server.Flash return; args.Handled = true; - FlashArea(uid, args.User, comp.Range, comp.AoeFlashDuration, comp.SlowTo, true); + FlashArea(uid, args.User, comp.Range, comp.AoeFlashDuration, comp.SlowTo, true, comp.Probability); } private bool UseFlash(EntityUid uid, FlashComponent comp, EntityUid user) @@ -113,7 +115,8 @@ namespace Content.Server.Flash float slowTo, bool displayPopup = true, FlashableComponent? flashable = null, - bool melee = false) + bool melee = false, + TimeSpan? stunDuration = null) { if (!Resolve(target, ref flashable, false)) return; @@ -137,41 +140,46 @@ namespace Content.Server.Flash flashable.Duration = flashDuration / 1000f; // TODO: Make this sane... Dirty(target, flashable); - _stun.TrySlowdown(target, TimeSpan.FromSeconds(flashDuration/1000f), true, + if (stunDuration != null) + { + _stun.TryParalyze(target, stunDuration.Value, true); + } + else + { + _stun.TrySlowdown(target, TimeSpan.FromSeconds(flashDuration/1000f), true, slowTo, slowTo); + } if (displayPopup && user != null && target != user && Exists(user.Value)) { _popup.PopupEntity(Loc.GetString("flash-component-user-blinds-you", ("user", Identity.Entity(user.Value, EntityManager))), target, target); } - } - public void FlashArea(EntityUid source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, SoundSpecifier? sound = null) + public void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) { - var transform = EntityManager.GetComponent(source); + var transform = Transform(source); var mapPosition = _transform.GetMapCoordinates(transform); var flashableQuery = GetEntityQuery(); foreach (var entity in _entityLookup.GetEntitiesInRange(transform.Coordinates, range)) { + if (!_random.Prob(probability)) + continue; + if (!flashableQuery.TryGetComponent(entity, out var flashable)) continue; - // Check for unobstructed entities while ignoring the mobs with flashable components. - if (!_interaction.InRangeUnobstructed(entity, mapPosition, range, flashable.CollisionGroup, (e) => e == source)) + if (!_interaction.InRangeUnobstructed(entity, mapPosition, range, flashable.CollisionGroup, predicate: (e) => flashableQuery.HasComponent(e) || e == source.Owner)) continue; // They shouldn't have flash removed in between right? Flash(entity, user, source, duration, slowTo, displayPopup, flashableQuery.GetComponent(entity)); } - if (sound != null) - { - _audio.PlayPvs(sound, source, AudioParams.Default.WithVolume(1f).WithMaxDistance(3f)); - } + _audio.PlayPvs(sound, source, AudioParams.Default.WithVolume(1f).WithMaxDistance(3f)); } private void OnInventoryFlashAttempt(EntityUid uid, InventoryComponent component, FlashAttemptEvent args) diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs index 7780e5d467..d02dd44e81 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs @@ -1,16 +1,14 @@ using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Fluids.Components; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; -using Content.Shared.Clothing.Components; +using Content.Shared.Clothing; using Content.Shared.CombatMode.Pacification; using Content.Shared.Database; using Content.Shared.FixedPoint; using Content.Shared.Fluids.Components; using Content.Shared.IdentityManagement; -using Content.Shared.Inventory.Events; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Spillable; @@ -29,8 +27,8 @@ public sealed partial class PuddleSystem SubscribeLocalEvent(SpillOnLand); // Openable handles the event if it's closed SubscribeLocalEvent(SplashOnMeleeHit, after: [typeof(OpenableSystem)]); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); SubscribeLocalEvent(OnOverflow); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnAttemptPacifiedThrow); @@ -99,20 +97,11 @@ public sealed partial class PuddleSystem } } - private void OnGotEquipped(Entity entity, ref GotEquippedEvent args) + private void OnGotEquipped(Entity entity, ref ClothingGotEquippedEvent args) { if (!entity.Comp.SpillWorn) return; - if (!TryComp(entity, out ClothingComponent? clothing)) - return; - - // check if entity was actually used as clothing - // not just taken in pockets or something - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) - return; - if (!_solutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.SolutionName, out var soln, out var solution)) return; @@ -124,10 +113,10 @@ public sealed partial class PuddleSystem // spill all solution on the player var drainedSolution = _solutionContainerSystem.Drain(entity.Owner, soln.Value, solution.Volume); - TrySplashSpillAt(entity.Owner, Transform(args.Equipee).Coordinates, drainedSolution, out _); + TrySplashSpillAt(entity.Owner, Transform(args.Wearer).Coordinates, drainedSolution, out _); } - private void OnGotUnequipped(Entity entity, ref GotUnequippedEvent args) + private void OnGotUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) { if (!entity.Comp.SpillWorn) return; diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs index a9ef23a2f5..1445e253f3 100644 --- a/Content.Server/Forensics/Systems/ForensicsSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs @@ -103,7 +103,7 @@ namespace Content.Server.Forensics private void OnAfterInteract(EntityUid uid, CleansForensicsComponent component, AfterInteractEvent args) { - if (args.Handled) + if (args.Handled || !args.CanReach) return; if (!TryComp(args.Target, out var forensicsComp)) diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index 818d3c6e94..0a749d2e01 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -24,6 +24,7 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -180,7 +181,7 @@ public sealed class PiratesRuleSystem : GameRuleSystem var aabbs = EntityQuery().SelectMany(x => x.Grids.Select(x => - xformQuery.GetComponent(x).WorldMatrix.TransformBox(_mapManager.GetGridComp(x).LocalAABB))) + xformQuery.GetComponent(x).WorldMatrix.TransformBox(Comp(x).LocalAABB))) .ToArray(); var aabb = aabbs[0]; diff --git a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs index 5caa223c9c..ba9fb2ccbc 100644 --- a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs @@ -217,7 +217,6 @@ public sealed class RevolutionaryRuleSystem : GameRuleSystem(ev.Target); - _stun.TryParalyze(ev.Target, comp.StunTime, true); if (ev.User != null) { diff --git a/Content.Server/ImmovableRod/ImmovableRodSystem.cs b/Content.Server/ImmovableRod/ImmovableRodSystem.cs index 4553dda095..f9873b0d6a 100644 --- a/Content.Server/ImmovableRod/ImmovableRodSystem.cs +++ b/Content.Server/ImmovableRod/ImmovableRodSystem.cs @@ -60,18 +60,21 @@ public sealed class ImmovableRodSystem : EntitySystem _physics.SetFriction(uid, phys, 0f); _physics.SetBodyStatus(uid, phys, BodyStatus.InAir); - if (!component.RandomizeVelocity) - return; - var xform = Transform(uid); - var vel = component.DirectionOverride.Degrees switch + var (worldPos, worldRot) = _transform.GetWorldPositionRotation(uid); + var vel = worldRot.ToWorldVec() * component.MaxSpeed; + + if (component.RandomizeVelocity) { - 0f => _random.NextVector2(component.MinSpeed, component.MaxSpeed), - _ => _transform.GetWorldRotation(uid).RotateVec(component.DirectionOverride.ToVec()) * _random.NextFloat(component.MinSpeed, component.MaxSpeed) - }; + vel = component.DirectionOverride.Degrees switch + { + 0f => _random.NextVector2(component.MinSpeed, component.MaxSpeed), + _ => worldRot.RotateVec(component.DirectionOverride.ToVec()) * _random.NextFloat(component.MinSpeed, component.MaxSpeed) + }; + } _physics.ApplyLinearImpulse(uid, vel, body: phys); - xform.LocalRotation = (vel - _transform.GetWorldPosition(uid)).ToWorldAngle() + MathHelper.PiOver2; + xform.LocalRotation = (vel - worldPos).ToWorldAngle() + MathHelper.PiOver2; } } diff --git a/Content.Server/Inventory/ServerInventorySystem.cs b/Content.Server/Inventory/ServerInventorySystem.cs index 29d39f3723..e3783753bb 100644 --- a/Content.Server/Inventory/ServerInventorySystem.cs +++ b/Content.Server/Inventory/ServerInventorySystem.cs @@ -1,21 +1,15 @@ -using Content.Server.Storage.EntitySystems; using Content.Shared.Explosion; using Content.Shared.Inventory; -using Content.Shared.Inventory.Events; -using Content.Shared.Storage; namespace Content.Server.Inventory { public sealed class ServerInventorySystem : InventorySystem { - [Dependency] private readonly StorageSystem _storageSystem = default!; - public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnExploded); - SubscribeNetworkEvent(OnOpenSlotStorage); } private void OnExploded(Entity ent, ref BeforeExplodeEvent args) @@ -29,17 +23,6 @@ namespace Content.Server.Inventory } } - private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEventArgs args) - { - if (args.SenderSession.AttachedEntity is not { Valid: true } uid) - return; - - if (TryGetSlotEntity(uid, ev.Slot, out var entityUid) && TryComp(entityUid, out var storageComponent)) - { - _storageSystem.OpenStorageUI(entityUid.Value, uid, storageComponent); - } - } - public void TransferEntityInventories(Entity source, Entity target) { if (!Resolve(source.Owner, ref source.Comp) || !Resolve(target.Owner, ref target.Comp)) diff --git a/Content.Server/Light/Components/EmergencyLightComponent.cs b/Content.Server/Light/Components/EmergencyLightComponent.cs index 20de7f1c03..b49a8c3868 100644 --- a/Content.Server/Light/Components/EmergencyLightComponent.cs +++ b/Content.Server/Light/Components/EmergencyLightComponent.cs @@ -14,7 +14,7 @@ public sealed partial class EmergencyLightComponent : SharedEmergencyLightCompon /// /// Is this emergency light forced on for some reason and cannot be disabled through normal means - /// (i.e. delta alert level?) + /// (i.e. blue alert or higher?) /// public bool ForciblyEnabled = false; diff --git a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs index 3fa5237948..f2c4c7dcc5 100644 --- a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs +++ b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs @@ -31,9 +31,9 @@ public sealed class EmergencyLightSystem : SharedEmergencyLightSystem SubscribeLocalEvent(OnEmergencyPower); } - private void OnEmergencyPower(EntityUid uid, EmergencyLightComponent component, ref PowerChangedEvent args) + private void OnEmergencyPower(Entity entity, ref PowerChangedEvent args) { - var meta = MetaData(uid); + var meta = MetaData(entity.Owner); // TODO: PowerChangedEvent shouldn't be issued for paused ents but this is the world we live in. if (meta.EntityLifeStage >= EntityLifeStage.Terminating || @@ -42,7 +42,7 @@ public sealed class EmergencyLightSystem : SharedEmergencyLightSystem return; } - UpdateState(uid, component); + UpdateState(entity); } private void OnEmergencyExamine(EntityUid uid, EmergencyLightComponent component, ExaminedEvent args) @@ -111,13 +111,13 @@ public sealed class EmergencyLightSystem : SharedEmergencyLightSystem if (details.ForceEnableEmergencyLights && !light.ForciblyEnabled) { light.ForciblyEnabled = true; - TurnOn(uid, light); + TurnOn((uid, light)); } else if (!details.ForceEnableEmergencyLights && light.ForciblyEnabled) { // Previously forcibly enabled, and we went down an alert level. light.ForciblyEnabled = false; - UpdateState(uid, light); + UpdateState((uid, light)); } } } @@ -135,31 +135,31 @@ public sealed class EmergencyLightSystem : SharedEmergencyLightSystem var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out _, out var emergencyLight, out var battery)) { - Update(uid, emergencyLight, battery, frameTime); + Update((uid, emergencyLight), battery, frameTime); } } - private void Update(EntityUid uid, EmergencyLightComponent component, BatteryComponent battery, float frameTime) + private void Update(Entity entity, BatteryComponent battery, float frameTime) { - if (component.State == EmergencyLightState.On) + if (entity.Comp.State == EmergencyLightState.On) { - if (!_battery.TryUseCharge(uid, component.Wattage * frameTime, battery)) + if (!_battery.TryUseCharge(entity.Owner, entity.Comp.Wattage * frameTime, battery)) { - SetState(uid, component, EmergencyLightState.Empty); - TurnOff(uid, component); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Empty); + TurnOff(entity); } } else { - _battery.SetCharge(uid, battery.CurrentCharge + component.ChargingWattage * frameTime * component.ChargingEfficiency, battery); + _battery.SetCharge(entity.Owner, battery.CurrentCharge + entity.Comp.ChargingWattage * frameTime * entity.Comp.ChargingEfficiency, battery); if (battery.IsFullyCharged) { - if (TryComp(uid, out var receiver)) + if (TryComp(entity.Owner, out var receiver)) { receiver.Load = 1; } - SetState(uid, component, EmergencyLightState.Full); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Full); } } } @@ -167,35 +167,73 @@ public sealed class EmergencyLightSystem : SharedEmergencyLightSystem /// /// Updates the light's power drain, battery drain, sprite and actual light state. /// - public void UpdateState(EntityUid uid, EmergencyLightComponent component) + public void UpdateState(Entity entity) { - if (!TryComp(uid, out var receiver)) + if (!TryComp(entity.Owner, out var receiver)) return; - if (receiver.Powered && !component.ForciblyEnabled) + if (!TryComp(_station.GetOwningStation(entity.Owner), out var alerts)) + return; + + if (alerts.AlertLevels == null || !alerts.AlertLevels.Levels.TryGetValue(alerts.CurrentLevel, out var details)) { - receiver.Load = (int) Math.Abs(component.Wattage); - TurnOff(uid, component); - SetState(uid, component, EmergencyLightState.Charging); + TurnOff(entity, Color.Red); // if no alert, default to off red state + return; } - else + + if (receiver.Powered && !entity.Comp.ForciblyEnabled) // Green alert { - TurnOn(uid, component); - SetState(uid, component, EmergencyLightState.On); + receiver.Load = (int) Math.Abs(entity.Comp.Wattage); + TurnOff(entity, details.Color); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Charging); + } + else if (!receiver.Powered) // If internal battery runs out it will end in off red state + { + TurnOn(entity, Color.Red); + SetState(entity.Owner, entity.Comp, EmergencyLightState.On); + } + else // Powered and enabled + { + TurnOn(entity, details.Color); + SetState(entity.Owner, entity.Comp, EmergencyLightState.On); } } - private void TurnOff(EntityUid uid, EmergencyLightComponent component) + private void TurnOff(Entity entity) { - _pointLight.SetEnabled(uid, false); - _appearance.SetData(uid, EmergencyLightVisuals.On, false); - _ambient.SetAmbience(uid, false); + _pointLight.SetEnabled(entity.Owner, false); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, false); + _ambient.SetAmbience(entity.Owner, false); } - private void TurnOn(EntityUid uid, EmergencyLightComponent component) + /// + /// Turn off emergency light and set color. + /// + private void TurnOff(Entity entity, Color color) { - _pointLight.SetEnabled(uid, true); - _appearance.SetData(uid, EmergencyLightVisuals.On, true); - _ambient.SetAmbience(uid, true); + _pointLight.SetEnabled(entity.Owner, false); + _pointLight.SetColor(entity.Owner, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.Color, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, false); + _ambient.SetAmbience(entity.Owner, false); + } + + private void TurnOn(Entity entity) + { + _pointLight.SetEnabled(entity.Owner, true); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, true); + _ambient.SetAmbience(entity.Owner, true); + } + + /// + /// Turn on emergency light and set color. + /// + private void TurnOn(Entity entity, Color color) + { + _pointLight.SetEnabled(entity.Owner, true); + _pointLight.SetColor(entity.Owner, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.Color, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, true); + _ambient.SetAmbience(entity.Owner, true); } } diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index 08ba0de833..08f3dcccf9 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -1,17 +1,14 @@ -// ReSharper disable once RedundantUsingDirective -// Used to warn the player in big red letters in debug mode - using System.Linq; using Content.Server.Administration; using Content.Server.GameTicking; using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.Player; +using Robust.Server.GameObjects; +using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.ContentPack; using Robust.Shared.Map; -using Robust.Shared.Utility; namespace Content.Server.Mapping { @@ -19,6 +16,8 @@ namespace Content.Server.Mapping sealed class MappingCommand : IConsoleCommand { [Dependency] private readonly IEntityManager _entities = default!; + [Dependency] private readonly IMapManager _map = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; public string Command => "mapping"; public string Description => Loc.GetString("cmd-mapping-desc"); @@ -57,13 +56,13 @@ namespace Content.Server.Mapping shell.WriteError(Loc.GetString("cmd-mapping-warning")); #endif - var mapManager = IoCManager.Resolve(); MapId mapId; + string? toLoad = null; + var mapSys = _entities.System(); // Get the map ID to use if (args.Length is 1 or 2) { - if (!int.TryParse(args[0], out var intMapId)) { shell.WriteError(Loc.GetString("cmd-mapping-failure-integer", ("arg", args[0]))); @@ -79,35 +78,33 @@ namespace Content.Server.Mapping return; } - if (mapManager.MapExists(mapId)) + if (_map.MapExists(mapId)) { shell.WriteError(Loc.GetString("cmd-mapping-exists", ("mapId", mapId))); return; } + // either load a map or create a new one. + if (args.Length <= 1) + { + mapSys.CreateMap(mapId, runMapInit: false); + } + else + { + var loadOptions = new MapLoadOptions {StoreMapUids = true}; + _entities.System().TryLoad(mapId, args[1], out _, loadOptions); + } + + // was the map actually created or did it fail somehow? + if (!_map.MapExists(mapId)) + { + shell.WriteError(Loc.GetString("cmd-mapping-error")); + return; + } } else { - mapId = mapManager.NextMapId(); - } - - string? toLoad = null; - // either load a map or create a new one. - if (args.Length <= 1) - { - shell.ExecuteCommand($"addmap {mapId} false"); - } - else - { - toLoad = CommandParsing.Escape(args[1]); - shell.ExecuteCommand($"loadmap {mapId} \"{toLoad}\" 0 0 0 true"); - } - - // was the map actually created? - if (!mapManager.MapExists(mapId)) - { - shell.WriteError(Loc.GetString("cmd-mapping-error")); - return; + mapSys.CreateMap(out mapId, runMapInit: false); } // map successfully created. run misc helpful mapping commands @@ -117,17 +114,15 @@ namespace Content.Server.Mapping shell.ExecuteCommand("aghost"); } - var cfg = IoCManager.Resolve(); - // don't interrupt mapping with events or auto-shuttle shell.ExecuteCommand("sudo cvar events.enabled false"); shell.ExecuteCommand("sudo cvar shuttle.auto_call_time 0"); - if (cfg.GetCVar(CCVars.AutosaveEnabled)) + if (_cfg.GetCVar(CCVars.AutosaveEnabled)) shell.ExecuteCommand($"toggleautosave {mapId} {toLoad ?? "NEWMAP"}"); shell.ExecuteCommand($"tp 0 0 {mapId}"); shell.RemoteExecuteCommand("mappingclientsidesetup"); - mapManager.SetMapPaused(mapId, true); + _map.SetMapPaused(mapId, true); if (args.Length == 2) shell.WriteLine(Loc.GetString("cmd-mapping-success-load",("mapId",mapId),("path", args[1]))); diff --git a/Content.Server/Medical/Components/CryoPodAirComponent.cs b/Content.Server/Medical/Components/CryoPodAirComponent.cs index baaa3bcda0..72a10b391e 100644 --- a/Content.Server/Medical/Components/CryoPodAirComponent.cs +++ b/Content.Server/Medical/Components/CryoPodAirComponent.cs @@ -11,5 +11,5 @@ public sealed partial class CryoPodAirComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("gasMixture")] - public GasMixture Air { get; set; } = new(Atmospherics.OneAtmosphere); + public GasMixture Air { get; set; } = new GasMixture(1000f); } diff --git a/Content.Server/Medical/CryoPodSystem.cs b/Content.Server/Medical/CryoPodSystem.cs index a949d980be..02e8cebbe0 100644 --- a/Content.Server/Medical/CryoPodSystem.cs +++ b/Content.Server/Medical/CryoPodSystem.cs @@ -276,10 +276,17 @@ public sealed partial class CryoPodSystem : SharedCryoPodSystem if (!TryComp(entity, out CryoPodAirComponent? cryoPodAir)) return; - args.GasMixtures ??= new Dictionary { { Name(entity.Owner), cryoPodAir.Air } }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(entity.Owner), cryoPodAir.Air)); // If it's connected to a port, include the port side - if (_nodeContainer.TryGetNode(entity.Owner, entity.Comp.PortName, out PipeNode? port)) - args.GasMixtures.Add(entity.Comp.PortName, port.Air); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(entity.Owner, entity.Comp.PortName, out PipeNode? port) && port.Air.Volume != 0f) + { + var portAirLocal = port.Air.Clone(); + portAirLocal.Multiply(port.Volume / port.Air.Volume); + portAirLocal.Volume = port.Volume; + args.GasMixtures.Add((entity.Comp.PortName, portAirLocal)); + } } private void OnEjected(Entity cryoPod, ref EntRemovedFromContainerMessage args) diff --git a/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs b/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs index f1864bb3a1..b8304c562a 100644 --- a/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs +++ b/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs @@ -3,11 +3,10 @@ using Content.Server.Medical.Components; using Content.Server.Medical.Stethoscope.Components; using Content.Server.Popups; using Content.Shared.Actions; -using Content.Shared.Clothing.Components; +using Content.Shared.Clothing; using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.FixedPoint; -using Content.Shared.Inventory.Events; using Content.Shared.Medical; using Content.Shared.Medical.Stethoscope; using Content.Shared.Mobs.Components; @@ -26,8 +25,8 @@ namespace Content.Server.Medical.Stethoscope public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); SubscribeLocalEvent>(AddStethoscopeVerb); SubscribeLocalEvent(OnGetActions); SubscribeLocalEvent(OnStethoscopeAction); @@ -37,26 +36,20 @@ namespace Content.Server.Medical.Stethoscope /// /// Add the component the verb event subs to if the equippee is wearing the stethoscope. /// - private void OnEquipped(EntityUid uid, StethoscopeComponent component, GotEquippedEvent args) + private void OnEquipped(EntityUid uid, StethoscopeComponent component, ref ClothingGotEquippedEvent args) { - if (!TryComp(uid, out var clothing)) - return; - // Is the clothing in its actual slot? - if (!clothing.Slots.HasFlag(args.SlotFlags)) - return; - component.IsActive = true; - var wearingComp = EnsureComp(args.Equipee); + var wearingComp = EnsureComp(args.Wearer); wearingComp.Stethoscope = uid; } - private void OnUnequipped(EntityUid uid, StethoscopeComponent component, GotUnequippedEvent args) + private void OnUnequipped(EntityUid uid, StethoscopeComponent component, ref ClothingGotUnequippedEvent args) { if (!component.IsActive) return; - RemComp(args.Equipee); + RemComp(args.Wearer); component.IsActive = false; } diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index 9864badc62..38e88f6e1e 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -7,10 +7,10 @@ using Content.Server.GameTicking; using Content.Server.Medical.CrewMonitoring; using Content.Server.Popups; using Content.Server.Station.Systems; +using Content.Shared.Clothing; using Content.Shared.Damage; using Content.Shared.DeviceNetwork; using Content.Shared.Examine; -using Content.Shared.Inventory.Events; using Content.Shared.Medical.SuitSensor; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; @@ -40,8 +40,8 @@ public sealed class SuitSensorSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnPlayerSpawn); SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); SubscribeLocalEvent(OnExamine); SubscribeLocalEvent>(OnVerb); SubscribeLocalEvent(OnInsert); @@ -160,19 +160,13 @@ public sealed class SuitSensorSystem : EntitySystem } } - private void OnEquipped(EntityUid uid, SuitSensorComponent component, GotEquippedEvent args) + private void OnEquipped(EntityUid uid, SuitSensorComponent component, ref ClothingGotEquippedEvent args) { - if (args.Slot != component.ActivationSlot) - return; - - component.User = args.Equipee; + component.User = args.Wearer; } - private void OnUnequipped(EntityUid uid, SuitSensorComponent component, GotUnequippedEvent args) + private void OnUnequipped(EntityUid uid, SuitSensorComponent component, ref ClothingGotUnequippedEvent args) { - if (args.Slot != component.ActivationSlot) - return; - component.User = null; } diff --git a/Content.Server/NPC/Components/NPCImprintingOnSpawnBehaviourComponent.cs b/Content.Server/NPC/Components/NPCImprintingOnSpawnBehaviourComponent.cs new file mode 100644 index 0000000000..26439d2b30 --- /dev/null +++ b/Content.Server/NPC/Components/NPCImprintingOnSpawnBehaviourComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.Whitelist; +using Robust.Shared.Collections; + +namespace Content.Server.NPC.Components; +/// +/// A component that makes the entity friendly to nearby creatures it sees on init. +/// +[RegisterComponent] +public sealed partial class NPCImprintingOnSpawnBehaviourComponent : Component +{ + /// + /// filter who can be a friend to this creature + /// + [DataField] + public EntityWhitelist? Whitelist; + + /// + /// when a creature appears, it will memorize all creatures in the radius to remember them as friends + /// + [DataField] + public float SpawnFriendsSearchRadius = 3f; + + /// + /// if there is a FollowCompound in HTN, the target of the following will be selected from random nearby targets when it appears + /// + [DataField] + public bool Follow = true; + + /// + /// is used to determine who became a friend from this component + /// + [DataField] + public List Friends = new(); +} diff --git a/Content.Server/NPC/Systems/NPCImprintingOnSpawnBehaviourSystem.cs b/Content.Server/NPC/Systems/NPCImprintingOnSpawnBehaviourSystem.cs new file mode 100644 index 0000000000..cfd3b08c61 --- /dev/null +++ b/Content.Server/NPC/Systems/NPCImprintingOnSpawnBehaviourSystem.cs @@ -0,0 +1,49 @@ +using System.Numerics; +using Content.Shared.NPC.Components; +using Content.Shared.NPC.Systems; +using Robust.Shared.Collections; +using Robust.Shared.Map; +using Robust.Shared.Random; +using NPCImprintingOnSpawnBehaviourComponent = Content.Server.NPC.Components.NPCImprintingOnSpawnBehaviourComponent; + +namespace Content.Server.NPC.Systems; + +public sealed partial class NPCImprintingOnSpawnBehaviourSystem : SharedNPCImprintingOnSpawnBehaviourSystem +{ + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly NPCSystem _npc = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(Entity imprinting, ref MapInitEvent args) + { + HashSet friends = new(); + _lookup.GetEntitiesInRange(imprinting, imprinting.Comp.SpawnFriendsSearchRadius, friends); + + foreach (var friend in friends) + { + if (imprinting.Comp.Whitelist?.IsValid(friend) != false) + { + AddImprintingTarget(imprinting, friend, imprinting.Comp); + } + } + + if (imprinting.Comp.Follow && imprinting.Comp.Friends.Count > 0) + { + var mommy = _random.Pick(imprinting.Comp.Friends); + _npc.SetBlackboard(imprinting, NPCBlackboard.FollowTarget, new EntityCoordinates(mommy, Vector2.Zero)); + } + } + + public void AddImprintingTarget(EntityUid entity, EntityUid friend, NPCImprintingOnSpawnBehaviourComponent component) + { + component.Friends.Add(friend); + var exception = EnsureComp(entity); + exception.Ignored.Add(friend); + } +} diff --git a/Content.Server/NPC/Systems/NPCSystem.cs b/Content.Server/NPC/Systems/NPCSystem.cs index 8abe0f7f54..9108629435 100644 --- a/Content.Server/NPC/Systems/NPCSystem.cs +++ b/Content.Server/NPC/Systems/NPCSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.CCVar; using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; using Content.Shared.NPC; +using Content.Shared.NPC.Systems; using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.Player; diff --git a/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs b/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs deleted file mode 100644 index aafb3bc106..0000000000 --- a/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Server.Nutrition.EntitySystems; -using Robust.Shared.Audio; - -namespace Content.Server.Nutrition.Components; - -/// -/// Lets a drink burst open when thrown while closed. -/// Requires and to work. -/// -[RegisterComponent, Access(typeof(DrinkSystem))] -public sealed partial class PressurizedDrinkComponent : Component -{ - /// - /// Chance for the drink to burst when thrown while closed. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float BurstChance = 0.25f; - - /// - /// Sound played when the drink bursts. - /// - [DataField] - public SoundSpecifier BurstSound = new SoundPathSpecifier("/Audio/Effects/flash_bang.ogg") - { - Params = AudioParams.Default.WithVolume(-4) - }; -} diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index 74637d4813..aa2ed71d8f 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -5,7 +5,6 @@ using Content.Server.Chemistry.ReagentEffects; using Content.Server.Fluids.EntitySystems; using Content.Server.Forensics; using Content.Server.Inventory; -using Content.Server.Nutrition.Components; using Content.Server.Popups; using Content.Shared.Administration.Logs; using Content.Shared.Body.Components; @@ -16,7 +15,6 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; using Content.Shared.DoAfter; -using Content.Shared.Examine; using Content.Shared.FixedPoint; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; @@ -25,24 +23,21 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; -using Content.Shared.Throwing; using Content.Shared.Verbs; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; -using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Nutrition.EntitySystems; -public sealed class DrinkSystem : EntitySystem +public sealed class DrinkSystem : SharedDrinkSystem { [Dependency] private readonly BodySystem _body = default!; [Dependency] private readonly FlavorProfileSystem _flavorProfile = default!; [Dependency] private readonly FoodSystem _food = default!; [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly OpenableSystem _openable = default!; @@ -66,33 +61,10 @@ public sealed class DrinkSystem : EntitySystem SubscribeLocalEvent(OnDrinkInit); // run before inventory so for bucket it always tries to drink before equipping (when empty) // run after openable so its always open -> drink - SubscribeLocalEvent(OnUse, before: new[] { typeof(ServerInventorySystem) }, after: new[] { typeof(OpenableSystem) }); + SubscribeLocalEvent(OnUse, before: [typeof(ServerInventorySystem)], after: [typeof(OpenableSystem)]); SubscribeLocalEvent(AfterInteract); SubscribeLocalEvent>(AddDrinkVerb); - // put drink amount after opened - SubscribeLocalEvent(OnExamined, after: new[] { typeof(OpenableSystem) }); SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnPressurizedDrinkLand); - } - - private FixedPoint2 DrinkVolume(EntityUid uid, DrinkComponent? component = null) - { - if (!Resolve(uid, ref component)) - return FixedPoint2.Zero; - - if (!_solutionContainer.TryGetSolution(uid, component.Solution, out _, out var sol)) - return FixedPoint2.Zero; - - return sol.Volume; - } - - public bool IsEmpty(EntityUid uid, DrinkComponent? component = null) - { - if (!Resolve(uid, ref component)) - return true; - - return DrinkVolume(uid, component) <= 0; } /// @@ -129,38 +101,6 @@ public sealed class DrinkSystem : EntitySystem return total; } - private void OnExamined(Entity entity, ref ExaminedEvent args) - { - TryComp(entity, out var openable); - if (_openable.IsClosed(entity.Owner, null, openable) || !args.IsInDetailsRange || !entity.Comp.Examinable) - return; - - var empty = IsEmpty(entity, entity.Comp); - if (empty) - { - args.PushMarkup(Loc.GetString("drink-component-on-examine-is-empty")); - return; - } - - if (HasComp(entity)) - { - //provide exact measurement for beakers - args.PushText(Loc.GetString("drink-component-on-examine-exact-volume", ("amount", DrinkVolume(entity, entity.Comp)))); - } - else - { - //general approximation - var remainingString = (int) _solutionContainer.PercentFull(entity) switch - { - 100 => "drink-component-on-examine-is-full", - > 66 => "drink-component-on-examine-is-mostly-full", - > 33 => HalfEmptyOrHalfFull(args), - _ => "drink-component-on-examine-is-mostly-empty", - }; - args.PushMarkup(Loc.GetString(remainingString)); - } - } - private void AfterInteract(Entity entity, ref AfterInteractEvent args) { if (args.Handled || args.Target == null || !args.CanReach) @@ -177,25 +117,6 @@ public sealed class DrinkSystem : EntitySystem args.Handled = TryDrink(args.User, args.User, entity.Comp, entity); } - private void OnPressurizedDrinkLand(Entity entity, ref LandEvent args) - { - if (!TryComp(entity, out var drink) || !TryComp(entity, out var openable)) - return; - - if (!openable.Opened && - _random.Prob(entity.Comp.BurstChance) && - _solutionContainer.TryGetSolution(entity.Owner, drink.Solution, out var soln, out var interactions)) - { - // using SetOpen instead of TryOpen to not play 2 sounds - _openable.SetOpen(entity, true, openable); - - var solution = _solutionContainer.SplitSolution(soln.Value, interactions.Volume); - _puddle.TrySpillAt(entity, solution, out _); - - _audio.PlayPvs(entity.Comp.BurstSound, entity); - } - } - private void OnDrinkInit(Entity entity, ref ComponentInit args) { if (TryComp(entity, out var existingDrainable)) @@ -433,16 +354,4 @@ public sealed class DrinkSystem : EntitySystem ev.Verbs.Add(verb); } - - // some see half empty, and others see half full - private string HalfEmptyOrHalfFull(ExaminedEvent args) - { - string remainingString = "drink-component-on-examine-is-half-full"; - - if (TryComp(args.Examiner, out var examiner) && examiner.EntityName.Length > 0 - && string.Compare(examiner.EntityName.Substring(0, 1), "m", StringComparison.InvariantCultureIgnoreCase) > 0) - remainingString = "drink-component-on-examine-is-half-empty"; - - return remainingString; - } } diff --git a/Content.Server/Pinpointer/NavMapSystem.cs b/Content.Server/Pinpointer/NavMapSystem.cs index 2a5639886e..34c76a1320 100644 --- a/Content.Server/Pinpointer/NavMapSystem.cs +++ b/Content.Server/Pinpointer/NavMapSystem.cs @@ -1,36 +1,33 @@ -using System.Diagnostics.CodeAnalysis; using Content.Server.Administration.Logs; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; using Content.Server.Station.Systems; using Content.Server.Warps; using Content.Shared.Database; using Content.Shared.Examine; using Content.Shared.Localizations; +using Content.Shared.Maps; using Content.Shared.Pinpointer; -using Content.Shared.Tag; using JetBrains.Annotations; -using Robust.Server.GameObjects; -using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; +using Robust.Shared.Timing; +using Robust.Shared.Utility; +using System.Diagnostics.CodeAnalysis; namespace Content.Server.Pinpointer; /// /// Handles data to be used for in-grid map displays. /// -public sealed class NavMapSystem : SharedNavMapSystem +public sealed partial class NavMapSystem : SharedNavMapSystem { [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly TagSystem _tags = default!; - [Dependency] private readonly MapSystem _map = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly TransformSystem _transform = default!; - - private EntityQuery _physicsQuery; - private EntityQuery _tagQuery; + [Dependency] private readonly IGameTiming _gameTiming = default!; public const float CloseDistance = 15f; public const float FarDistance = 30f; @@ -39,153 +36,34 @@ public sealed class NavMapSystem : SharedNavMapSystem { base.Initialize(); - _physicsQuery = GetEntityQuery(); - _tagQuery = GetEntityQuery(); - - SubscribeLocalEvent(OnAnchorChange); - SubscribeLocalEvent(OnReAnchor); + // Initialization events SubscribeLocalEvent(OnStationInit); - SubscribeLocalEvent(OnNavMapStartup); - SubscribeLocalEvent(OnGetState); + + // Grid change events SubscribeLocalEvent(OnNavMapSplit); + SubscribeLocalEvent(OnTileChanged); + // Airtight structure change event + SubscribeLocalEvent(OnAirtightChanged); + + // Beacon events SubscribeLocalEvent(OnNavMapBeaconMapInit); - SubscribeLocalEvent(OnNavMapBeaconStartup); SubscribeLocalEvent(OnNavMapBeaconAnchor); - - SubscribeLocalEvent(OnNavMapDoorStartup); - SubscribeLocalEvent(OnNavMapDoorAnchor); - SubscribeLocalEvent(OnConfigureMessage); SubscribeLocalEvent(OnConfigurableMapInit); SubscribeLocalEvent(OnConfigurableExamined); } + #region: Initialization event handling private void OnStationInit(StationGridAddedEvent ev) { var comp = EnsureComp(ev.GridId); RefreshGrid(ev.GridId, comp, Comp(ev.GridId)); } - private void OnNavMapBeaconMapInit(EntityUid uid, NavMapBeaconComponent component, MapInitEvent args) - { - if (component.DefaultText == null || component.Text != null) - return; + #endregion - component.Text = Loc.GetString(component.DefaultText); - Dirty(uid, component); - RefreshNavGrid(uid); - } - - private void OnNavMapBeaconStartup(EntityUid uid, NavMapBeaconComponent component, ComponentStartup args) - { - RefreshNavGrid(uid); - } - - private void OnNavMapBeaconAnchor(EntityUid uid, NavMapBeaconComponent component, ref AnchorStateChangedEvent args) - { - UpdateBeaconEnabledVisuals((uid, component)); - RefreshNavGrid(uid); - } - - private void OnNavMapDoorStartup(Entity ent, ref ComponentStartup args) - { - RefreshNavGrid(ent); - } - - private void OnNavMapDoorAnchor(Entity ent, ref AnchorStateChangedEvent args) - { - RefreshNavGrid(ent); - } - - private void OnConfigureMessage(Entity ent, ref NavMapBeaconConfigureBuiMessage args) - { - if (args.Session.AttachedEntity is not { } user) - return; - - if (!TryComp(ent, out var navMap)) - return; - - if (navMap.Text == args.Text && - navMap.Color == args.Color && - navMap.Enabled == args.Enabled) - return; - - _adminLog.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(user):player} configured NavMapBeacon \'{ToPrettyString(ent):entity}\' with text \'{args.Text}\', color {args.Color.ToHexNoAlpha()}, and {(args.Enabled ? "enabled" : "disabled")} it."); - - if (TryComp(ent, out var warpPoint)) - { - warpPoint.Location = args.Text; - } - - navMap.Text = args.Text; - navMap.Color = args.Color; - navMap.Enabled = args.Enabled; - UpdateBeaconEnabledVisuals((ent, navMap)); - Dirty(ent, navMap); - RefreshNavGrid(ent); - } - - private void OnConfigurableMapInit(Entity ent, ref MapInitEvent args) - { - if (!TryComp(ent, out var navMap)) - return; - - // We set this on mapinit just in case the text was edited via VV or something. - if (TryComp(ent, out var warpPoint)) - { - warpPoint.Location = navMap.Text; - } - - UpdateBeaconEnabledVisuals((ent, navMap)); - } - - private void OnConfigurableExamined(Entity ent, ref ExaminedEvent args) - { - if (!args.IsInDetailsRange || !TryComp(ent, out var navMap)) - return; - - args.PushMarkup(Loc.GetString("nav-beacon-examine-text", - ("enabled", navMap.Enabled), - ("color", navMap.Color.ToHexNoAlpha()), - ("label", navMap.Text ?? string.Empty))); - } - - private void UpdateBeaconEnabledVisuals(Entity ent) - { - _appearance.SetData(ent, NavMapBeaconVisuals.Enabled, ent.Comp.Enabled && Transform(ent).Anchored); - } - - /// - /// Refreshes the grid for the corresponding beacon. - /// - /// - private void RefreshNavGrid(EntityUid uid) - { - var xform = Transform(uid); - - if (!TryComp(xform.GridUid, out var navMap)) - return; - - Dirty(xform.GridUid.Value, navMap); - } - - private bool CanBeacon(EntityUid uid, TransformComponent? xform = null) - { - if (!Resolve(uid, ref xform)) - return false; - - return xform.GridUid != null && xform.Anchored; - } - - private void OnNavMapStartup(EntityUid uid, NavMapComponent component, ComponentStartup args) - { - if (!TryComp(uid, out var grid)) - return; - - RefreshGrid(uid, component, grid); - } + #region: Grid change event handling private void OnNavMapSplit(ref GridSplitEvent args) { @@ -203,180 +81,258 @@ public sealed class NavMapSystem : SharedNavMapSystem RefreshGrid(args.Grid, comp, gridQuery.GetComponent(args.Grid)); } - private void RefreshGrid(EntityUid uid, NavMapComponent component, MapGridComponent grid) + private void OnTileChanged(ref TileChangedEvent ev) { - component.Chunks.Clear(); - - var tiles = grid.GetAllTilesEnumerator(); - - while (tiles.MoveNext(out var tile)) - { - var chunkOrigin = SharedMapSystem.GetChunkIndices(tile.Value.GridIndices, ChunkSize); - - if (!component.Chunks.TryGetValue(chunkOrigin, out var chunk)) - { - chunk = new NavMapChunk(chunkOrigin); - component.Chunks[chunkOrigin] = chunk; - } - - RefreshTile(uid, grid, component, chunk, tile.Value.GridIndices); - } - } - - private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) - { - if (!TryComp(uid, out var mapGrid)) + if (!TryComp(ev.NewTile.GridUid, out var navMap)) return; - var data = new Dictionary(component.Chunks.Count); - foreach (var (index, chunk) in component.Chunks) - { - data.Add(index, chunk.TileData); - } - - var beaconQuery = AllEntityQuery(); - var beacons = new List(); - - while (beaconQuery.MoveNext(out var beaconUid, out var beacon, out var xform)) - { - if (!beacon.Enabled || xform.GridUid != uid || !CanBeacon(beaconUid, xform)) - continue; - - // TODO: Make warp points use metadata name instead. - string? name = beacon.Text; - - if (string.IsNullOrEmpty(name)) - { - if (TryComp(beaconUid, out var warpPoint) && warpPoint.Location != null) - { - name = warpPoint.Location; - } - else - { - name = MetaData(beaconUid).EntityName; - } - } - - beacons.Add(new NavMapBeacon(beacon.Color, name, xform.LocalPosition)); - } - - var airlockQuery = EntityQueryEnumerator(); - var airlocks = new List(); - while (airlockQuery.MoveNext(out _, out _, out var xform)) - { - if (xform.GridUid != uid || !xform.Anchored) - continue; - - var pos = _map.TileIndicesFor(uid, mapGrid, xform.Coordinates); - var enumerator = _map.GetAnchoredEntitiesEnumerator(uid, mapGrid, pos); - - var wallPresent = false; - while (enumerator.MoveNext(out var ent)) - { - if (!_physicsQuery.TryGetComponent(ent, out var body) || - !body.CanCollide || - !body.Hard || - body.BodyType != BodyType.Static || - !_tags.HasTag(ent.Value, "Wall", _tagQuery) && - !_tags.HasTag(ent.Value, "Window", _tagQuery)) - { - continue; - } - - wallPresent = true; - break; - } - - if (wallPresent) - continue; - - airlocks.Add(new NavMapAirlock(xform.LocalPosition)); - } - - // TODO: Diffs - args.State = new NavMapComponentState() - { - TileData = data, - Beacons = beacons, - Airlocks = airlocks - }; - } - - private void OnReAnchor(ref ReAnchorEvent ev) - { - if (TryComp(ev.OldGrid, out var oldGrid) && - TryComp(ev.OldGrid, out var navMap)) - { - var chunkOrigin = SharedMapSystem.GetChunkIndices(ev.TilePos, ChunkSize); - - if (navMap.Chunks.TryGetValue(chunkOrigin, out var chunk)) - { - RefreshTile(ev.OldGrid, oldGrid, navMap, chunk, ev.TilePos); - } - } - - HandleAnchor(ev.Xform); - } - - private void OnAnchorChange(ref AnchorStateChangedEvent ev) - { - HandleAnchor(ev.Transform); - } - - private void HandleAnchor(TransformComponent xform) - { - if (!TryComp(xform.GridUid, out var navMap) || - !TryComp(xform.GridUid, out var grid)) - return; - - var tile = grid.LocalToTile(xform.Coordinates); + var tile = ev.NewTile.GridIndices; var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); - if (!navMap.Chunks.TryGetValue(chunkOrigin, out var chunk)) - { - chunk = new NavMapChunk(chunkOrigin); - navMap.Chunks[chunkOrigin] = chunk; - } + if (!navMap.Chunks.TryGetValue((NavMapChunkType.Floor, chunkOrigin), out var chunk)) + chunk = new(chunkOrigin); - RefreshTile(xform.GridUid.Value, grid, navMap, chunk, tile); + // This could be easily replaced in the future to accommodate diagonal tiles + if (ev.NewTile.IsSpace()) + chunk = UnsetAllEdgesForChunkTile(chunk, tile); + + else + chunk = SetAllEdgesForChunkTile(chunk, tile); + + chunk.LastUpdate = _gameTiming.CurTick; + navMap.Chunks[(NavMapChunkType.Floor, chunkOrigin)] = chunk; + + Dirty(ev.NewTile.GridUid, navMap); } - private void RefreshTile(EntityUid uid, MapGridComponent grid, NavMapComponent component, NavMapChunk chunk, Vector2i tile) + private void OnAirtightChanged(ref AirtightChanged ev) + { + var gridUid = ev.Position.Grid; + + if (!TryComp(gridUid, out var navMap) || + !TryComp(gridUid, out var mapGrid)) + return; + + // Refresh the affected tile + var tile = ev.Position.Tile; + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); + + RefreshTileEntityContents(gridUid, navMap, mapGrid, chunkOrigin, tile); + + // Update potentially affected chunks + foreach (var category in EntityChunkTypes) + { + if (!navMap.Chunks.TryGetValue((category, chunkOrigin), out var chunk)) + continue; + + chunk.LastUpdate = _gameTiming.CurTick; + navMap.Chunks[(category, chunkOrigin)] = chunk; + } + + Dirty(gridUid, navMap); + } + + #endregion + + #region: Beacon event handling + + private void OnNavMapBeaconMapInit(EntityUid uid, NavMapBeaconComponent component, MapInitEvent args) + { + if (component.DefaultText == null || component.Text != null) + return; + + component.Text = Loc.GetString(component.DefaultText); + Dirty(uid, component); + + UpdateNavMapBeaconData(uid, component); + } + + private void OnNavMapBeaconAnchor(EntityUid uid, NavMapBeaconComponent component, ref AnchorStateChangedEvent args) + { + UpdateBeaconEnabledVisuals((uid, component)); + UpdateNavMapBeaconData(uid, component); + } + + private void OnConfigureMessage(Entity ent, ref NavMapBeaconConfigureBuiMessage args) + { + if (args.Session.AttachedEntity is not { } user) + return; + + if (!TryComp(ent, out var beacon)) + return; + + if (beacon.Text == args.Text && + beacon.Color == args.Color && + beacon.Enabled == args.Enabled) + return; + + _adminLog.Add(LogType.Action, LogImpact.Medium, + $"{ToPrettyString(user):player} configured NavMapBeacon \'{ToPrettyString(ent):entity}\' with text \'{args.Text}\', color {args.Color.ToHexNoAlpha()}, and {(args.Enabled ? "enabled" : "disabled")} it."); + + if (TryComp(ent, out var warpPoint)) + { + warpPoint.Location = args.Text; + } + + beacon.Text = args.Text; + beacon.Color = args.Color; + beacon.Enabled = args.Enabled; + + UpdateBeaconEnabledVisuals((ent, beacon)); + UpdateNavMapBeaconData(ent, beacon); + } + + private void OnConfigurableMapInit(Entity ent, ref MapInitEvent args) + { + if (!TryComp(ent, out var navMap)) + return; + + // We set this on mapinit just in case the text was edited via VV or something. + if (TryComp(ent, out var warpPoint)) + warpPoint.Location = navMap.Text; + + UpdateBeaconEnabledVisuals((ent, navMap)); + } + + private void OnConfigurableExamined(Entity ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange || !TryComp(ent, out var navMap)) + return; + + args.PushMarkup(Loc.GetString("nav-beacon-examine-text", + ("enabled", navMap.Enabled), + ("color", navMap.Color.ToHexNoAlpha()), + ("label", navMap.Text ?? string.Empty))); + } + + #endregion + + #region: Grid functions + + private void RefreshGrid(EntityUid uid, NavMapComponent component, MapGridComponent mapGrid) + { + // Clear stale data + component.Chunks.Clear(); + component.Beacons.Clear(); + + // Loop over all tiles + var tileRefs = _mapSystem.GetAllTiles(uid, mapGrid); + + foreach (var tileRef in tileRefs) + { + var tile = tileRef.GridIndices; + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); + + if (!component.Chunks.TryGetValue((NavMapChunkType.Floor, chunkOrigin), out var chunk)) + chunk = new(chunkOrigin); + + chunk.LastUpdate = _gameTiming.CurTick; + + // Refresh the floor tile + component.Chunks[(NavMapChunkType.Floor, chunkOrigin)] = SetAllEdgesForChunkTile(chunk, tile); + + // Refresh the contents of the tile + RefreshTileEntityContents(uid, component, mapGrid, chunkOrigin, tile); + } + + Dirty(uid, component); + } + + private void RefreshTileEntityContents(EntityUid uid, NavMapComponent component, MapGridComponent mapGrid, Vector2i chunkOrigin, Vector2i tile) { var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); - var existing = chunk.TileData; - var flag = GetFlag(relative); + var flag = (ushort) GetFlag(relative); + var invFlag = (ushort) ~flag; - chunk.TileData &= ~flag; + // Clear stale data from the tile across all entity associated chunks + foreach (var category in EntityChunkTypes) + { + if (!component.Chunks.TryGetValue((category, chunkOrigin), out var chunk)) + chunk = new(chunkOrigin); - var enumerator = grid.GetAnchoredEntitiesEnumerator(tile); - // TODO: Use something to get convex poly. + foreach (var (direction, _) in chunk.TileData) + chunk.TileData[direction] &= invFlag; + + chunk.LastUpdate = _gameTiming.CurTick; + component.Chunks[(category, chunkOrigin)] = chunk; + } + + // Update the tile data based on what entities are still anchored to the tile + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(uid, mapGrid, tile); while (enumerator.MoveNext(out var ent)) { - if (!_physicsQuery.TryGetComponent(ent, out var body) || - !body.CanCollide || - !body.Hard || - body.BodyType != BodyType.Static || - !_tags.HasTag(ent.Value, "Wall", _tagQuery) && - !_tags.HasTag(ent.Value, "Window", _tagQuery)) - { + if (!TryComp(ent, out var entAirtight)) continue; + + var category = GetAssociatedEntityChunkType(ent.Value); + + if (!component.Chunks.TryGetValue((category, chunkOrigin), out var chunk)) + continue; + + foreach (var (direction, _) in chunk.TileData) + { + if ((direction & entAirtight.AirBlockedDirection) > 0) + chunk.TileData[direction] |= flag; } - chunk.TileData |= flag; - break; + chunk.LastUpdate = _gameTiming.CurTick; + component.Chunks[(category, chunkOrigin)] = chunk; } - if (chunk.TileData == 0) + // Remove walls that intersect with doors (unless they can both physically fit on the same tile) + if (component.Chunks.TryGetValue((NavMapChunkType.Wall, chunkOrigin), out var wallChunk) && + component.Chunks.TryGetValue((NavMapChunkType.Airlock, chunkOrigin), out var airlockChunk)) { - component.Chunks.Remove(chunk.Origin); - } + foreach (var (direction, _) in wallChunk.TileData) + { + var airlockInvFlag = (ushort) ~airlockChunk.TileData[direction]; + wallChunk.TileData[direction] &= airlockInvFlag; + } - if (existing == chunk.TileData) + wallChunk.LastUpdate = _gameTiming.CurTick; + component.Chunks[(NavMapChunkType.Wall, chunkOrigin)] = wallChunk; + } + } + + #endregion + + #region: Beacon functions + + private void UpdateNavMapBeaconData(EntityUid uid, NavMapBeaconComponent component, TransformComponent? xform = null) + { + if (!Resolve(uid, ref xform)) return; - Dirty(uid, component); + if (xform.GridUid == null) + return; + + if (!TryComp(xform.GridUid, out var navMap)) + return; + + var netEnt = GetNetEntity(uid); + var oldBeacon = navMap.Beacons.FirstOrNull(x => x.NetEnt == netEnt); + var changed = false; + + if (oldBeacon != null) + { + navMap.Beacons.Remove(oldBeacon.Value); + changed = true; + } + + if (TryCreateNavMapBeaconData(uid, component, xform, out var beaconData)) + { + navMap.Beacons.Add(beaconData.Value); + changed = true; + } + + if (changed) + Dirty(xform.GridUid.Value, navMap); + } + + private void UpdateBeaconEnabledVisuals(Entity ent) + { + _appearance.SetData(ent, NavMapBeaconVisuals.Enabled, ent.Comp.Enabled && Transform(ent).Anchored); } /// @@ -389,9 +345,6 @@ public sealed class NavMapSystem : SharedNavMapSystem comp.Enabled = enabled; UpdateBeaconEnabledVisuals((uid, comp)); - Dirty(uid, comp); - - RefreshNavGrid(uid); } /// @@ -419,7 +372,7 @@ public sealed class NavMapSystem : SharedNavMapSystem if (!Resolve(ent, ref ent.Comp)) return false; - return TryGetNearestBeacon(_transform.GetMapCoordinates(ent, ent.Comp), out beacon, out beaconCoords); + return TryGetNearestBeacon(_transformSystem.GetMapCoordinates(ent, ent.Comp), out beacon, out beaconCoords); } /// @@ -446,7 +399,7 @@ public sealed class NavMapSystem : SharedNavMapSystem if (coordinates.MapId != xform.MapID) continue; - var coords = _transform.GetWorldPosition(xform); + var coords = _transformSystem.GetWorldPosition(xform); var distanceSquared = (coordinates.Position - coords).LengthSquared(); if (!float.IsInfinity(minDistance) && distanceSquared >= minDistance) continue; @@ -465,7 +418,7 @@ public sealed class NavMapSystem : SharedNavMapSystem if (!Resolve(ent, ref ent.Comp)) return Loc.GetString("nav-beacon-pos-no-beacons"); - return GetNearestBeaconString(_transform.GetMapCoordinates(ent, ent.Comp)); + return GetNearestBeaconString(_transformSystem.GetMapCoordinates(ent, ent.Comp)); } public string GetNearestBeaconString(MapCoordinates coordinates) @@ -494,11 +447,13 @@ public sealed class NavMapSystem : SharedNavMapSystem ? Loc.GetString("nav-beacon-pos-format-direction-mod-far") : string.Empty; - // we can null suppress the text being null because TRyGetNearestVisibleStationBeacon always gives us a beacon with not-null text. + // we can null suppress the text being null because TryGetNearestVisibleStationBeacon always gives us a beacon with not-null text. return Loc.GetString("nav-beacon-pos-format-direction", ("modifier", modifier), ("direction", ContentLocalizationManager.FormatDirection(adjustedDir).ToLowerInvariant()), ("color", beacon.Value.Comp.Color), ("marker", beacon.Value.Comp.Text!)); } + + #endregion } diff --git a/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs b/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs new file mode 100644 index 0000000000..1586973a21 --- /dev/null +++ b/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs @@ -0,0 +1,99 @@ +using Content.Server.Polymorph.Components; +using Content.Shared.Actions; +using Content.Shared.Construction.Components; +using Content.Shared.Hands; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Components; +using Content.Shared.Polymorph.Systems; +using Content.Shared.StatusIcon.Components; +using Robust.Shared.Physics.Components; + +namespace Content.Server.Polymorph.Systems; + +public sealed class ChameleonProjectorSystem : SharedChameleonProjectorSystem +{ + [Dependency] private readonly MetaDataSystem _meta = default!; + [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; + [Dependency] private readonly PolymorphSystem _polymorph = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedTransformSystem _xform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEquippedHand); + SubscribeLocalEvent(OnToggleNoRot); + SubscribeLocalEvent(OnToggleAnchored); + } + + private void OnEquippedHand(Entity ent, ref GotEquippedHandEvent args) + { + if (!TryComp(ent, out var poly)) + return; + + _polymorph.Revert((ent, poly)); + args.Handled = true; + } + + public override void Disguise(ChameleonProjectorComponent proj, EntityUid user, EntityUid entity) + { + if (_polymorph.PolymorphEntity(user, proj.Polymorph) is not {} disguise) + return; + + // make disguise look real (for simple things at least) + var meta = MetaData(entity); + _meta.SetEntityName(disguise, meta.EntityName); + _meta.SetEntityDescription(disguise, meta.EntityDescription); + + var comp = EnsureComp(disguise); + comp.SourceEntity = entity; + comp.SourceProto = Prototype(entity)?.ID; + Dirty(disguise, comp); + + // no sechud trolling + RemComp(disguise); + + _appearance.CopyData(entity, disguise); + + var mass = CompOrNull(entity)?.Mass ?? 0f; + + // let the disguise die when its taken enough damage, which then transfers to the player + // health is proportional to mass, and capped to not be insane + if (TryComp(disguise, out var thresholds)) + { + // if the player is of flesh and blood, cap max health to theirs + // so that when reverting damage scales 1:1 and not round removing + var playerMax = _mobThreshold.GetThresholdForState(user, MobState.Dead).Float(); + var max = playerMax == 0f ? proj.MaxHealth : Math.Max(proj.MaxHealth, playerMax); + + var health = Math.Clamp(mass, proj.MinHealth, proj.MaxHealth); + _mobThreshold.SetMobStateThreshold(disguise, health, MobState.Critical, thresholds); + _mobThreshold.SetMobStateThreshold(disguise, max, MobState.Dead, thresholds); + } + + // add actions for controlling transform aspects + _actions.AddAction(disguise, proj.NoRotAction); + _actions.AddAction(disguise, proj.AnchorAction); + } + + private void OnToggleNoRot(Entity ent, ref DisguiseToggleNoRotEvent args) + { + var xform = Transform(ent); + xform.NoLocalRotation = !xform.NoLocalRotation; + } + + private void OnToggleAnchored(Entity ent, ref DisguiseToggleAnchoredEvent args) + { + var uid = ent.Owner; + var xform = Transform(uid); + if (xform.Anchored) + _xform.Unanchor(uid, xform); + else + _xform.AnchorEntity((uid, xform)); + } +} diff --git a/Content.Server/Prayer/PrayerSystem.cs b/Content.Server/Prayer/PrayerSystem.cs index f5051741c0..c8ef368dad 100644 --- a/Content.Server/Prayer/PrayerSystem.cs +++ b/Content.Server/Prayer/PrayerSystem.cs @@ -39,7 +39,7 @@ public sealed class PrayerSystem : EntitySystem return; // this is to prevent ghosts from using it - if (!args.CanAccess) + if (!args.CanInteract) return; var prayerVerb = new ActivationVerb diff --git a/Content.Server/Repairable/RepairableComponent.cs b/Content.Server/Repairable/RepairableComponent.cs index c436386110..bab70f66b5 100644 --- a/Content.Server/Repairable/RepairableComponent.cs +++ b/Content.Server/Repairable/RepairableComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Damage; using Content.Shared.Tools; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Repairable @@ -14,28 +15,28 @@ namespace Content.Server.Repairable /// If this data-field is specified, it will change damage by this amount instead of setting all damage to 0. /// in order to heal/repair the damage values have to be negative. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("damage")] + [DataField] public DamageSpecifier? Damage; - [ViewVariables(VVAccess.ReadWrite)] [DataField("fuelCost")] + [DataField] public int FuelCost = 5; - [ViewVariables(VVAccess.ReadWrite)] [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string QualityNeeded = "Welding"; + [DataField] + public ProtoId QualityNeeded = "Welding"; - [ViewVariables(VVAccess.ReadWrite)] [DataField("doAfterDelay")] + [DataField] public int DoAfterDelay = 1; /// /// A multiplier that will be applied to the above if an entity is repairing themselves. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("selfRepairPenalty")] + [DataField] public float SelfRepairPenalty = 3f; /// /// Whether or not an entity is allowed to repair itself. /// - [DataField("allowSelfRepair")] + [DataField] public bool AllowSelfRepair = true; } } diff --git a/Content.Server/Repairable/RepairableSystem.cs b/Content.Server/Repairable/RepairableSystem.cs index 5bd580756d..ec24cd8197 100644 --- a/Content.Server/Repairable/RepairableSystem.cs +++ b/Content.Server/Repairable/RepairableSystem.cs @@ -4,7 +4,6 @@ using Content.Shared.Database; using Content.Shared.Interaction; using Content.Shared.Popups; using Content.Shared.Repairable; -using Content.Shared.Tools; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; namespace Content.Server.Repairable @@ -70,7 +69,7 @@ namespace Content.Server.Repairable } // Run the repairing doafter - args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, delay, component.QualityNeeded, new RepairFinishedEvent()); + args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, delay, component.QualityNeeded, new RepairFinishedEvent(), component.FuelCost); } } } diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 3a8331f3f7..42783f163b 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -145,11 +145,15 @@ namespace Content.Server.RoundEnd public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") { - if (_gameTicker.RunLevel != GameRunLevel.InRound) return; + if (_gameTicker.RunLevel != GameRunLevel.InRound) + return; - if (checkCooldown && _cooldownTokenSource != null) return; + if (checkCooldown && _cooldownTokenSource != null) + return; + + if (_countdownTokenSource != null) + return; - if (_countdownTokenSource != null) return; _countdownTokenSource = new(); if (requester != null) @@ -188,6 +192,8 @@ namespace Content.Server.RoundEnd LastCountdownStart = _gameTiming.CurTime; ExpectedCountdownEnd = _gameTiming.CurTime + countdownTime; + + // TODO full game saves Timer.Spawn(countdownTime, _shuttle.CallEmergencyShuttle, _countdownTokenSource.Token); ActivateCooldown(); @@ -333,6 +339,8 @@ namespace Content.Server.RoundEnd { _cooldownTokenSource?.Cancel(); _cooldownTokenSource = new(); + + // TODO full game saves Timer.Spawn(DefaultCooldownDuration, () => { _cooldownTokenSource.Cancel(); diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 839730ec87..4d5d569dab 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -164,6 +164,7 @@ public sealed partial class SalvageSystem _dungeon, _metaData, _transform, + _mapSystem, station, coordinatesDisk, missionParams, diff --git a/Content.Server/Salvage/SalvageSystem.cs b/Content.Server/Salvage/SalvageSystem.cs index 9af4736345..eb5719c892 100644 --- a/Content.Server/Salvage/SalvageSystem.cs +++ b/Content.Server/Salvage/SalvageSystem.cs @@ -40,7 +40,6 @@ namespace Content.Server.Salvage { [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; - [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; @@ -56,6 +55,7 @@ namespace Content.Server.Salvage [Dependency] private readonly RadioSystem _radioSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; [Dependency] private readonly ShuttleSystem _shuttle = default!; [Dependency] private readonly ShuttleConsoleSystem _shuttleConsoles = default!; [Dependency] private readonly StationSystem _station = default!; diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index 180c8d145c..47123e9784 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -50,6 +50,7 @@ public sealed class SpawnSalvageMissionJob : Job private readonly DungeonSystem _dungeon; private readonly MetaDataSystem _metaData; private readonly SharedTransformSystem _xforms; + private readonly SharedMapSystem _map; public readonly EntityUid Station; public readonly EntityUid? CoordinatesDisk; @@ -69,6 +70,7 @@ public sealed class SpawnSalvageMissionJob : Job DungeonSystem dungeon, MetaDataSystem metaData, SharedTransformSystem xform, + SharedMapSystem map, EntityUid station, EntityUid? coordinatesDisk, SalvageMissionParams missionParams, @@ -83,6 +85,7 @@ public sealed class SpawnSalvageMissionJob : Job _dungeon = dungeon; _metaData = metaData; _xforms = xform; + _map = map; Station = station; CoordinatesDisk = coordinatesDisk; _missionParams = missionParams; @@ -95,9 +98,7 @@ public sealed class SpawnSalvageMissionJob : Job protected override async Task Process() { _sawmill.Debug("salvage", $"Spawning salvage mission with seed {_missionParams.Seed}"); - var mapId = _mapManager.CreateMap(); - var mapUid = _mapManager.GetMapEntityId(mapId); - _mapManager.AddUninitializedMap(mapId); + var mapUid = _map.CreateMap(out var mapId, runMapInit: false); MetaDataComponent? metadata = null; var grid = _entManager.EnsureComponent(mapUid); var random = new Random(_missionParams.Seed); diff --git a/Content.Server/Shuttles/Components/FTLComponent.cs b/Content.Server/Shuttles/Components/FTLComponent.cs index a3da4855f7..edcf25981b 100644 --- a/Content.Server/Shuttles/Components/FTLComponent.cs +++ b/Content.Server/Shuttles/Components/FTLComponent.cs @@ -14,6 +14,8 @@ namespace Content.Server.Shuttles.Components; [RegisterComponent] public sealed partial class FTLComponent : Component { + // TODO Full game save / add datafields + [ViewVariables] public FTLState State = FTLState.Available; @@ -23,6 +25,7 @@ public sealed partial class FTLComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float StartupTime = 0f; + // Because of sphagetti, actual travel time is Math.Max(TravelTime, DefaultArrivalTime) [ViewVariables(VVAccess.ReadWrite)] public float TravelTime = 0f; diff --git a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs index bdfdcb273a..58d23ee432 100644 --- a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs @@ -13,7 +13,7 @@ public sealed partial class StationEmergencyShuttleComponent : Component /// /// The emergency shuttle assigned to this station. /// - [ViewVariables, Access(typeof(ShuttleSystem), typeof(EmergencyShuttleSystem), Friend = AccessPermissions.ReadWrite)] + [DataField, Access(typeof(ShuttleSystem), typeof(EmergencyShuttleSystem), Friend = AccessPermissions.ReadWrite)] public EntityUid? EmergencyShuttle; /// diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs index ae742cf1f9..12df965f45 100644 --- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs +++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs @@ -10,6 +10,7 @@ using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Spawners.Components; using Content.Server.Station.Components; +using Content.Server.Station.Events; using Content.Server.Station.Systems; using Content.Shared.Administration; using Content.Shared.CCVar; @@ -77,7 +78,7 @@ public sealed class ArrivalsSystem : EntitySystem { base.Initialize(); - SubscribeLocalEvent(OnArrivalsStartup); + SubscribeLocalEvent(OnStationPostInit); SubscribeLocalEvent(OnShuttleStartup); SubscribeLocalEvent(OnShuttleTag); @@ -530,7 +531,7 @@ public sealed class ArrivalsSystem : EntitySystem } } - private void OnArrivalsStartup(EntityUid uid, StationArrivalsComponent component, ComponentStartup args) + private void OnStationPostInit(EntityUid uid, StationArrivalsComponent component, ref StationPostInitEvent args) { if (!Enabled) return; diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs index aeb2ebdbba..803aa963f3 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs @@ -19,6 +19,8 @@ using Timer = Robust.Shared.Timing.Timer; namespace Content.Server.Shuttles.Systems; +// TODO full game saves +// Move state data into the emergency shuttle component public sealed partial class EmergencyShuttleSystem { /* @@ -55,7 +57,7 @@ public sealed partial class EmergencyShuttleSystem /// /// How long it will take for the emergency shuttle to arrive at CentComm. /// - public float TransitTime { get; private set; } + public float TransitTime; /// /// @@ -132,6 +134,14 @@ public sealed partial class EmergencyShuttleSystem var minTime = -(TransitTime - (ShuttleSystem.DefaultStartupTime + ShuttleSystem.DefaultTravelTime + 1f)); // TODO: I know this is shit but I already just cleaned up a billion things. + + // This is very cursed spaghetti code. I don't even know what the fuck this is doing or why it exists. + // But I think it needs to be less than or equal to zero or the shuttle might never leave??? + // TODO Shuttle AAAAAAAAAAAAAAAAAAAAAAAAA + // Clean this up, just have a single timer with some state system. + // I.e., dont infer state from the current interval that the accumulator is in??? + minTime = Math.Min(0, minTime); // ???? + if (_consoleAccumulator < minTime) { return; diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index c043861b37..f0256aa15b 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -15,6 +15,7 @@ using Content.Server.Screens.Components; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Station.Components; +using Content.Server.Station.Events; using Content.Server.Station.Systems; using Content.Shared.Access.Systems; using Content.Shared.CCVar; @@ -82,9 +83,9 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem SubscribeLocalEvent(OnRoundStart); SubscribeLocalEvent(OnRoundCleanup); - SubscribeLocalEvent(OnStationStartup); + SubscribeLocalEvent(OnStationStartup); SubscribeLocalEvent(OnCentcommShutdown); - SubscribeLocalEvent(OnCentcommInit); + SubscribeLocalEvent(OnStationInit); SubscribeLocalEvent(OnEmergencyFTL); SubscribeLocalEvent(OnEmergencyFTLComplete); @@ -258,10 +259,13 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem /// public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleComponent? stationShuttle = null) { - if (!Resolve(stationUid, ref stationShuttle) || - !TryComp(stationShuttle.EmergencyShuttle, out var xform) || + if (!Resolve(stationUid, ref stationShuttle)) + return; + + if (!TryComp(stationShuttle.EmergencyShuttle, out var xform) || !TryComp(stationShuttle.EmergencyShuttle, out var shuttle)) { + Log.Error($"Attempted to call an emergency shuttle for an uninitialized station? Station: {ToPrettyString(stationUid)}. Shuttle: {ToPrettyString(stationShuttle.EmergencyShuttle)}"); return; } @@ -319,8 +323,10 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem } } - private void OnCentcommInit(EntityUid uid, StationCentcommComponent component, ComponentInit args) + private void OnStationInit(EntityUid uid, StationCentcommComponent component, MapInitEvent args) { + // This is handled on map-init, so that centcomm has finished initializing by the time the StationPostInitEvent + // gets raised if (!_emergencyShuttleEnabled) return; @@ -331,12 +337,12 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem return; } - AddCentcomm(component); + AddCentcomm(uid, component); } - private void OnStationStartup(EntityUid uid, StationEmergencyShuttleComponent component, ComponentStartup args) + private void OnStationStartup(Entity ent, ref StationPostInitEvent args) { - AddEmergencyShuttle(uid, component); + AddEmergencyShuttle((ent, ent)); } /// @@ -373,19 +379,22 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem var centcommQuery = AllEntityQuery(); - while (centcommQuery.MoveNext(out var centcomm)) + while (centcommQuery.MoveNext(out var uid, out var centcomm)) { - AddCentcomm(centcomm); + AddCentcomm(uid, centcomm); } var query = AllEntityQuery(); while (query.MoveNext(out var uid, out var comp)) - AddEmergencyShuttle(uid, comp); + { + AddEmergencyShuttle((uid, comp)); + } } - private void AddCentcomm(StationCentcommComponent component) + private void AddCentcomm(EntityUid station, StationCentcommComponent component) { + DebugTools.Assert(LifeStage(station)>= EntityLifeStage.MapInitialized); if (component.MapEntity != null || component.Entity != null) { Log.Warning("Attempted to re-add an existing centcomm map."); @@ -401,12 +410,13 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem if (!Exists(otherComp.MapEntity) || !Exists(otherComp.Entity)) { - Log.Error($"Disconvered invalid centcomm component?"); + Log.Error($"Discovered invalid centcomm component?"); ClearCentcomm(otherComp); continue; } component.MapEntity = otherComp.MapEntity; + component.Entity = otherComp.Entity; component.ShuttleIndex = otherComp.ShuttleIndex; return; } @@ -450,6 +460,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem component.MapEntity = map; component.Entity = grid; _shuttle.TryAddFTLDestination(mapId, false, out _); + Log.Info($"Created centcomm grid {ToPrettyString(grid)} on map {ToPrettyString(map)} for station {ToPrettyString(station)}"); } public HashSet GetCentcommMaps() @@ -466,49 +477,67 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem return maps; } - private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent component) + private void AddEmergencyShuttle(Entity ent) { - if (!_emergencyShuttleEnabled - || component.EmergencyShuttle != null || - !TryComp(uid, out var centcomm) - || !TryComp(centcomm.MapEntity, out MapComponent? map)) + if (!Resolve(ent.Owner, ref ent.Comp1, ref ent.Comp2)) + return; + + if (!_emergencyShuttleEnabled) + return; + + if (ent.Comp1.EmergencyShuttle != null ) { + if (Exists(ent.Comp1.EmergencyShuttle)) + { + Log.Error($"Attempted to add an emergency shuttle to {ToPrettyString(ent)}, despite a shuttle already existing?"); + return; + } + + Log.Error($"Encountered deleted emergency shuttle during initialization of {ToPrettyString(ent)}"); + ent.Comp1.EmergencyShuttle = null; + } + + if (!TryComp(ent.Comp2.MapEntity, out MapComponent? map)) + { + Log.Error($"Failed to add emergency shuttle - centcomm has not been initialized? {ToPrettyString(ent)}"); return; } // Load escape shuttle - var shuttlePath = component.EmergencyShuttlePath; + var shuttlePath = ent.Comp1.EmergencyShuttlePath; var shuttle = _map.LoadGrid(map.MapId, shuttlePath.ToString(), new MapLoadOptions() { // Should be far enough... right? I'm too lazy to bounds check CentCom rn. - Offset = new Vector2(500f + centcomm.ShuttleIndex, 0f), + Offset = new Vector2(500f + ent.Comp2.ShuttleIndex, 0f), // fun fact: if you just fucking yeet centcomm into nullspace anytime you try to spawn the shuttle, then any distance is far enough. so lets not do that LoadMap = false, }); if (shuttle == null) { - Log.Error($"Unable to spawn emergency shuttle {shuttlePath} for {ToPrettyString(uid)}"); + Log.Error($"Unable to spawn emergency shuttle {shuttlePath} for {ToPrettyString(ent)}"); return; } - centcomm.ShuttleIndex += Comp(shuttle.Value).LocalAABB.Width + ShuttleSpawnBuffer; + ent.Comp2.ShuttleIndex += Comp(shuttle.Value).LocalAABB.Width + ShuttleSpawnBuffer; // Update indices for all centcomm comps pointing to same map var query = AllEntityQuery(); while (query.MoveNext(out var comp)) { - if (comp == centcomm || comp.MapEntity != centcomm.MapEntity) + if (comp == ent.Comp2 || comp.MapEntity != ent.Comp2.MapEntity) continue; - comp.ShuttleIndex = centcomm.ShuttleIndex; + comp.ShuttleIndex = ent.Comp2.ShuttleIndex; } - component.EmergencyShuttle = shuttle; + ent.Comp1.EmergencyShuttle = shuttle; EnsureComp(shuttle.Value); EnsureComp(shuttle.Value); EnsureComp(shuttle.Value); + + Log.Info($"Added emergency shuttle {ToPrettyString(shuttle)} for station {ToPrettyString(ent)} and centcomm {ToPrettyString(ent.Comp2.Entity)}"); } /// diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index 5128869103..a3cc2fde9b 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -6,6 +6,7 @@ using Content.Server.Shuttles.Events; using Content.Server.Station.Events; using Content.Shared.Body.Components; using Content.Shared.Buckle.Components; +using Content.Shared.Database; using Content.Shared.Ghost; using Content.Shared.Maps; using Content.Shared.Parallax; @@ -40,6 +41,10 @@ public sealed partial class ShuttleSystem public const float FTLMassLimit = 300f; // I'm too lazy to make CVars. + // >:( + // Confusingly, some of them already are cvars? + // I.e., shuttle transit time??? + // TODO Shuttle: fix spaghetti private readonly SoundSpecifier _startupSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_begin.ogg") { @@ -863,6 +868,8 @@ public sealed partial class ShuttleSystem if (_bodyQuery.TryGetComponent(ent, out var mob)) { + _logger.Add(LogType.Gib, LogImpact.Extreme, $"{ToPrettyString(ent):player} got gibbed by the shuttle" + + $" {ToPrettyString(uid)} arriving from FTL at {xform.Coordinates:coordinates}"); var gibs = _bobby.GibBody(ent, body: mob); _immuneEnts.UnionWith(gibs); continue; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 6dc25e8d76..6fe2324d51 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Administration.Logs; using Content.Server.Body.Systems; using Content.Server.Doors.Systems; using Content.Server.Parallax; @@ -48,6 +49,7 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly IAdminLogManager _logger = default!; public const float TileMassMultiplier = 0.5f; diff --git a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs index b26ab301c6..9107ff2e32 100644 --- a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs @@ -151,7 +151,8 @@ public sealed class RadiationCollectorSystem : EntitySystem if (!TryGetLoadedGasTank(uid, out var gasTankComponent)) return; - args.GasMixtures = new Dictionary { { Name(uid), gasTankComponent.Air } }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), gasTankComponent.Air)); } public void ToggleCollector(EntityUid uid, EntityUid? user = null, RadiationCollectorComponent? component = null) diff --git a/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs b/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs index 1f707c2249..897cd061f4 100644 --- a/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs +++ b/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Speech.Components; -using Content.Shared.Clothing.Components; -using Content.Shared.Inventory.Events; +using Content.Shared.Clothing; namespace Content.Server.Speech.EntitySystems; @@ -11,29 +10,20 @@ public sealed class AddAccentClothingSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } - private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, ref ClothingGotEquippedEvent args) { - if (!TryComp(uid, out ClothingComponent? clothing)) - return; - - // check if entity was actually used as clothing - // not just taken in pockets or something - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) - return; - // does the user already has this accent? var componentType = _componentFactory.GetRegistration(component.Accent).Type; - if (HasComp(args.Equipee, componentType)) + if (HasComp(args.Wearer, componentType)) return; // add accent to the user var accentComponent = (Component) _componentFactory.GetComponent(componentType); - AddComp(args.Equipee, accentComponent); + AddComp(args.Wearer, accentComponent); // snowflake case for replacement accent if (accentComponent is ReplacementAccentComponent rep) @@ -42,16 +32,16 @@ public sealed class AddAccentClothingSystem : EntitySystem component.IsActive = true; } - private void OnGotUnequipped(EntityUid uid, AddAccentClothingComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, AddAccentClothingComponent component, ref ClothingGotUnequippedEvent args) { if (!component.IsActive) return; // try to remove accent var componentType = _componentFactory.GetRegistration(component.Accent).Type; - if (EntityManager.HasComponent(args.Equipee, componentType)) + if (EntityManager.HasComponent(args.Wearer, componentType)) { - EntityManager.RemoveComponent(args.Equipee, componentType); + EntityManager.RemoveComponent(args.Wearer, componentType); } component.IsActive = false; diff --git a/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs b/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs index dfc3ab7e12..d1a6a049d5 100644 --- a/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs @@ -1,4 +1,5 @@ -using System.Globalization; +using System.Globalization; +using System.Linq; using System.Text.RegularExpressions; using Content.Server.Speech.Components; using Robust.Shared.Random; @@ -49,20 +50,30 @@ public sealed class MobsterAccentSystem : EntitySystem // thinking -> thinkin' // king -> king - msg = Regex.Replace(msg, @"(?<=\w\w)ing(?!\w)", "in'", RegexOptions.IgnoreCase); + //Uses captures groups to make sure the captialization of IN is kept + msg = Regex.Replace(msg, @"(?<=\w\w)(in)g(?!\w)", "$1'", RegexOptions.IgnoreCase); // or -> uh and ar -> ah in the middle of words (fuhget, tahget) - msg = Regex.Replace(msg, @"(?<=\w)or(?=\w)", "uh", RegexOptions.IgnoreCase); - msg = Regex.Replace(msg, @"(?<=\w)ar(?=\w)", "ah", RegexOptions.IgnoreCase); + msg = Regex.Replace(msg, @"(?<=\w)o[Rr](?=\w)", "uh"); + msg = Regex.Replace(msg, @"(?<=\w)O[Rr](?=\w)", "UH"); + msg = Regex.Replace(msg, @"(?<=\w)a[Rr](?=\w)", "ah"); + msg = Regex.Replace(msg, @"(?<=\w)A[Rr](?=\w)", "AH"); // Prefix if (_random.Prob(0.15f)) { + //Checks if the first word of the sentence is all caps + //So the prefix can be allcapped and to not resanitize the captial + var firstWordAllCaps = !Regex.Match(msg, @"^(\S+)").Value.Any(char.IsLower); var pick = _random.Next(1, 2); // Reverse sanitize capital - msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); - msg = Loc.GetString($"accent-mobster-prefix-{pick}") + " " + msg; + var prefix = Loc.GetString($"accent-mobster-prefix-{pick}"); + if (!firstWordAllCaps) + msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); + else + prefix = prefix.ToUpper(); + msg = prefix + " " + msg; } // Sanitize capital again, in case we substituted a word that should be capitalized @@ -71,16 +82,23 @@ public sealed class MobsterAccentSystem : EntitySystem // Suffixes if (_random.Prob(0.4f)) { + //Checks if the last word of the sentence is all caps + //So the suffix can be allcapped + var lastWordAllCaps = !Regex.Match(msg, @"(\S+)$").Value.Any(char.IsLower); + var suffix = ""; if (component.IsBoss) { var pick = _random.Next(1, 4); - msg += Loc.GetString($"accent-mobster-suffix-boss-{pick}"); + suffix = Loc.GetString($"accent-mobster-suffix-boss-{pick}"); } else { var pick = _random.Next(1, 3); - msg += Loc.GetString($"accent-mobster-suffix-minion-{pick}"); + suffix = Loc.GetString($"accent-mobster-suffix-minion-{pick}"); } + if (lastWordAllCaps) + suffix = suffix.ToUpper(); + msg += suffix; } return msg; diff --git a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs index f1d64ede10..9f5f8080b9 100644 --- a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Speech.Components; using Robust.Shared.Random; using System.Text.RegularExpressions; @@ -19,17 +20,22 @@ public sealed class PirateAccentSystem : EntitySystem // converts left word when typed into the right word. For example typing you becomes ye. public string Accentuate(string message, PirateAccentComponent component) { - var msg = message; - - msg = _replacement.ApplyReplacements(msg, "pirate"); + var msg = _replacement.ApplyReplacements(message, "pirate"); if (!_random.Prob(component.YarrChance)) return msg; + //Checks if the first word of the sentence is all caps + //So the prefix can be allcapped and to not resanitize the captial + var firstWordAllCaps = !Regex.Match(msg, @"^(\S+)").Value.Any(char.IsLower); var pick = _random.Pick(component.PirateWords); + var pirateWord = Loc.GetString(pick); // Reverse sanitize capital - msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); - msg = Loc.GetString(pick) + " " + msg; + if (!firstWordAllCaps) + msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); + else + pirateWord = pirateWord.ToUpper(); + msg = pirateWord + " " + msg; return msg; } diff --git a/Content.Server/Station/Components/StationBiomeComponent.cs b/Content.Server/Station/Components/StationBiomeComponent.cs new file mode 100644 index 0000000000..38800579a9 --- /dev/null +++ b/Content.Server/Station/Components/StationBiomeComponent.cs @@ -0,0 +1,19 @@ +using Content.Server.Station.Systems; +using Content.Shared.Parallax.Biomes; +using Robust.Shared.Prototypes; + +namespace Content.Server.Station.Components; + +/// +/// Runs EnsurePlanet against the largest grid on Mapinit. +/// +[RegisterComponent, Access(typeof(StationBiomeSystem))] +public sealed partial class StationBiomeComponent : Component +{ + [DataField(required: true)] + public ProtoId Biome = "Grasslands"; + + // If null, its random + [DataField] + public int? Seed = null; +} diff --git a/Content.Server/Station/Events/StationPostInitEvent.cs b/Content.Server/Station/Events/StationPostInitEvent.cs index 4f7927cee5..54b8eeeb31 100644 --- a/Content.Server/Station/Events/StationPostInitEvent.cs +++ b/Content.Server/Station/Events/StationPostInitEvent.cs @@ -4,6 +4,8 @@ namespace Content.Server.Station.Events; /// /// Raised directed on a station after it has been initialized, as well as broadcast. +/// This gets raised after the entity has been map-initialized, and the station's centcomm map/entity (if any) has been +/// set up. /// [ByRefEvent] public readonly record struct StationPostInitEvent(Entity Station); diff --git a/Content.Server/Station/Systems/StationBiomeSystem.cs b/Content.Server/Station/Systems/StationBiomeSystem.cs new file mode 100644 index 0000000000..821745fc4d --- /dev/null +++ b/Content.Server/Station/Systems/StationBiomeSystem.cs @@ -0,0 +1,35 @@ +using Content.Server.Parallax; +using Content.Server.Station.Components; +using Content.Server.Station.Events; +using Content.Server.Station.Systems; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.Server.Station.Systems; +public sealed partial class StationBiomeSystem : EntitySystem +{ + [Dependency] private readonly BiomeSystem _biome = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly StationSystem _station = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStationPostInit); + } + + private void OnStationPostInit(Entity map, ref StationPostInitEvent args) + { + if (!TryComp(map, out StationDataComponent? dataComp)) + return; + + var station = _station.GetLargestGrid(dataComp); + if (station == null) return; + + var mapId = Transform(station.Value).MapID; + var mapUid = _mapManager.GetMapEntityId(mapId); + + _biome.EnsurePlanet(mapUid, _proto.Index(map.Comp.Biome), map.Comp.Seed); + } +} diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index e0c98ee320..f8bd297905 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -182,8 +182,6 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem { var startingGear = _prototypeManager.Index(prototype.StartingGear); EquipStartingGear(entity.Value, startingGear); - if (profile != null) - EquipIdCard(entity.Value, profile.Name, prototype, station); } // Run loadouts after so stuff like storage loadouts can get @@ -226,6 +224,9 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem if (profile != null) { + if (prototype != null) + SetPdaAndIdCardData(entity.Value, profile.Name, prototype, station); + _humanoidSystem.LoadProfile(entity.Value, profile); _metaSystem.SetEntityName(entity.Value, profile.Name); if (profile.FlavorText != "" && _configurationManager.GetCVar(CCVars.FlavorText)) @@ -251,13 +252,13 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem } /// - /// Equips an ID card and PDA onto the given entity. + /// Sets the ID card and PDA name, job, and access data. /// /// Entity to load out. /// Character name to use for the ID. /// Job prototype to use for the PDA and ID. /// The station this player is being spawned on. - public void EquipIdCard(EntityUid entity, string characterName, JobPrototype jobPrototype, EntityUid? station) + public void SetPdaAndIdCardData(EntityUid entity, string characterName, JobPrototype jobPrototype, EntityUid? station) { if (!InventorySystem.TryGetSlotEntity(entity, "id", out var idUid)) return; diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 408b3ebc55..2fa2671b19 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -112,26 +112,12 @@ public sealed class StationSystem : EntitySystem { var dict = new Dictionary>(); - void AddGrid(string station, EntityUid grid) - { - if (dict.ContainsKey(station)) - { - dict[station].Add(grid); - } - else - { - dict[station] = new List {grid}; - } - } - // Iterate over all BecomesStation foreach (var grid in ev.Grids) { // We still setup the grid - if (!TryComp(grid, out var becomesStation)) - continue; - - AddGrid(becomesStation.Id, grid); + if (TryComp(grid, out var becomesStation)) + dict.GetOrNew(becomesStation.Id).Add(grid); } if (!dict.Any()) @@ -294,8 +280,6 @@ public sealed class StationSystem : EntitySystem // Use overrides for setup. var station = EntityManager.SpawnEntity(stationConfig.StationPrototype, MapCoordinates.Nullspace, stationConfig.StationComponentOverrides); - - if (name is not null) RenameStation(station, name, false); @@ -346,6 +330,9 @@ public sealed class StationSystem : EntitySystem } } + if (LifeStage(station) < EntityLifeStage.MapInitialized) + throw new Exception($"Station must be man-initialized"); + var ev = new StationPostInitEvent((station, data)); RaiseLocalEvent(station, ref ev, true); diff --git a/Content.Server/StationEvents/Events/CargoGiftsRule.cs b/Content.Server/StationEvents/Events/CargoGiftsRule.cs index c174cc48c0..194786fca7 100644 --- a/Content.Server/StationEvents/Events/CargoGiftsRule.cs +++ b/Content.Server/StationEvents/Events/CargoGiftsRule.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Server.Cargo.Components; using Content.Server.Cargo.Systems; using Content.Server.GameTicking; @@ -62,6 +62,7 @@ public sealed class CargoGiftsRule : StationEventSystem if (!_cargoSystem.AddAndApproveOrder( station!.Value, product.Product, + product.Name, product.Cost, qty, Loc.GetString(component.Sender), diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs b/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs index 10278cc805..768491f987 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs @@ -65,12 +65,23 @@ public sealed partial class StorageSystem var sortedItems = items .OrderByDescending(x => ItemSystem.GetItemShape(x.Comp).GetArea()); + ClearCantFillReasons(); foreach (var ent in sortedItems) { if (Insert(uid, ent, out _, out var reason, storageComp: storage, playSound: false)) continue; + if (CantFillReasons.Count > 0) + { + var reasons = string.Join(", ", CantFillReasons.Select(s => Loc.GetString(s))); + if (reason == null) + reason = reasons; + else + reason += $", {reasons}"; + } + Log.Error($"Tried to StorageFill {ToPrettyString(ent)} inside {ToPrettyString(uid)} but can't. reason: {reason}"); + ClearCantFillReasons(); Del(ent); } } diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.cs b/Content.Server/Storage/EntitySystems/StorageSystem.cs index 0f5efda74d..27694ee61c 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.cs @@ -3,8 +3,6 @@ using Content.Shared.Administration; using Content.Shared.Explosion; using Content.Shared.Ghost; using Content.Shared.Hands; -using Content.Shared.Input; -using Content.Shared.Inventory; using Content.Shared.Lock; using Content.Shared.Storage; using Content.Shared.Storage.Components; @@ -13,7 +11,6 @@ using Content.Shared.Timing; using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; -using Robust.Shared.Input.Binding; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -25,7 +22,6 @@ public sealed partial class StorageSystem : SharedStorageSystem { [Dependency] private readonly IAdminManager _admin = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; @@ -41,11 +37,6 @@ public sealed partial class StorageSystem : SharedStorageSystem SubscribeLocalEvent(OnExploded); SubscribeLocalEvent(OnStorageFillMapInit); - - CommandBinds.Builder - .Bind(ContentKeyFunctions.OpenBackpack, InputCmdHandler.FromDelegate(HandleOpenBackpack)) - .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt)) - .Register(); } private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent args) @@ -180,31 +171,4 @@ public sealed partial class StorageSystem : SharedStorageSystem } } } - - private void HandleOpenBackpack(ICommonSession? session) - { - HandleOpenSlotUI(session, "back"); - } - - private void HandleOpenBelt(ICommonSession? session) - { - HandleOpenSlotUI(session, "belt"); - } - - private void HandleOpenSlotUI(ICommonSession? session, string slot) - { - if (session is not { } playerSession) - return; - - if (playerSession.AttachedEntity is not {Valid: true} playerEnt || !Exists(playerEnt)) - return; - - if (!_inventory.TryGetSlotEntity(playerEnt, slot, out var storageEnt)) - return; - - if (!ActionBlocker.CanInteract(playerEnt, storageEnt)) - return; - - OpenStorageUI(storageEnt.Value, playerEnt); - } } diff --git a/Content.Server/Tools/Components/WelderComponent.cs b/Content.Server/Tools/Components/WelderComponent.cs deleted file mode 100644 index b0db2c58e8..0000000000 --- a/Content.Server/Tools/Components/WelderComponent.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.Reagent; -using Content.Shared.FixedPoint; -using Content.Shared.Tools.Components; -using Robust.Shared.Audio; -using Robust.Shared.Prototypes; - -namespace Content.Server.Tools.Components -{ - [RegisterComponent] - public sealed partial class WelderComponent : SharedWelderComponent - { - /// - /// Name of . - /// - [DataField("fuelSolution"), ViewVariables(VVAccess.ReadWrite)] - public string FuelSolutionName = "Welder"; - - /// - /// Solution on the entity that contains the fuel. - /// - [DataField("fuelSolutionRef")] - public Entity? FuelSolution = null; - - /// - /// Reagent that will be used as fuel for welding. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public ProtoId FuelReagent = "WeldingFuel"; - - /// - /// Fuel consumption per second while the welder is active. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 FuelConsumption = FixedPoint2.New(2.0f); - - /// - /// A fuel amount to be consumed when the welder goes from being unlit to being lit. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 FuelLitCost = FixedPoint2.New(0.5f); - - /// - /// Sound played when refilling the welder. - /// - [DataField] - public SoundSpecifier WelderRefill = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); - - /// - /// Whether the item is safe to refill while lit without exploding the tank. - /// - [DataField] - public bool TankSafe = false; //I have no idea what I'm doing - - } -} diff --git a/Content.Server/Tools/ToolSystem.Welder.cs b/Content.Server/Tools/ToolSystem.Welder.cs deleted file mode 100644 index 727526b398..0000000000 --- a/Content.Server/Tools/ToolSystem.Welder.cs +++ /dev/null @@ -1,211 +0,0 @@ -using Content.Server.Chemistry.Components; -using Content.Server.IgnitionSource; -using Content.Server.Tools.Components; -using Content.Shared.Chemistry.Components.SolutionManager; -using Content.Shared.Database; -using Content.Shared.DoAfter; -using Content.Shared.Examine; -using Content.Shared.FixedPoint; -using Content.Shared.Interaction; -using Content.Shared.Item.ItemToggle; -using Content.Shared.Tools.Components; -using Robust.Shared.GameStates; -using System.Linq; -using Content.Shared.Item.ItemToggle.Components; - -namespace Content.Server.Tools -{ - public sealed partial class ToolSystem - { - [Dependency] private readonly SharedItemToggleSystem _itemToggle = default!; - [Dependency] private readonly IgnitionSourceSystem _ignitionSource = default!; - private readonly HashSet _activeWelders = new(); - - private const float WelderUpdateTimer = 1f; - private float _welderTimer; - - public void InitializeWelders() - { - SubscribeLocalEvent(OnWelderExamine); - SubscribeLocalEvent(OnWelderAfterInteract); - SubscribeLocalEvent>(OnWelderToolUseAttempt); - SubscribeLocalEvent(OnWelderShutdown); - SubscribeLocalEvent(OnWelderGetState); - SubscribeLocalEvent(OnToggle); - SubscribeLocalEvent(OnActivateAttempt); - } - - public (FixedPoint2 fuel, FixedPoint2 capacity) GetWelderFuelAndCapacity(EntityUid uid, WelderComponent? welder = null, SolutionContainerManagerComponent? solutionContainer = null) - { - if (!Resolve(uid, ref welder, ref solutionContainer) - || !_solutionContainer.ResolveSolution((uid, solutionContainer), welder.FuelSolutionName, ref welder.FuelSolution, out var fuelSolution)) - return (FixedPoint2.Zero, FixedPoint2.Zero); - - return (fuelSolution.GetTotalPrototypeQuantity(welder.FuelReagent), fuelSolution.MaxVolume); - } - - private void OnToggle(Entity entity, ref ItemToggledEvent args) - { - if (args.Activated) - TurnOn(entity, args.User); - else - TurnOff(entity, args.User); - } - - private void OnActivateAttempt(Entity entity, ref ItemToggleActivateAttemptEvent args) - { - if (!_solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution, out var solution)) - { - args.Cancelled = true; - args.Popup = Loc.GetString("welder-component-no-fuel-message"); - return; - } - - var fuel = solution.GetTotalPrototypeQuantity(entity.Comp.FuelReagent); - if (fuel == FixedPoint2.Zero || fuel < entity.Comp.FuelLitCost) - { - args.Popup = Loc.GetString("welder-component-no-fuel-message"); - args.Cancelled = true; - } - } - - public void TurnOn(Entity entity, EntityUid? user) - { - if (!_solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution)) - return; - - _solutionContainer.RemoveReagent(entity.Comp.FuelSolution.Value, entity.Comp.FuelReagent, entity.Comp.FuelLitCost); - AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, - $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} on"); - - var xform = Transform(entity); - if (xform.GridUid is { } gridUid) - { - var position = _transformSystem.GetGridOrMapTilePosition(entity.Owner, xform); - _atmosphereSystem.HotspotExpose(gridUid, position, 700, 50, entity.Owner, true); - } - - _activeWelders.Add(entity); - } - - public void TurnOff(Entity entity, EntityUid? user) - { - AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, - $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} off"); - _activeWelders.Remove(entity); - } - - private void OnWelderExamine(Entity entity, ref ExaminedEvent args) - { - using (args.PushGroup(nameof(WelderComponent))) - { - if (_itemToggle.IsActivated(entity.Owner)) - { - args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-lit-message")); - } - else - { - args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-not-lit-message")); - } - - if (args.IsInDetailsRange) - { - var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); - - args.PushMarkup(Loc.GetString("welder-component-on-examine-detailed-message", - ("colorName", fuel < capacity / FixedPoint2.New(4f) ? "darkorange" : "orange"), - ("fuelLeft", fuel), - ("fuelCapacity", capacity), - ("status", string.Empty))); // Lit status is handled above - } - } - } - - private void OnWelderAfterInteract(Entity entity, ref AfterInteractEvent args) - { - if (args.Handled) - return; - - if (args.Target is not { Valid: true } target || !args.CanReach) - return; - - if (TryComp(target, out ReagentTankComponent? tank) - && tank.TankType == ReagentTankType.Fuel - && _solutionContainer.TryGetDrainableSolution(target, out var targetSoln, out var targetSolution) - && _solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution, out var welderSolution)) - { - var trans = FixedPoint2.Min(welderSolution.AvailableVolume, targetSolution.Volume); - if (trans > 0) - { - var drained = _solutionContainer.Drain(target, targetSoln.Value, trans); - _solutionContainer.TryAddSolution(entity.Comp.FuelSolution.Value, drained); - _audio.PlayPvs(entity.Comp.WelderRefill, entity); - _popup.PopupEntity(Loc.GetString("welder-component-after-interact-refueled-message"), entity, args.User); - } - else if (welderSolution.AvailableVolume <= 0) - { - _popup.PopupEntity(Loc.GetString("welder-component-already-full"), entity, args.User); - } - else - { - _popup.PopupEntity(Loc.GetString("welder-component-no-fuel-in-tank", ("owner", args.Target)), entity, args.User); - } - - args.Handled = true; - } - } - - private void OnWelderToolUseAttempt(Entity entity, ref DoAfterAttemptEvent args) - { - var user = args.DoAfter.Args.User; - - if (!_itemToggle.IsActivated(entity.Owner)) - { - _popup.PopupEntity(Loc.GetString("welder-component-welder-not-lit-message"), entity, user); - args.Cancel(); - } - } - - private void OnWelderShutdown(Entity entity, ref ComponentShutdown args) - { - _activeWelders.Remove(entity); - } - - private void OnWelderGetState(Entity entity, ref ComponentGetState args) - { - var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); - args.State = new WelderComponentState(capacity.Float(), fuel.Float()); - } - - private void UpdateWelders(float frameTime) - { - _welderTimer += frameTime; - - if (_welderTimer < WelderUpdateTimer) - return; - - // TODO Serialization. _activeWelders is not serialized. - // Need to use some "active" component, and EntityQuery over that. - // Probably best to generalize it to a "ToggleableFuelDrain" component. - foreach (var tool in _activeWelders.ToArray()) - { - if (!TryComp(tool, out WelderComponent? welder) - || !TryComp(tool, out SolutionContainerManagerComponent? solutionContainer)) - continue; - - if (!_solutionContainer.ResolveSolution((tool, solutionContainer), welder.FuelSolutionName, ref welder.FuelSolution, out var solution)) - continue; - - _solutionContainer.RemoveReagent(welder.FuelSolution.Value, welder.FuelReagent, welder.FuelConsumption * _welderTimer); - - if (solution.GetTotalPrototypeQuantity(welder.FuelReagent) <= FixedPoint2.Zero) - { - _itemToggle.Toggle(tool, predicted: false); - } - - Dirty(tool, welder); - } - _welderTimer -= WelderUpdateTimer; - } - } -} diff --git a/Content.Server/Tools/ToolSystem.cs b/Content.Server/Tools/ToolSystem.cs index 7bae177892..7738a6398f 100644 --- a/Content.Server/Tools/ToolSystem.cs +++ b/Content.Server/Tools/ToolSystem.cs @@ -1,40 +1,63 @@ using Content.Server.Atmos.EntitySystems; -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Popups; -using Content.Server.Tools.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.FixedPoint; +using Content.Shared.Tools.Components; using Robust.Server.GameObjects; -using Robust.Shared.Audio.Systems; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; -namespace Content.Server.Tools +namespace Content.Server.Tools; + +public sealed class ToolSystem : SharedToolSystem { - // TODO move tool system to shared, and make it a friend of Tool Component. - public sealed partial class ToolSystem : SharedToolSystem + [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; + + public override void TurnOn(Entity entity, EntityUid? user) { - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly TransformSystem _transformSystem = default!; - - public override void Initialize() + base.TurnOn(entity, user); + var xform = Transform(entity); + if (xform.GridUid is { } gridUid) { - base.Initialize(); - - InitializeWelders(); + var position = _transformSystem.GetGridOrMapTilePosition(entity.Owner, xform); + _atmosphereSystem.HotspotExpose(gridUid, position, 700, 50, entity.Owner, true); } + } - public override void Update(float frameTime) + public override void Update(float frameTime) + { + base.Update(frameTime); + + UpdateWelders(frameTime); + } + + //todo move to shared once you can remove reagents from shared without it freaking out. + private void UpdateWelders(float frameTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var welder, out var solutionContainer)) { - base.Update(frameTime); + if (!welder.Enabled) + continue; - UpdateWelders(frameTime); - } + welder.WelderTimer += frameTime; - protected override bool IsWelder(EntityUid uid) - { - return HasComp(uid); + if (welder.WelderTimer < welder.WelderUpdateTimer) + continue; + + if (!SolutionContainerSystem.TryGetSolution((uid, solutionContainer), welder.FuelSolutionName, out var solutionComp, out var solution)) + continue; + + SolutionContainerSystem.RemoveReagent(solutionComp.Value, welder.FuelReagent, welder.FuelConsumption * welder.WelderTimer); + + if (solution.GetTotalPrototypeQuantity(welder.FuelReagent) <= FixedPoint2.Zero) + { + ItemToggle.Toggle(uid, predicted: false); + } + + Dirty(uid, welder); + welder.WelderTimer -= welder.WelderUpdateTimer; } } } + diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs index bd0c40f26a..b97c47ceef 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs @@ -1,6 +1,6 @@ using Content.Server.Actions; +using Content.Shared.Clothing; using Content.Shared.Inventory; -using Content.Shared.Inventory.Events; namespace Content.Server.VoiceMask; @@ -12,13 +12,9 @@ public sealed partial class VoiceMaskSystem private const string MaskSlot = "mask"; - private void OnEquip(EntityUid uid, VoiceMaskerComponent component, GotEquippedEvent args) + private void OnEquip(EntityUid uid, VoiceMaskerComponent component, ClothingGotEquippedEvent args) { - var user = args.Equipee; - // have to be wearing the mask to use it, duh. - if (!_inventory.TryGetSlotEntity(user, MaskSlot, out var maskEntity) || maskEntity != uid) - return; - + var user = args.Wearer; var comp = EnsureComp(user); comp.VoiceName = component.LastSetName; comp.SpeechVerb = component.LastSpeechVerb; @@ -26,9 +22,9 @@ public sealed partial class VoiceMaskSystem _actions.AddAction(user, ref component.ActionEntity, component.Action, uid); } - private void OnUnequip(EntityUid uid, VoiceMaskerComponent compnent, GotUnequippedEvent args) + private void OnUnequip(EntityUid uid, VoiceMaskerComponent compnent, ClothingGotUnequippedEvent args) { - RemComp(args.Equipee); + RemComp(args.Wearer); } private VoiceMaskerComponent? TryGetMask(EntityUid user) diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index ac16e92259..ad9020d324 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -3,7 +3,6 @@ using Content.Server.Chat.Systems; using Content.Server.Popups; using Content.Shared.Clothing; using Content.Shared.Database; -using Content.Shared.Inventory.Events; using Content.Shared.Popups; using Content.Shared.Preferences; using Content.Shared.Speech; @@ -27,8 +26,8 @@ public sealed partial class VoiceMaskSystem : EntitySystem SubscribeLocalEvent(OnChangeName); SubscribeLocalEvent(OnChangeVerb); SubscribeLocalEvent(OnMaskToggled); - SubscribeLocalEvent(OnEquip); - SubscribeLocalEvent(OnUnequip); + SubscribeLocalEvent(OnEquip); + SubscribeLocalEvent(OnUnequip); SubscribeLocalEvent(OnSetName); // SubscribeLocalEvent>(GetVerbs); } diff --git a/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs b/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs index 67da4c4df1..02ca383d30 100644 --- a/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs +++ b/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs @@ -80,7 +80,7 @@ public class NoiseChannelConfig } [Prototype("noiseChannel")] -public sealed class NoiseChannelPrototype : NoiseChannelConfig, IPrototype, IInheritingPrototype +public sealed partial class NoiseChannelPrototype : NoiseChannelConfig, IPrototype, IInheritingPrototype { /// [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs index ec16083c53..fe95114f73 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs @@ -8,7 +8,7 @@ public sealed partial class TraversalDistorterComponent : Component { [ViewVariables(VVAccess.ReadWrite)] - public BiasDirection BiasDirection = BiasDirection.In; + public BiasDirection BiasDirection = BiasDirection.Up; public TimeSpan NextActivation = default!; public TimeSpan ActivationDelay = TimeSpan.FromSeconds(1); @@ -16,6 +16,6 @@ public sealed partial class TraversalDistorterComponent : Component public enum BiasDirection : byte { - In, //down the tree, towards depth 0 - Out //up the tree, away from depth 0 + Up, //Towards depth 0 + Down, //Away from depth 0 } diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index 51906313a3..2e546dd200 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -40,6 +40,7 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem [Dependency] private readonly PaperSystem _paper = default!; [Dependency] private readonly ResearchSystem _research = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; + [Dependency] private readonly TraversalDistorterSystem _traversalDistorter = default!; /// public override void Initialize() @@ -61,6 +62,7 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem SubscribeLocalEvent(OnScanButton); SubscribeLocalEvent(OnPrintButton); SubscribeLocalEvent(OnExtractButton); + SubscribeLocalEvent(OnBiasButton); SubscribeLocalEvent((e, c, _) => UpdateUserInterface(e, c), after: new[] { typeof(ResearchSystem) }); @@ -192,6 +194,7 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem var canScan = false; var canPrint = false; var points = 0; + if (TryComp(component.AnalyzerEntity, out var analyzer)) { artifact = analyzer.LastAnalyzedArtifact; @@ -205,15 +208,20 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem if (GetArtifactForAnalysis(component.AnalyzerEntity, placer) is { } current) points = _artifact.GetResearchPointValue(current); } + var analyzerConnected = component.AnalyzerEntity != null; var serverConnected = TryComp(uid, out var client) && client.ConnectedToServer; var scanning = TryComp(component.AnalyzerEntity, out var active); var paused = active != null ? active.AnalysisPaused : false; + var biasDirection = BiasDirection.Up; - var state = new AnalysisConsoleScanUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, - canScan, canPrint, msg, scanning, paused, active?.StartTime, active?.AccumulatedRunTime, totalTime, points); + if (TryComp(component.AnalyzerEntity, out var trav)) + biasDirection = trav.BiasDirection; + + var state = new AnalysisConsoleUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, + canScan, canPrint, msg, scanning, paused, active?.StartTime, active?.AccumulatedRunTime, totalTime, points, biasDirection == BiasDirection.Down); var bui = _ui.GetUi(uid, ArtifactAnalzyerUiKey.Key); _ui.SetUiState(bui, state); @@ -372,6 +380,20 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem UpdateUserInterface(uid, component); } + private void OnBiasButton(EntityUid uid, AnalysisConsoleComponent component, AnalysisConsoleBiasButtonPressedMessage args) + { + if (component.AnalyzerEntity == null) + return; + + if (!TryComp(component.AnalyzerEntity, out var trav)) + return; + + if (!_traversalDistorter.SetState(component.AnalyzerEntity.Value, trav, args.IsDown)) + return; + + UpdateUserInterface(uid, component); + } + /// /// Cancels scans if the artifact changes nodes (is activated) during the scan. /// diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs index 230e639af4..2092f79f05 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs @@ -17,8 +17,6 @@ public sealed class TraversalDistorterSystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(OnInit); - - SubscribeLocalEvent(OnInteract); SubscribeLocalEvent(OnExamine); SubscribeLocalEvent(OnItemPlaced); @@ -30,30 +28,25 @@ public sealed class TraversalDistorterSystem : EntitySystem component.NextActivation = _timing.CurTime; } - private void OnInteract(EntityUid uid, TraversalDistorterComponent component, ActivateInWorldEvent args) + /// + /// Switches the state of the traversal distorter between up and down. + /// + /// The distorter's entity + /// The component on the entity + /// If the distorter changed state + public bool SetState(EntityUid uid, TraversalDistorterComponent component, bool isDown) { - if (args.Handled || !this.IsPowered(uid, EntityManager)) - return; + if (!this.IsPowered(uid, EntityManager)) + return false; + if (_timing.CurTime < component.NextActivation) - return; - args.Handled = true; + return false; + component.NextActivation = _timing.CurTime + component.ActivationDelay; - component.BiasDirection = component.BiasDirection == BiasDirection.In - ? BiasDirection.Out - : BiasDirection.In; + component.BiasDirection = isDown ? BiasDirection.Down : BiasDirection.Up; - var toPopup = string.Empty; - switch (component.BiasDirection) - { - case BiasDirection.In: - toPopup = Loc.GetString("traversal-distorter-set-in"); - break; - case BiasDirection.Out: - toPopup = Loc.GetString("traversal-distorter-set-out"); - break; - } - _popup.PopupEntity(toPopup, uid); + return true; } private void OnExamine(EntityUid uid, TraversalDistorterComponent component, ExaminedEvent args) @@ -61,11 +54,11 @@ public sealed class TraversalDistorterSystem : EntitySystem string examine = string.Empty; switch (component.BiasDirection) { - case BiasDirection.In: - examine = Loc.GetString("traversal-distorter-desc-in"); + case BiasDirection.Up: + examine = Loc.GetString("traversal-distorter-desc-up"); break; - case BiasDirection.Out: - examine = Loc.GetString("traversal-distorter-desc-out"); + case BiasDirection.Down: + examine = Loc.GetString("traversal-distorter-desc-down"); break; } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs index 647f31a895..895bb0217b 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs @@ -19,26 +19,46 @@ public sealed partial class ArtifactSystem /// /// /// - /// The amount of nodes it has. - private void GenerateArtifactNodeTree(EntityUid artifact, ref List allNodes, int nodeAmount) + /// The amount of nodes it has. + private void GenerateArtifactNodeTree(EntityUid artifact, List allNodes, int nodesToCreate) { - if (nodeAmount < 1) + if (nodesToCreate < 1) { - Log.Error($"nodeAmount {nodeAmount} is less than 1. Aborting artifact tree generation."); + Log.Error($"nodesToCreate {nodesToCreate} is less than 1. Aborting artifact tree generation."); return; } _usedNodeIds.Clear(); + var uninitializedNodes = new List { new(){ Id = GetValidNodeId() } }; + var createdNodes = 1; - var rootNode = new ArtifactNode + while (uninitializedNodes.Count > 0) { - Id = GetValidNodeId() - }; - var uninitializedNodes = new List { rootNode }; - while (uninitializedNodes.Any()) - { - GenerateNode(artifact, ref uninitializedNodes, ref allNodes, nodeAmount); + var node = uninitializedNodes[0]; + uninitializedNodes.Remove(node); + + node.Trigger = GetRandomTrigger(artifact, ref node); + node.Effect = GetRandomEffect(artifact, ref node); + + var maxChildren = _random.Next(1, MaxEdgesPerNode - 1); + + for (var i = 0; i < maxChildren; i++) + { + if (nodesToCreate <= createdNodes) + { + break; + } + + var child = new ArtifactNode {Id = GetValidNodeId(), Depth = node.Depth + 1}; + node.Edges.Add(child.Id); + child.Edges.Add(node.Id); + + uninitializedNodes.Add(child); + createdNodes++; + } + + allNodes.Add(node); } } @@ -51,46 +71,10 @@ public sealed partial class ArtifactSystem } _usedNodeIds.Add(id); + return id; } - /// - /// Generate an individual node on the tree. - /// - private void GenerateNode(EntityUid artifact, ref List uninitializedNodes, ref List allNodes, int targetNodeAmount) - { - if (!uninitializedNodes.Any()) - return; - - var node = uninitializedNodes.First(); - uninitializedNodes.Remove(node); - - //Generate the connected nodes - var maxEdges = Math.Max(1, targetNodeAmount - allNodes.Count - uninitializedNodes.Count - 1); - maxEdges = Math.Min(maxEdges, MaxEdgesPerNode); - var minEdges = Math.Clamp(targetNodeAmount - allNodes.Count - uninitializedNodes.Count - 1, 0, 1); - - var edgeAmount = _random.Next(minEdges, maxEdges); - - for (var i = 0; i < edgeAmount; i++) - { - var neighbor = new ArtifactNode - { - Depth = node.Depth + 1, - Id = GetValidNodeId() - }; - node.Edges.Add(neighbor.Id); - neighbor.Edges.Add(node.Id); - - uninitializedNodes.Add(neighbor); - } - - node.Trigger = GetRandomTrigger(artifact, ref node); - node.Effect = GetRandomEffect(artifact, ref node); - - allNodes.Add(node); - } - //yeah these two functions are near duplicates but i don't //want to implement an interface or abstract parent @@ -159,6 +143,7 @@ public sealed partial class ArtifactSystem return key; } } + return _random.Pick(weights.Keys); //shouldn't happen } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 955fe827d7..a5469e93dc 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -129,7 +129,7 @@ public sealed partial class ArtifactSystem : EntitySystem { var nodeAmount = _random.Next(component.NodesMin, component.NodesMax); - GenerateArtifactNodeTree(uid, ref component.NodeTree, nodeAmount); + GenerateArtifactNodeTree(uid, component.NodeTree, nodeAmount); var firstNode = GetRootNode(component.NodeTree); EnterNode(uid, ref firstNode, component); } @@ -184,13 +184,14 @@ public sealed partial class ArtifactSystem : EntitySystem var currentNode = GetNodeFromId(component.CurrentNodeId.Value, component); currentNode.Triggered = true; - if (currentNode.Edges.Any()) - { - var newNode = GetNewNode(uid, component); - if (newNode == null) - return; - EnterNode(uid, ref newNode, component); - } + if (currentNode.Edges.Count == 0) + return; + + var newNode = GetNewNode(uid, component); + if (newNode == null) + return; + + EnterNode(uid, ref newNode, component); } private ArtifactNode? GetNewNode(EntityUid uid, ArtifactComponent component) @@ -210,15 +211,15 @@ public sealed partial class ArtifactSystem : EntitySystem { switch (trav.BiasDirection) { - case BiasDirection.In: - var foo = allNodes.Where(x => GetNodeFromId(x, component).Depth < currentNode.Depth).ToHashSet(); - if (foo.Any()) - allNodes = foo; + case BiasDirection.Up: + var upNodes = allNodes.Where(x => GetNodeFromId(x, component).Depth < currentNode.Depth).ToHashSet(); + if (upNodes.Count != 0) + allNodes = upNodes; break; - case BiasDirection.Out: - var bar = allNodes.Where(x => GetNodeFromId(x, component).Depth > currentNode.Depth).ToHashSet(); - if (bar.Any()) - allNodes = bar; + case BiasDirection.Down: + var downNodes = allNodes.Where(x => GetNodeFromId(x, component).Depth > currentNode.Depth).ToHashSet(); + if (downNodes.Count != 0) + allNodes = downNodes; break; } } @@ -226,12 +227,14 @@ public sealed partial class ArtifactSystem : EntitySystem var undiscoveredNodes = allNodes.Where(x => !GetNodeFromId(x, component).Discovered).ToList(); Log.Debug($"Undiscovered nodes: {string.Join(", ", undiscoveredNodes)}"); var newNode = _random.Pick(allNodes); - if (undiscoveredNodes.Any() && _random.Prob(0.75f)) + + if (undiscoveredNodes.Count != 0 && _random.Prob(0.75f)) { newNode = _random.Pick(undiscoveredNodes); } Log.Debug($"Going to node {newNode}"); + return GetNodeFromId(newNode, component); } diff --git a/Content.Server/Zombies/PendingZombieComponent.cs b/Content.Server/Zombies/PendingZombieComponent.cs index a49b424c53..10b62c05dc 100644 --- a/Content.Server/Zombies/PendingZombieComponent.cs +++ b/Content.Server/Zombies/PendingZombieComponent.cs @@ -16,7 +16,7 @@ public sealed partial class PendingZombieComponent : Component { DamageDict = new () { - { "Poison", 0.3 }, + { "Poison", 0.2 }, } }; diff --git a/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs b/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs index 51ae8cc740..dec9516c01 100644 --- a/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs +++ b/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs @@ -56,13 +56,15 @@ public sealed partial class GasAnalyzerComponent : Component /// Name of the tab in the UI /// public readonly string Name; + public readonly float Volume; public readonly float Pressure; public readonly float Temperature; public readonly GasEntry[]? Gases; - public GasMixEntry(string name, float pressure, float temperature, GasEntry[]? gases = null) + public GasMixEntry(string name, float volume, float pressure, float temperature, GasEntry[]? gases = null) { Name = name; + Volume = volume; Pressure = pressure; Temperature = temperature; Gases = gases; diff --git a/Content.Shared/Audio/Jukebox/JukeboxComponent.cs b/Content.Shared/Audio/Jukebox/JukeboxComponent.cs new file mode 100644 index 0000000000..f9bb385f52 --- /dev/null +++ b/Content.Shared/Audio/Jukebox/JukeboxComponent.cs @@ -0,0 +1,80 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Audio.Jukebox; + +[NetworkedComponent, RegisterComponent, AutoGenerateComponentState(true)] +[Access(typeof(SharedJukeboxSystem))] +public sealed partial class JukeboxComponent : Component +{ + [DataField, AutoNetworkedField] + public ProtoId? SelectedSongId; + + [DataField, AutoNetworkedField] + public EntityUid? AudioStream; + + /// + /// RSI state for the jukebox being on. + /// + [DataField] + public string? OnState; + + /// + /// RSI state for the jukebox being on. + /// + [DataField] + public string? OffState; + + /// + /// RSI state for the jukebox track being selected. + /// + [DataField] + public string? SelectState; + + [ViewVariables] + public bool Selecting; + + [ViewVariables] + public float SelectAccumulator; +} + +[Serializable, NetSerializable] +public sealed class JukeboxPlayingMessage : BoundUserInterfaceMessage; + +[Serializable, NetSerializable] +public sealed class JukeboxPauseMessage : BoundUserInterfaceMessage; + +[Serializable, NetSerializable] +public sealed class JukeboxStopMessage : BoundUserInterfaceMessage; + +[Serializable, NetSerializable] +public sealed class JukeboxSelectedMessage(ProtoId songId) : BoundUserInterfaceMessage +{ + public ProtoId SongId { get; } = songId; +} + +[Serializable, NetSerializable] +public sealed class JukeboxSetTimeMessage(float songTime) : BoundUserInterfaceMessage +{ + public float SongTime { get; } = songTime; +} + +[Serializable, NetSerializable] +public enum JukeboxVisuals : byte +{ + VisualState +} + +[Serializable, NetSerializable] +public enum JukeboxVisualState : byte +{ + On, + Off, + Select, +} + +public enum JukeboxVisualLayers : byte +{ + Base +} diff --git a/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs b/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs new file mode 100644 index 0000000000..ad690ef497 --- /dev/null +++ b/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs @@ -0,0 +1,23 @@ +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Audio.Jukebox; + +/// +/// Soundtrack that's visible on the jukebox list. +/// +[Prototype] +public sealed partial class JukeboxPrototype : IPrototype +{ + [IdDataField] + public string ID { get; } = string.Empty; + + /// + /// User friendly name to use in UI. + /// + [DataField(required: true)] + public string Name = string.Empty; + + [DataField(required: true)] + public SoundPathSpecifier Path = default!; +} diff --git a/Content.Shared/Audio/Jukebox/JukeboxUi.cs b/Content.Shared/Audio/Jukebox/JukeboxUi.cs new file mode 100644 index 0000000000..bf1fc3d5d2 --- /dev/null +++ b/Content.Shared/Audio/Jukebox/JukeboxUi.cs @@ -0,0 +1,11 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Audio.Jukebox; + + +[Serializable, NetSerializable] +public enum JukeboxUiKey : byte +{ + Key, +} diff --git a/Content.Shared/Audio/Jukebox/SharedJukeboxSystem.cs b/Content.Shared/Audio/Jukebox/SharedJukeboxSystem.cs new file mode 100644 index 0000000000..1a8f9cb3bb --- /dev/null +++ b/Content.Shared/Audio/Jukebox/SharedJukeboxSystem.cs @@ -0,0 +1,8 @@ +using Robust.Shared.Audio.Systems; + +namespace Content.Shared.Audio.Jukebox; + +public abstract class SharedJukeboxSystem : EntitySystem +{ + [Dependency] protected readonly SharedAudioSystem Audio = default!; +} diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index c787e01471..83f8ad3b9d 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -799,19 +799,43 @@ namespace Content.Shared.CCVar /// Default severity for role bans /// public static readonly CVarDef RoleBanDefaultSeverity = - CVarDef.Create("admin.role_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.role_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Default severity for department bans /// public static readonly CVarDef DepartmentBanDefaultSeverity = - CVarDef.Create("admin.department_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.department_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Default severity for server bans /// public static readonly CVarDef ServerBanDefaultSeverity = - CVarDef.Create("admin.server_ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.server_ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether a server ban will ban the player's ip by default. + /// + public static readonly CVarDef ServerBanIpBanDefault = + CVarDef.Create("admin.server_ban_ip_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether a server ban will ban the player's hardware id by default. + /// + public static readonly CVarDef ServerBanHwidBanDefault = + CVarDef.Create("admin.server_ban_hwid_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether to use details from last connection for ip/hwid in the BanPanel. + /// + public static readonly CVarDef ServerBanUseLastDetails = + CVarDef.Create("admin.server_ban_use_last_details", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether to erase a player's chat messages and their entity from the game when banned. + /// + public static readonly CVarDef ServerBanErasePlayer = + CVarDef.Create("admin.server_ban_erase_player", false, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Minimum explosion intensity to create an admin alert message. -1 to disable the alert. @@ -1449,6 +1473,7 @@ namespace Content.Shared.CCVar /// /// The minimum time for the emergency shuttle to arrive at centcomm. + /// Actual minimum travel time cannot be less than /// public static readonly CVarDef EmergencyShuttleMinTransitTime = CVarDef.Create("shuttle.emergency_transit_time_min", 60f, CVar.SERVERONLY); @@ -1557,6 +1582,9 @@ namespace Content.Shared.CCVar public static readonly CVarDef ViewportWidth = CVarDef.Create("viewport.width", 21, CVar.CLIENTONLY | CVar.ARCHIVE); + public static readonly CVarDef ViewportVerticalFit = + CVarDef.Create("viewport.vertical_fit", true, CVar.CLIENTONLY | CVar.ARCHIVE); + /* * UI */ diff --git a/Content.Shared/Cargo/CargoOrderData.cs b/Content.Shared/Cargo/CargoOrderData.cs index a6d5fb0a18..831010cedd 100644 --- a/Content.Shared/Cargo/CargoOrderData.cs +++ b/Content.Shared/Cargo/CargoOrderData.cs @@ -21,6 +21,11 @@ namespace Content.Shared.Cargo /// public readonly string ProductId; + /// + /// Prototype Name + /// + public readonly string ProductName; + /// /// The number of items in the order. Not readonly, as it might change /// due to caps on the amount of orders that can be placed. @@ -39,10 +44,11 @@ namespace Content.Shared.Cargo public bool Approved => Approver is not null; public string? Approver; - public CargoOrderData(int orderId, string productId, int price, int amount, string requester, string reason) + public CargoOrderData(int orderId, string productId, string productName, int price, int amount, string requester, string reason) { OrderId = orderId; ProductId = productId; + ProductName = productName; Price = price; OrderQuantity = amount; Requester = requester; diff --git a/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs index a7d1f53175..873e9bb7b9 100644 --- a/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs +++ b/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs @@ -1,6 +1,8 @@ using Content.Shared.Cargo.Prototypes; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Content.Shared.Radio; +using Robust.Shared.Prototypes; namespace Content.Shared.Cargo.Components; @@ -21,5 +23,11 @@ public sealed partial class CargoOrderConsoleComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public List AllowedGroups = new() { "market" }; + + /// + /// Radio channel on which order approval announcements are transmitted + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId AnnouncementChannel = "Supply"; } diff --git a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs index 1d0ca8abdb..af2f6613d6 100644 --- a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; using Robust.Shared.Utility; diff --git a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs index 41ed4b1b2b..81ebcfb108 100644 --- a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs +++ b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs @@ -1,5 +1,4 @@ -using Content.Shared.Clothing.Components; -using Content.Shared.Inventory.Events; +using Content.Shared.Clothing; namespace Content.Shared.Chat.TypingIndicator; @@ -17,25 +16,21 @@ public abstract class SharedTypingIndicatorSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } - private void OnGotEquipped(EntityUid uid, TypingIndicatorClothingComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, TypingIndicatorClothingComponent component, ClothingGotEquippedEvent args) { - if (!TryComp(uid, out var clothing) || - !TryComp(args.Equipee, out var indicator)) + if (!TryComp(args.Wearer, out var indicator)) return; - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) return; - indicator.Prototype = component.Prototype; } - private void OnGotUnequipped(EntityUid uid, TypingIndicatorClothingComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, TypingIndicatorClothingComponent component, ClothingGotUnequippedEvent args) { - if (!TryComp(args.Equipee, out var indicator)) + if (!TryComp(args.Wearer, out var indicator)) return; indicator.Prototype = SharedTypingIndicatorSystem.InitialIndicatorId; diff --git a/Content.Shared/Chat/V2/Repository/Types.cs b/Content.Shared/Chat/V2/Repository/Types.cs new file mode 100644 index 0000000000..59acb849d4 --- /dev/null +++ b/Content.Shared/Chat/V2/Repository/Types.cs @@ -0,0 +1,60 @@ +using System.Linq; +using System.Runtime.InteropServices; +using Robust.Shared.Network; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chat.V2.Repository; + +/// +/// The record associated with a specific chat event. +/// +public struct ChatRecord(string userName, NetUserId userId, IChatEvent storedEvent, string entityName) +{ + public string UserName = userName; + public NetUserId UserId = userId; + public string EntityName = entityName; + public IChatEvent StoredEvent = storedEvent; +} + +/// +/// Notifies that a chat message has been created. +/// +/// +[Serializable, NetSerializable] +public sealed class MessageCreatedEvent(IChatEvent ev) : EntityEventArgs +{ + public IChatEvent Event = ev; +} + +/// +/// Notifies that a chat message has been changed. +/// +/// +/// +[Serializable, NetSerializable] +public sealed class MessagePatchedEvent(uint id, string newMessage) : EntityEventArgs +{ + public uint MessageId = id; + public string NewMessage = newMessage; +} + +/// +/// Notifies that a chat message has been deleted. +/// +/// +[Serializable, NetSerializable] +public sealed class MessageDeletedEvent(uint id) : EntityEventArgs +{ + public uint MessageId = id; +} + +/// +/// Notifies that a player's messages have been nuked. +/// +/// +[Serializable, NetSerializable] +public sealed class MessagesNukedEvent(List set) : EntityEventArgs +{ + public uint[] MessageIds = CollectionsMarshal.AsSpan(set).ToArray(); +} + diff --git a/Content.Shared/Chat/V2/Types.cs b/Content.Shared/Chat/V2/Types.cs new file mode 100644 index 0000000000..50e5a53ab5 --- /dev/null +++ b/Content.Shared/Chat/V2/Types.cs @@ -0,0 +1,94 @@ +namespace Content.Shared.Chat.V2; + +/// +/// The types of messages that can be sent, validated and processed via user input that are covered by Chat V2. +/// +public enum MessageType : byte +{ + #region Player-sendable types + + /// + /// Chat for announcements like CentCom telling you to stop sending them memes. + /// + Announcement, + /// + /// Chat that ghosts use to complain about being gibbed. + /// + DeadChat, + /// + /// Chat that mimes use to evade their vow. + /// + Emote, + /// + /// Chat that players use to make lame jokes to people nearby. + /// + Local, + /// + /// Chat that players use to complain about shitsec/admins/antags/balance/etc. + /// + Looc, + /// + /// Chat that players use to say "HELP MAINT", or plead to call the shuttle because a beaker spilled. + /// + /// This does not tell you what radio channel has been chatted on! + Radio, + /// + /// Chat that is used exclusively by syndie tots to collaborate on whatever tots do. + /// + Whisper, + + #endregion + + #region Non-player-sendable types + + /// + /// Chat that is sent to exactly one player; almost exclusively used for admemes and prayer responses. + /// + Subtle, + /// + /// Chat that is sent by automata, like when a vending machine thanks you for your unwise purchases. + /// + Background, + + #endregion +} + +/// +/// Defines a chat event that can be stored in a chat repository. +/// +public interface IChatEvent +{ + /// + /// The sender of the chat message. + /// + public EntityUid Sender + { + get; + } + + /// + /// The ID of the message. This is overwritten when saved into a repository. + /// + public uint Id + { + get; + set; + } + + /// + /// The sent message. + /// + public string Message + { + get; + set; + } + + /// + /// The type of sent message. + /// + public MessageType Type + { + get; + } +} diff --git a/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs b/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs new file mode 100644 index 0000000000..2b1c140aa6 --- /dev/null +++ b/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Chemistry.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class MixableSolutionComponent : Component +{ + /// + /// Solution name which can be mixed with methods such as blessing + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string Solution = "default"; +} diff --git a/Content.Shared/Chemistry/Components/ReagentTankComponent.cs b/Content.Shared/Chemistry/Components/ReagentTankComponent.cs new file mode 100644 index 0000000000..3aa1756cf9 --- /dev/null +++ b/Content.Shared/Chemistry/Components/ReagentTankComponent.cs @@ -0,0 +1,22 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chemistry.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class ReagentTankComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 TransferAmount { get; set; } = FixedPoint2.New(10); + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ReagentTankType TankType { get; set; } = ReagentTankType.Unspecified; +} + +[Serializable, NetSerializable] +public enum ReagentTankType : byte +{ + Unspecified, + Fuel +} diff --git a/Content.Shared/Chemistry/Components/Solution.cs b/Content.Shared/Chemistry/Components/Solution.cs index 1c24c860dd..4de3c369f7 100644 --- a/Content.Shared/Chemistry/Components/Solution.cs +++ b/Content.Shared/Chemistry/Components/Solution.cs @@ -48,13 +48,6 @@ namespace Content.Shared.Chemistry.Components [DataField("canReact")] public bool CanReact { get; set; } = true; - /// - /// If reactions can occur via mixing. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("canMix")] - public bool CanMix { get; set; } = false; - /// /// Volume needed to fill this container. /// diff --git a/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs b/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs index e260280ae4..36ca791290 100644 --- a/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs @@ -1,12 +1,14 @@ using Content.Shared.Chemistry.Components; using Content.Shared.FixedPoint; using Content.Shared.Popups; +using Robust.Shared.Network; using Robust.Shared.Random; namespace Content.Shared.Chemistry.EntitySystems; public sealed class RehydratableSystem : EntitySystem { + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; @@ -31,6 +33,9 @@ public sealed class RehydratableSystem : EntitySystem // Try not to make this public if you can help it. private void Expand(Entity ent) { + if (_net.IsClient) + return; + var (uid, comp) = ent; var randomMob = _random.Pick(comp.PossibleSpawns); diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs index 0d4912a504..ce0cfab002 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs @@ -78,31 +78,15 @@ public abstract partial class SharedSolutionContainerSystem return TryGetSolution((entity.Owner, entity.Comp2), entity.Comp1.Solution, out soln, out solution); } - public bool TryGetMixableSolution(Entity container, [NotNullWhen(true)] out Entity? solution) + public bool TryGetMixableSolution(Entity entity, [NotNullWhen(true)] out Entity? soln, [NotNullWhen(true)] out Solution? solution) { - var getMixableSolutionAttempt = new GetMixableSolutionAttemptEvent(container); - RaiseLocalEvent(container, ref getMixableSolutionAttempt); - if (getMixableSolutionAttempt.MixedSolution != null) + if (!Resolve(entity, ref entity.Comp1, logMissing: false)) { - solution = getMixableSolutionAttempt.MixedSolution; - return true; - } - - if (!Resolve(container, ref container.Comp, false)) - { - solution = default!; + (soln, solution) = (default!, null); return false; } - var tryGetSolution = EnumerateSolutions(container).FirstOrNull(x => x.Solution.Comp.Solution.CanMix); - if (tryGetSolution.HasValue) - { - solution = tryGetSolution.Value.Solution; - return true; - } - - solution = default!; - return false; + return TryGetSolution((entity.Owner, entity.Comp2), entity.Comp1.Solution, out soln, out solution); } #endregion Solution Accessors diff --git a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs index ede73c4969..118f224061 100644 --- a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs +++ b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs @@ -25,6 +25,3 @@ public sealed partial class ReactionMixerComponent : Component public record struct MixingAttemptEvent(EntityUid Mixed, bool Cancelled = false); public readonly record struct AfterMixingEvent(EntityUid Mixed, EntityUid Mixer); - -[ByRefEvent] -public record struct GetMixableSolutionAttemptEvent(EntityUid Mixed, Entity? MixedSolution = null); diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 5d6d9d2120..df1b1aa20b 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -104,6 +104,13 @@ namespace Content.Shared.Chemistry.Reagent [DataField] public bool Slippery; + /// + /// How easily this reagent becomes fizzy when aggitated. + /// 0 - completely flat, 1 - fizzes up when nudged. + /// + [DataField] + public float Fizziness; + /// /// How much reagent slows entities down if it's part of a puddle. /// 0 - no slowdown; 1 - can't move. diff --git a/Content.Shared/Clothing/ClothingEvents.cs b/Content.Shared/Clothing/ClothingEvents.cs index 1dcce2402a..83afea4597 100644 --- a/Content.Shared/Clothing/ClothingEvents.cs +++ b/Content.Shared/Clothing/ClothingEvents.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; +using Content.Shared.Clothing.Components; namespace Content.Shared.Clothing; @@ -71,3 +72,31 @@ public readonly record struct ItemMaskToggledEvent(EntityUid Wearer, string? equ /// [ByRefEvent] public readonly record struct WearerMaskToggledEvent(bool IsToggled); + +/// +/// Raised on the clothing entity when it is equipped to a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingGotEquippedEvent(EntityUid Wearer, ClothingComponent Clothing); + +/// +/// Raised on the clothing entity when it is unequipped from a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingGotUnequippedEvent(EntityUid Wearer, ClothingComponent Clothing); + +/// +/// Raised on an entity when they equip a clothing item to a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingDidEquippedEvent(Entity Clothing); + +/// +/// Raised on an entity when they unequip a clothing item from a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingDidUnequippedEvent(Entity Clothing); diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index 0f4c7f68bf..6d7226e767 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -66,6 +66,9 @@ public sealed partial class ClothingComponent : Component [DataField("unisexMask")] public ClothingMask UnisexMask = ClothingMask.UniformFull; + /// + /// Name of the inventory slot the clothing is in. + /// public string? InSlot; [DataField, ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs new file mode 100644 index 0000000000..ac3d9b9789 --- /dev/null +++ b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs @@ -0,0 +1,24 @@ +using Content.Shared.Humanoid; +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing.Components; + +/// +/// This is used for a clothing item that hides an appearance layer. +/// The entity's HumanoidAppearance component must have the corresponding hideLayerOnEquip value. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class HideLayerClothingComponent : Component +{ + /// + /// The appearance layer to hide. + /// + [DataField] + public HashSet Slots = new(); + + /// + /// If true, the layer will only hide when the item is in a toggled state (e.g. masks) + /// + [DataField] + public bool HideOnToggle = false; +} diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index 85df04d20a..d85506df4b 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -6,26 +6,19 @@ using Content.Shared.Interaction.Events; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; -using Content.Shared.Tag; +using Robust.Shared.Containers; using Robust.Shared.GameStates; -using System.Linq; namespace Content.Shared.Clothing.EntitySystems; public abstract class ClothingSystem : EntitySystem { [Dependency] private readonly SharedItemSystem _itemSys = default!; + [Dependency] private readonly SharedContainerSystem _containerSys = default!; [Dependency] private readonly SharedHumanoidAppearanceSystem _humanoidSystem = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly InventorySystem _invSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [ValidatePrototypeId] - private const string HairTag = "HidesHair"; - - [ValidatePrototypeId] - private const string NoseTag = "HidesNose"; - public override void Initialize() { base.Initialize(); @@ -89,18 +82,22 @@ public abstract class ClothingSystem : EntitySystem } } - private void ToggleVisualLayer(EntityUid equipee, HumanoidVisualLayers layer, string tag) + private void ToggleVisualLayers(EntityUid equipee, HashSet layers, HashSet appearanceLayers) { - InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee, SlotFlags.HEAD ^ SlotFlags.MASK); - bool shouldLayerShow = true; - - while (enumerator.NextItem(out EntityUid item)) + foreach (HumanoidVisualLayers layer in layers) { - if (_tagSystem.HasTag(item, tag)) + if (!appearanceLayers.Contains(layer)) + break; + + InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee); + + bool shouldLayerShow = true; + while (enumerator.NextItem(out EntityUid item)) { - if (tag == NoseTag) //Special check needs to be made for NoseTag, due to masks being toggleable + if (TryComp(item, out HideLayerClothingComponent? comp)) { - if (TryComp(item, out MaskComponent? mask) && TryComp(item, out ClothingComponent? clothing)) + //Checks for mask toggling. TODO: Make a generic system for this + if (comp.HideOnToggle && TryComp(item, out MaskComponent? mask) && TryComp(item, out ClothingComponent? clothing)) { if (clothing.EquippedPrefix != mask.EquippedPrefix) { @@ -114,32 +111,39 @@ public abstract class ClothingSystem : EntitySystem break; } } - else - { - shouldLayerShow = false; - break; - } } + _humanoidSystem.SetLayerVisibility(equipee, layer, shouldLayerShow); } - _humanoidSystem.SetLayerVisibility(equipee, layer, shouldLayerShow); } protected virtual void OnGotEquipped(EntityUid uid, ClothingComponent component, GotEquippedEvent args) { component.InSlot = args.Slot; - if ((new string[] { "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, HairTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Hair, HairTag); - if ((new string[] { "mask", "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, NoseTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Snout, NoseTag); + CheckEquipmentForLayerHide(args.Equipment, args.Equipee); + + if ((component.Slots & args.SlotFlags) != SlotFlags.NONE) + { + var gotEquippedEvent = new ClothingGotEquippedEvent(args.Equipee, component); + RaiseLocalEvent(uid, ref gotEquippedEvent); + + var didEquippedEvent = new ClothingDidEquippedEvent((uid, component)); + RaiseLocalEvent(args.Equipee, ref didEquippedEvent); + } } protected virtual void OnGotUnequipped(EntityUid uid, ClothingComponent component, GotUnequippedEvent args) { + if ((component.Slots & args.SlotFlags) != SlotFlags.NONE) + { + var gotUnequippedEvent = new ClothingGotUnequippedEvent(args.Equipee, component); + RaiseLocalEvent(uid, ref gotUnequippedEvent); + + var didUnequippedEvent = new ClothingDidUnequippedEvent((uid, component)); + RaiseLocalEvent(args.Equipee, ref didUnequippedEvent); + } + component.InSlot = null; - if ((new string[] { "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, HairTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Hair, HairTag); - if ((new string[] { "mask", "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, NoseTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Snout, NoseTag); + CheckEquipmentForLayerHide(args.Equipment, args.Equipee); } private void OnGetState(EntityUid uid, ClothingComponent component, ref ComponentGetState args) @@ -150,14 +154,20 @@ public abstract class ClothingSystem : EntitySystem private void OnHandleState(EntityUid uid, ClothingComponent component, ref ComponentHandleState args) { if (args.Current is ClothingComponentState state) + { SetEquippedPrefix(uid, state.EquippedPrefix, component); + if (component.InSlot != null && _containerSys.TryGetContainingContainer(uid, out var container)) + { + CheckEquipmentForLayerHide(uid, container.Owner); + } + } } private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) { //TODO: sprites for 'pulled down' state. defaults to invisible due to no sprite with this prefix SetEquippedPrefix(ent, args.IsToggled ? args.equippedPrefix : null, ent); - ToggleVisualLayer(args.Wearer, HumanoidVisualLayers.Snout, NoseTag); + CheckEquipmentForLayerHide(ent.Owner, args.Wearer); } private void OnEquipDoAfter(Entity ent, ref ClothingEquipDoAfterEvent args) @@ -176,6 +186,12 @@ public abstract class ClothingSystem : EntitySystem _handsSystem.TryPickup(args.User, ent); } + private void CheckEquipmentForLayerHide(EntityUid equipment, EntityUid equipee) + { + if (TryComp(equipment, out HideLayerClothingComponent? clothesComp) && TryComp(equipee, out HumanoidAppearanceComponent? appearanceComp)) + ToggleVisualLayers(equipee, clothesComp.Slots, appearanceComp.HideLayersOnEquip); + } + #region Public API public void SetEquippedPrefix(EntityUid uid, string? prefix, ClothingComponent? clothing = null) diff --git a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs index aab2a172dc..d99777929f 100644 --- a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs @@ -42,12 +42,10 @@ public sealed class MaskSystem : EntitySystem return; mask.IsToggled ^= true; - _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); - if (mask.IsToggled) - _popupSystem.PopupEntity(Loc.GetString("action-mask-pull-down-popup-message", ("mask", uid)), args.Performer, args.Performer); - else - _popupSystem.PopupEntity(Loc.GetString("action-mask-pull-up-popup-message", ("mask", uid)), args.Performer, args.Performer); + var dir = mask.IsToggled ? "down" : "up"; + var msg = $"action-mask-pull-{dir}-popup-message"; + _popupSystem.PopupEntity(Loc.GetString(msg, ("mask", uid)), args.Performer, args.Performer); ToggleMaskComponents(uid, mask, args.Performer, mask.EquippedPrefix); } @@ -55,18 +53,22 @@ public sealed class MaskSystem : EntitySystem // set to untoggled when unequipped, so it isn't left in a 'pulled down' state private void OnGotUnequipped(EntityUid uid, MaskComponent mask, GotUnequippedEvent args) { - if (mask.ToggleActionEntity == null) + if (!mask.IsToggled) return; mask.IsToggled = false; - Dirty(uid, mask); - _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); - ToggleMaskComponents(uid, mask, args.Equipee, mask.EquippedPrefix, true); } + /// + /// Called after setting IsToggled, raises events and dirties. + /// private void ToggleMaskComponents(EntityUid uid, MaskComponent mask, EntityUid wearer, string? equippedPrefix = null, bool isEquip = false) { + Dirty(uid, mask); + if (mask.ToggleActionEntity is {} action) + _actionSystem.SetToggled(action, mask.IsToggled); + var maskEv = new ItemMaskToggledEvent(wearer, equippedPrefix, mask.IsToggled, isEquip); RaiseLocalEvent(uid, ref maskEv); diff --git a/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs b/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs index 7d748a67a4..bbb640bd98 100644 --- a/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs @@ -17,34 +17,28 @@ public sealed class SkatesSystem : EntitySystem { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } /// /// When item is unequipped from the shoe slot, friction, aceleration and collide on impact return to default settings. /// - public void OnGotUnequipped(EntityUid uid, SkatesComponent component, GotUnequippedEvent args) + public void OnGotUnequipped(EntityUid uid, SkatesComponent component, ClothingGotUnequippedEvent args) { - if (!TryComp(args.Equipee, out MovementSpeedModifierComponent? speedModifier)) + if (!TryComp(args.Wearer, out MovementSpeedModifierComponent? speedModifier)) return; - if (args.Slot == "shoes") - { - _move.ChangeFriction(args.Equipee, MovementSpeedModifierComponent.DefaultFriction, MovementSpeedModifierComponent.DefaultFrictionNoInput, MovementSpeedModifierComponent.DefaultAcceleration, speedModifier); - _impact.ChangeCollide(args.Equipee, component.DefaultMinimumSpeed, component.DefaultStunSeconds, component.DefaultDamageCooldown, component.DefaultSpeedDamage); - } + _move.ChangeFriction(args.Wearer, MovementSpeedModifierComponent.DefaultFriction, MovementSpeedModifierComponent.DefaultFrictionNoInput, MovementSpeedModifierComponent.DefaultAcceleration, speedModifier); + _impact.ChangeCollide(args.Wearer, component.DefaultMinimumSpeed, component.DefaultStunSeconds, component.DefaultDamageCooldown, component.DefaultSpeedDamage); } /// /// When item is equipped into the shoe slot, friction, acceleration and collide on impact are adjusted. /// - private void OnGotEquipped(EntityUid uid, SkatesComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, SkatesComponent component, ClothingGotEquippedEvent args) { - if (args.Slot == "shoes") - { - _move.ChangeFriction(args.Equipee, component.Friction, component.FrictionNoInput, component.Acceleration); - _impact.ChangeCollide(args.Equipee, component.MinimumSpeed, component.StunSeconds, component.DamageCooldown, component.SpeedDamage); - } + _move.ChangeFriction(args.Wearer, component.Friction, component.FrictionNoInput, component.Acceleration); + _impact.ChangeCollide(args.Wearer, component.MinimumSpeed, component.StunSeconds, component.DamageCooldown, component.SpeedDamage); } } diff --git a/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs b/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs index 99e13ee284..a50856b044 100644 --- a/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Damage.Prototypes /// just want normal data to be deserialized. /// [Prototype("damageModifierSet")] - public sealed class DamageModifierSetPrototype : DamageModifierSet, IPrototype + public sealed partial class DamageModifierSetPrototype : DamageModifierSet, IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/DeviceLinking/DevicePortPrototype.cs b/Content.Shared/DeviceLinking/DevicePortPrototype.cs index c0a419ee65..e3421dda9d 100644 --- a/Content.Shared/DeviceLinking/DevicePortPrototype.cs +++ b/Content.Shared/DeviceLinking/DevicePortPrototype.cs @@ -29,13 +29,13 @@ public abstract class DevicePortPrototype [Prototype("sinkPort")] [Serializable, NetSerializable] -public sealed class SinkPortPrototype : DevicePortPrototype, IPrototype +public sealed partial class SinkPortPrototype : DevicePortPrototype, IPrototype { } [Prototype("sourcePort")] [Serializable, NetSerializable] -public sealed class SourcePortPrototype : DevicePortPrototype, IPrototype +public sealed partial class SourcePortPrototype : DevicePortPrototype, IPrototype { /// /// This is a set of sink ports that this source port will attempt to link to when using the diff --git a/Content.Shared/Flash/Components/FlashComponent.cs b/Content.Shared/Flash/Components/FlashComponent.cs index a26e32cb70..a9098bc85a 100644 --- a/Content.Shared/Flash/Components/FlashComponent.cs +++ b/Content.Shared/Flash/Components/FlashComponent.cs @@ -12,6 +12,13 @@ namespace Content.Shared.Flash.Components [ViewVariables(VVAccess.ReadWrite)] public int FlashDuration { get; set; } = 5000; + /// + /// How long a target is stunned when a melee flash is used. + /// If null, melee flashes will not stun at all + /// + [DataField] + public TimeSpan? MeleeStunDuration = TimeSpan.FromSeconds(1.5); + [DataField("range")] [ViewVariables(VVAccess.ReadWrite)] public float Range { get; set; } = 7f; @@ -32,5 +39,8 @@ namespace Content.Shared.Flash.Components }; public bool Flashing; + + [DataField] + public float Probability = 1f; } } diff --git a/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs b/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs index d1270e9db7..7658ca0ae5 100644 --- a/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs +++ b/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs @@ -9,4 +9,5 @@ public sealed partial class FlashOnTriggerComponent : Component { [DataField] public float Range = 1.0f; [DataField] public float Duration = 8.0f; + [DataField] public float Probability = 1.0f; } diff --git a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs index 82d6964522..016ab64f1a 100644 --- a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs +++ b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs @@ -82,6 +82,12 @@ public sealed partial class HumanoidAppearanceComponent : Component /// [ViewVariables(VVAccess.ReadOnly)] public Color? CachedFacialHairColor; + + /// + /// Which layers of this humanoid that should be hidden on equipping a corresponding item.. + /// + [DataField] + public HashSet HideLayersOnEquip = [HumanoidVisualLayers.Hair]; } [DataDefinition] diff --git a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs index 1ffcd1870b..44fcef9c4f 100644 --- a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs +++ b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs @@ -5,248 +5,240 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization; -namespace Content.Shared.Humanoid +namespace Content.Shared.Humanoid; + +[DataDefinition] +[Serializable, NetSerializable] +public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance { - [DataDefinition] - [Serializable, NetSerializable] - public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance + public HumanoidCharacterAppearance(string hairStyleId, + Color hairColor, + string facialHairStyleId, + Color facialHairColor, + Color eyeColor, + Color skinColor, + List markings) { - public HumanoidCharacterAppearance(string hairStyleId, - Color hairColor, - string facialHairStyleId, - Color facialHairColor, - Color eyeColor, - Color skinColor, - List markings) + HairStyleId = hairStyleId; + HairColor = ClampColor(hairColor); + FacialHairStyleId = facialHairStyleId; + FacialHairColor = ClampColor(facialHairColor); + EyeColor = ClampColor(eyeColor); + SkinColor = ClampColor(skinColor); + Markings = markings; + } + + [DataField("hair")] + public string HairStyleId { get; private set; } + + [DataField("hairColor")] + public Color HairColor { get; private set; } + + [DataField("facialHair")] + public string FacialHairStyleId { get; private set; } + + [DataField("facialHairColor")] + public Color FacialHairColor { get; private set; } + + [DataField("eyeColor")] + public Color EyeColor { get; private set; } + + [DataField("skinColor")] + public Color SkinColor { get; private set; } + + [DataField("markings")] + public List Markings { get; private set; } + + public HumanoidCharacterAppearance WithHairStyleName(string newName) + { + return new(newName, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); + } + + public HumanoidCharacterAppearance WithHairColor(Color newColor) + { + return new(HairStyleId, newColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); + } + + public HumanoidCharacterAppearance WithFacialHairStyleName(string newName) + { + return new(HairStyleId, HairColor, newName, FacialHairColor, EyeColor, SkinColor, Markings); + } + + public HumanoidCharacterAppearance WithFacialHairColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, newColor, EyeColor, SkinColor, Markings); + } + + public HumanoidCharacterAppearance WithEyeColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, newColor, SkinColor, Markings); + } + + public HumanoidCharacterAppearance WithSkinColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, newColor, Markings); + } + + public HumanoidCharacterAppearance WithMarkings(List newMarkings) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, newMarkings); + } + + public HumanoidCharacterAppearance() : this( + HairStyles.DefaultHairStyle, + Color.Black, + HairStyles.DefaultFacialHairStyle, + Color.Black, + Color.Black, + Humanoid.SkinColor.ValidHumanSkinTone, + new () + ) + { + } + + public static HumanoidCharacterAppearance DefaultWithSpecies(string species) + { + var speciesPrototype = IoCManager.Resolve().Index(species); + var skinColor = speciesPrototype.SkinColoration switch { - HairStyleId = hairStyleId; - HairColor = ClampColor(hairColor); - FacialHairStyleId = facialHairStyleId; - FacialHairColor = ClampColor(facialHairColor); - EyeColor = ClampColor(eyeColor); - SkinColor = ClampColor(skinColor); - Markings = markings; - } + HumanoidSkinColor.HumanToned => Humanoid.SkinColor.HumanSkinTone(speciesPrototype.DefaultHumanSkinTone), + HumanoidSkinColor.Hues => speciesPrototype.DefaultSkinTone, + HumanoidSkinColor.TintedHues => Humanoid.SkinColor.TintedHues(speciesPrototype.DefaultSkinTone), + _ => Humanoid.SkinColor.ValidHumanSkinTone + }; - [DataField("hair")] - public string HairStyleId { get; private set; } - - [DataField("hairColor")] - public Color HairColor { get; private set; } - - [DataField("facialHair")] - public string FacialHairStyleId { get; private set; } - - [DataField("facialHairColor")] - public Color FacialHairColor { get; private set; } - - [DataField("eyeColor")] - public Color EyeColor { get; private set; } - - [DataField("skinColor")] - public Color SkinColor { get; private set; } - - [DataField("markings")] - public List Markings { get; private set; } - - public HumanoidCharacterAppearance WithHairStyleName(string newName) - { - return new(newName, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); - } - - public HumanoidCharacterAppearance WithHairColor(Color newColor) - { - return new(HairStyleId, newColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); - } - - public HumanoidCharacterAppearance WithFacialHairStyleName(string newName) - { - return new(HairStyleId, HairColor, newName, FacialHairColor, EyeColor, SkinColor, Markings); - } - - public HumanoidCharacterAppearance WithFacialHairColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, newColor, EyeColor, SkinColor, Markings); - } - - public HumanoidCharacterAppearance WithEyeColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, newColor, SkinColor, Markings); - } - - public HumanoidCharacterAppearance WithSkinColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, newColor, Markings); - } - - public HumanoidCharacterAppearance WithMarkings(List newMarkings) - { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, newMarkings); - } - - public HumanoidCharacterAppearance() : this( + return new( HairStyles.DefaultHairStyle, Color.Black, HairStyles.DefaultFacialHairStyle, Color.Black, Color.Black, - Humanoid.SkinColor.ValidHumanSkinTone, + skinColor, new () - ) + ); + } + + private static IReadOnlyList RealisticEyeColors = new List + { + Color.Brown, + Color.Gray, + Color.Azure, + Color.SteelBlue, + Color.Black + }; + + public static HumanoidCharacterAppearance Random(string species, Sex sex) + { + var random = IoCManager.Resolve(); + var markingManager = IoCManager.Resolve(); + var hairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.Hair, species).Keys.ToList(); + var facialHairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.FacialHair, species).Keys.ToList(); + + var newHairStyle = hairStyles.Count > 0 + ? random.Pick(hairStyles) + : HairStyles.DefaultHairStyle; + + var newFacialHairStyle = facialHairStyles.Count == 0 || sex == Sex.Female + ? HairStyles.DefaultFacialHairStyle + : random.Pick(facialHairStyles); + + var newHairColor = random.Pick(HairStyles.RealisticHairColors); + newHairColor = newHairColor + .WithRed(RandomizeColor(newHairColor.R)) + .WithGreen(RandomizeColor(newHairColor.G)) + .WithBlue(RandomizeColor(newHairColor.B)); + + // TODO: Add random markings + + var newEyeColor = random.Pick(RealisticEyeColors); + + var skinType = IoCManager.Resolve().Index(species).SkinColoration; + + var newSkinColor = new Color(random.NextFloat(1), random.NextFloat(1), random.NextFloat(1), 1); + switch (skinType) { - } - - public static HumanoidCharacterAppearance DefaultWithSpecies(string species) - { - var speciesPrototype = IoCManager.Resolve().Index(species); - var skinColor = speciesPrototype.SkinColoration switch - { - HumanoidSkinColor.HumanToned => Humanoid.SkinColor.HumanSkinTone(speciesPrototype.DefaultHumanSkinTone), - HumanoidSkinColor.Hues => speciesPrototype.DefaultSkinTone, - HumanoidSkinColor.TintedHues => Humanoid.SkinColor.TintedHues(speciesPrototype.DefaultSkinTone), - _ => Humanoid.SkinColor.ValidHumanSkinTone - }; - - return new( - HairStyles.DefaultHairStyle, - Color.Black, - HairStyles.DefaultFacialHairStyle, - Color.Black, - Color.Black, - skinColor, - new () - ); - } - - private static IReadOnlyList RealisticEyeColors = new List - { - Color.Brown, - Color.Gray, - Color.Azure, - Color.SteelBlue, - Color.Black - }; - - public static HumanoidCharacterAppearance Random(string species, Sex sex) - { - var random = IoCManager.Resolve(); - var markingManager = IoCManager.Resolve(); - var hairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.Hair, species).Keys.ToList(); - var facialHairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.FacialHair, species).Keys.ToList(); - - var newHairStyle = hairStyles.Count > 0 - ? random.Pick(hairStyles) - : HairStyles.DefaultHairStyle; - - var newFacialHairStyle = facialHairStyles.Count == 0 || sex == Sex.Female - ? HairStyles.DefaultFacialHairStyle - : random.Pick(facialHairStyles); - - var newHairColor = random.Pick(HairStyles.RealisticHairColors); - newHairColor = newHairColor - .WithRed(RandomizeColor(newHairColor.R)) - .WithGreen(RandomizeColor(newHairColor.G)) - .WithBlue(RandomizeColor(newHairColor.B)); - - // TODO: Add random markings - - var newEyeColor = random.Pick(RealisticEyeColors); - - var skinType = IoCManager.Resolve().Index(species).SkinColoration; - - var newSkinColor = Humanoid.SkinColor.ValidHumanSkinTone; - switch (skinType) - { - case HumanoidSkinColor.HumanToned: - var tone = random.Next(0, 100); - newSkinColor = Humanoid.SkinColor.HumanSkinTone(tone); - break; - case HumanoidSkinColor.Hues: - case HumanoidSkinColor.TintedHues: - var rbyte = random.NextByte(); - var gbyte = random.NextByte(); - var bbyte = random.NextByte(); - newSkinColor = new Color(rbyte, gbyte, bbyte); - break; - } - - if (skinType == HumanoidSkinColor.TintedHues) - { + case HumanoidSkinColor.HumanToned: + var tone = Math.Round(Humanoid.SkinColor.HumanSkinToneFromColor(newSkinColor)); + newSkinColor = Humanoid.SkinColor.HumanSkinTone((int)tone); + break; + case HumanoidSkinColor.Hues: + break; + case HumanoidSkinColor.TintedHues: newSkinColor = Humanoid.SkinColor.ValidTintedHuesSkinTone(newSkinColor); - } - - return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new ()); - - float RandomizeColor(float channel) - { - return MathHelper.Clamp01(channel + random.Next(-25, 25) / 100f); - } + break; } - public static Color ClampColor(Color color) + return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new ()); + + float RandomizeColor(float channel) { - return new(color.RByte, color.GByte, color.BByte); - } - - public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearance appearance, string species, Sex sex) - { - var hairStyleId = appearance.HairStyleId; - var facialHairStyleId = appearance.FacialHairStyleId; - - var hairColor = ClampColor(appearance.HairColor); - var facialHairColor = ClampColor(appearance.FacialHairColor); - var eyeColor = ClampColor(appearance.EyeColor); - - var proto = IoCManager.Resolve(); - var markingManager = IoCManager.Resolve(); - - if (!markingManager.MarkingsByCategory(MarkingCategories.Hair).ContainsKey(hairStyleId)) - { - hairStyleId = HairStyles.DefaultHairStyle; - } - - if (!markingManager.MarkingsByCategory(MarkingCategories.FacialHair).ContainsKey(facialHairStyleId)) - { - facialHairStyleId = HairStyles.DefaultFacialHairStyle; - } - - var markingSet = new MarkingSet(); - var skinColor = appearance.SkinColor; - if (proto.TryIndex(species, out SpeciesPrototype? speciesProto)) - { - markingSet = new MarkingSet(appearance.Markings, speciesProto.MarkingPoints, markingManager, proto); - markingSet.EnsureValid(markingManager); - - if (!Humanoid.SkinColor.VerifySkinColor(speciesProto.SkinColoration, skinColor)) - { - skinColor = Humanoid.SkinColor.ValidSkinTone(speciesProto.SkinColoration, skinColor); - } - - markingSet.EnsureSpecies(species, skinColor, markingManager); - markingSet.EnsureSexes(sex, markingManager); - } - - return new HumanoidCharacterAppearance( - hairStyleId, - hairColor, - facialHairStyleId, - facialHairColor, - eyeColor, - skinColor, - markingSet.GetForwardEnumerator().ToList()); - } - - public bool MemberwiseEquals(ICharacterAppearance maybeOther) - { - if (maybeOther is not HumanoidCharacterAppearance other) return false; - if (HairStyleId != other.HairStyleId) return false; - if (!HairColor.Equals(other.HairColor)) return false; - if (FacialHairStyleId != other.FacialHairStyleId) return false; - if (!FacialHairColor.Equals(other.FacialHairColor)) return false; - if (!EyeColor.Equals(other.EyeColor)) return false; - if (!SkinColor.Equals(other.SkinColor)) return false; - if (!Markings.SequenceEqual(other.Markings)) return false; - return true; + return MathHelper.Clamp01(channel + random.Next(-25, 25) / 100f); } } + + public static Color ClampColor(Color color) + { + return new(color.RByte, color.GByte, color.BByte); + } + + public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearance appearance, string species, Sex sex) + { + var hairStyleId = appearance.HairStyleId; + var facialHairStyleId = appearance.FacialHairStyleId; + + var hairColor = ClampColor(appearance.HairColor); + var facialHairColor = ClampColor(appearance.FacialHairColor); + var eyeColor = ClampColor(appearance.EyeColor); + + var proto = IoCManager.Resolve(); + var markingManager = IoCManager.Resolve(); + + if (!markingManager.MarkingsByCategory(MarkingCategories.Hair).ContainsKey(hairStyleId)) + { + hairStyleId = HairStyles.DefaultHairStyle; + } + + if (!markingManager.MarkingsByCategory(MarkingCategories.FacialHair).ContainsKey(facialHairStyleId)) + { + facialHairStyleId = HairStyles.DefaultFacialHairStyle; + } + + var markingSet = new MarkingSet(); + var skinColor = appearance.SkinColor; + if (proto.TryIndex(species, out SpeciesPrototype? speciesProto)) + { + markingSet = new MarkingSet(appearance.Markings, speciesProto.MarkingPoints, markingManager, proto); + markingSet.EnsureValid(markingManager); + + if (!Humanoid.SkinColor.VerifySkinColor(speciesProto.SkinColoration, skinColor)) + { + skinColor = Humanoid.SkinColor.ValidSkinTone(speciesProto.SkinColoration, skinColor); + } + + markingSet.EnsureSpecies(species, skinColor, markingManager); + markingSet.EnsureSexes(sex, markingManager); + } + + return new HumanoidCharacterAppearance( + hairStyleId, + hairColor, + facialHairStyleId, + facialHairColor, + eyeColor, + skinColor, + markingSet.GetForwardEnumerator().ToList()); + } + + public bool MemberwiseEquals(ICharacterAppearance maybeOther) + { + if (maybeOther is not HumanoidCharacterAppearance other) return false; + if (HairStyleId != other.HairStyleId) return false; + if (!HairColor.Equals(other.HairColor)) return false; + if (FacialHairStyleId != other.FacialHairStyleId) return false; + if (!FacialHairColor.Equals(other.FacialHairColor)) return false; + if (!EyeColor.Equals(other.EyeColor)) return false; + if (!SkinColor.Equals(other.SkinColor)) return false; + if (!Markings.SequenceEqual(other.Markings)) return false; + return true; + } } diff --git a/Content.Shared/Inventory/Events/UnequippedEvents.cs b/Content.Shared/Inventory/Events/UnequippedEvents.cs index ef607f071a..4e1764a7d2 100644 --- a/Content.Shared/Inventory/Events/UnequippedEvents.cs +++ b/Content.Shared/Inventory/Events/UnequippedEvents.cs @@ -22,12 +22,18 @@ public abstract class UnequippedEventBase : EntityEventArgs /// public readonly string SlotGroup; + /// + /// Slotflags of the slot the entity just got unequipped from. + /// + public readonly SlotFlags SlotFlags; + public UnequippedEventBase(EntityUid equipee, EntityUid equipment, SlotDefinition slotDefinition) { Equipee = equipee; Equipment = equipment; Slot = slotDefinition.Name; SlotGroup = slotDefinition.SlotGroup; + SlotFlags = slotDefinition.SlotFlags; } } diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index c43a588507..b418a1d416 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -38,12 +38,14 @@ public partial class InventorySystem SubscribeLocalEvent(RelayInventoryEvent); // ComponentActivatedClientSystems - SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(OnGetEquipmentVerbs); } diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index cbbee3a85b..c634b68e04 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -1,4 +1,6 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Inventory.Events; +using Content.Shared.Storage; using Robust.Shared.Containers; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -13,6 +15,7 @@ public partial class InventorySystem : EntitySystem private void InitializeSlots() { SubscribeLocalEvent(OnInit); + SubscribeNetworkEvent(OnOpenSlotStorage); _vvm.GetTypeHandler() .AddHandler(HandleViewVariablesSlots, ListViewVariablesSlots); @@ -40,6 +43,17 @@ public partial class InventorySystem : EntitySystem } } + private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEventArgs args) + { + if (args.SenderSession.AttachedEntity is not { Valid: true } uid) + return; + + if (TryGetSlotEntity(uid, ev.Slot, out var entityUid) && TryComp(entityUid, out var storageComponent)) + { + _storageSystem.OpenStorageUI(entityUid.Value, uid, storageComponent); + } + } + public bool TryGetSlotContainer(EntityUid uid, string slot, [NotNullWhen(true)] out ContainerSlot? containerSlot, [NotNullWhen(true)] out SlotDefinition? slotDefinition, InventoryComponent? inventory = null, ContainerManagerComponent? containerComp = null) { diff --git a/Content.Shared/Inventory/InventoryTemplatePrototype.cs b/Content.Shared/Inventory/InventoryTemplatePrototype.cs index 585f80d4ce..3a605523bf 100644 --- a/Content.Shared/Inventory/InventoryTemplatePrototype.cs +++ b/Content.Shared/Inventory/InventoryTemplatePrototype.cs @@ -17,6 +17,10 @@ public sealed partial class SlotDefinition { [DataField("name", required: true)] public string Name { get; private set; } = string.Empty; [DataField("slotTexture")] public string TextureName { get; private set; } = "pocket"; + /// + /// The texture displayed in a slot when it has an item inside of it. + /// + [DataField] public string FullTextureName { get; private set; } = "SlotBackground"; [DataField("slotFlags")] public SlotFlags SlotFlags { get; private set; } = SlotFlags.PREVENTEQUIP; [DataField("showInWindow")] public bool ShowInWindow { get; private set; } = true; [DataField("slotGroup")] public string SlotGroup { get; private set; } = "Default"; diff --git a/Content.Shared/Mobs/Components/MobStateComponent.cs b/Content.Shared/Mobs/Components/MobStateComponent.cs index a2ff349e13..7cff0779cb 100644 --- a/Content.Shared/Mobs/Components/MobStateComponent.cs +++ b/Content.Shared/Mobs/Components/MobStateComponent.cs @@ -13,30 +13,21 @@ namespace Content.Shared.Mobs.Components /// [RegisterComponent] [NetworkedComponent] + [AutoGenerateComponentState] [Access(typeof(MobStateSystem), typeof(MobThresholdSystem))] public sealed partial class MobStateComponent : Component { //default mobstate is always the lowest state level - [ViewVariables] public MobState CurrentState { get; set; } = MobState.Alive; + [AutoNetworkedField, ViewVariables] + public MobState CurrentState { get; set; } = MobState.Alive; - [DataField("allowedStates")] public HashSet AllowedStates = new() + [DataField] + [AutoNetworkedField] + public HashSet AllowedStates = new() { MobState.Alive, MobState.Critical, MobState.Dead }; } - - [Serializable, NetSerializable] - public sealed class MobStateComponentState : ComponentState - { - public readonly MobState CurrentState; - public readonly HashSet AllowedStates; - - public MobStateComponentState(MobState currentState, HashSet allowedStates) - { - CurrentState = currentState; - AllowedStates = allowedStates; - } - } } diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.cs b/Content.Shared/Mobs/Systems/MobStateSystem.cs index ff54c30aaf..a3886dd42e 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.cs @@ -25,8 +25,6 @@ public partial class MobStateSystem : EntitySystem _sawmill = _logManager.GetSawmill("MobState"); base.Initialize(); SubscribeEvents(); - SubscribeLocalEvent(OnGetComponentState); - SubscribeLocalEvent(OnHandleComponentState); } #region Public API @@ -100,24 +98,5 @@ public partial class MobStateSystem : EntitySystem #region Private Implementation - private void OnHandleComponentState(EntityUid uid, MobStateComponent component, ref ComponentHandleState args) - { - if (args.Current is not MobStateComponentState state) - return; - - component.CurrentState = state.CurrentState; - - if (!component.AllowedStates.SetEquals(state.AllowedStates)) - { - component.AllowedStates.Clear(); - component.AllowedStates.UnionWith(state.AllowedStates); - } - } - - private void OnGetComponentState(EntityUid uid, MobStateComponent component, ref ComponentGetState args) - { - args.State = new MobStateComponentState(component.CurrentState, component.AllowedStates); - } - #endregion } diff --git a/Content.Shared/NPC/Components/FactionExceptionComponent.cs b/Content.Shared/NPC/Components/FactionExceptionComponent.cs index 54de0404c2..ba7940d502 100644 --- a/Content.Shared/NPC/Components/FactionExceptionComponent.cs +++ b/Content.Shared/NPC/Components/FactionExceptionComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.NPC.Components; /// Prevents an NPC from attacking ignored entities from enemy factions. /// Can be added to if pettable, see PettableFriendComponent. /// -[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSystem), typeof(SharedNPCImprintingOnSpawnBehaviourSystem))] // TO DO (Metalgearsloth): If we start adding a billion access overrides they should be going through a system as then there's no reason to have access, but I'll fix this when I rework npcs. public sealed partial class FactionExceptionComponent : Component { /// diff --git a/Content.Shared/NPC/Systems/SharedNPCImprintingOnSpawnBehaviourSystem.cs b/Content.Shared/NPC/Systems/SharedNPCImprintingOnSpawnBehaviourSystem.cs new file mode 100644 index 0000000000..f06d496e9e --- /dev/null +++ b/Content.Shared/NPC/Systems/SharedNPCImprintingOnSpawnBehaviourSystem.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.NPC.Systems; + +public abstract partial class SharedNPCImprintingOnSpawnBehaviourSystem : EntitySystem +{ +} diff --git a/Content.Shared/NPC/Systems/SharedNPCSystem.cs b/Content.Shared/NPC/Systems/SharedNPCSystem.cs new file mode 100644 index 0000000000..247ab478a1 --- /dev/null +++ b/Content.Shared/NPC/Systems/SharedNPCSystem.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.NPC.Systems; + +public abstract partial class SharedNPCSystem : EntitySystem +{ +} diff --git a/Content.Server/Nutrition/Components/DrinkComponent.cs b/Content.Shared/Nutrition/Components/DrinkComponent.cs similarity index 66% rename from Content.Server/Nutrition/Components/DrinkComponent.cs rename to Content.Shared/Nutrition/Components/DrinkComponent.cs index 20d47cda88..17baaef5a3 100644 --- a/Content.Server/Nutrition/Components/DrinkComponent.cs +++ b/Content.Shared/Nutrition/Components/DrinkComponent.cs @@ -1,28 +1,30 @@ -using Content.Server.Nutrition.EntitySystems; +using Content.Shared.Nutrition.EntitySystems; using Content.Shared.FixedPoint; using Robust.Shared.Audio; +using Robust.Shared.GameStates; -namespace Content.Server.Nutrition.Components; +namespace Content.Shared.Nutrition.Components; -[RegisterComponent, Access(typeof(DrinkSystem))] +[NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, Access(typeof(SharedDrinkSystem))] public sealed partial class DrinkComponent : Component { - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public string Solution = "drink"; - [DataField] + [DataField, AutoNetworkedField] public SoundSpecifier UseSound = new SoundPathSpecifier("/Audio/Items/drink.ogg"); - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public FixedPoint2 TransferAmount = FixedPoint2.New(5); /// /// How long it takes to drink this yourself. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public float Delay = 1; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public bool Examinable = true; /// @@ -30,12 +32,12 @@ public sealed partial class DrinkComponent : Component /// This means other systems such as equipping on use can run. /// Example usecase is the bucket. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool IgnoreEmpty; /// /// This is how many seconds it takes to force feed someone this drink. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public float ForceFeedDelay = 3; } diff --git a/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs b/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs new file mode 100644 index 0000000000..7060f3bf79 --- /dev/null +++ b/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs @@ -0,0 +1,106 @@ +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +/// +/// Represents a solution container that can hold the pressure from a solution that +/// gets fizzy when aggitated, and can spray the solution when opened or thrown. +/// Handles simulating the fizziness of the solution, responding to aggitating events, +/// and spraying the solution out when opening or throwing the entity. +/// +[NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] +[RegisterComponent, Access(typeof(PressurizedSolutionSystem))] +public sealed partial class PressurizedSolutionComponent : Component +{ + /// + /// The name of the solution to use. + /// + [DataField] + public string Solution = "drink"; + + /// + /// The sound to play when the solution sprays out of the container. + /// + [DataField] + public SoundSpecifier SpraySound = new SoundPathSpecifier("/Audio/Items/soda_spray.ogg"); + + /// + /// The longest amount of time that the solution can remain fizzy after being aggitated. + /// Put another way, how long the solution will remain fizzy when aggitated the maximum amount. + /// Used to calculate the current fizziness level. + /// + [DataField] + public TimeSpan FizzinessMaxDuration = TimeSpan.FromSeconds(120); + + /// + /// The time at which the solution will be fully settled after being shaken. + /// + [DataField, AutoNetworkedField, AutoPausedField] + public TimeSpan FizzySettleTime; + + /// + /// How much to increase the solution's fizziness each time it's shaken. + /// This assumes the solution has maximum fizzability. + /// A value of 1 will maximize it with a single shake, and a value of + /// 0.5 will increase it by half with each shake. + /// + [DataField] + public float FizzinessAddedOnShake = 1.0f; + + /// + /// How much to increase the solution's fizziness when it lands after being thrown. + /// This assumes the solution has maximum fizzability. + /// + [DataField] + public float FizzinessAddedOnLand = 0.25f; + + /// + /// How much to modify the chance of spraying when the entity is opened. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnOpened = -0.01f; // Just enough to prevent spraying at 0 fizziness + + /// + /// How much to modify the chance of spraying when the entity is shaken. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnShake = -1; // No spraying when shaken by default + + /// + /// How much to modify the chance of spraying when the entity lands after being thrown. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnLand = 0.25f; + + /// + /// Holds the current randomly-rolled threshold value for spraying. + /// If fizziness exceeds this value when the entity is opened, it will spray. + /// By rolling this value when the entity is aggitated, we can have randomization + /// while still having prediction! + /// + [DataField, AutoNetworkedField] + public float SprayFizzinessThresholdRoll; + + /// + /// Popup message shown to user when sprayed by the solution. + /// + [DataField] + public LocId SprayHolderMessageSelf = "pressurized-solution-spray-holder-self"; + + /// + /// Popup message shown to others when a user is sprayed by the solution. + /// + [DataField] + public LocId SprayHolderMessageOthers = "pressurized-solution-spray-holder-others"; + + /// + /// Popup message shown above the entity when the solution sprays without a target. + /// + [DataField] + public LocId SprayGroundMessage = "pressurized-solution-spray-ground"; +} diff --git a/Content.Shared/Nutrition/Components/ShakeableComponent.cs b/Content.Shared/Nutrition/Components/ShakeableComponent.cs new file mode 100644 index 0000000000..cc1c08a9b2 --- /dev/null +++ b/Content.Shared/Nutrition/Components/ShakeableComponent.cs @@ -0,0 +1,50 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +/// +/// Adds a "Shake" verb to the entity's verb menu. +/// Handles checking the entity can be shaken, displaying popups when shaking, +/// and raising a ShakeEvent when a shake occurs. +/// Reacting to being shaken is left up to other components. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShakeableComponent : Component +{ + /// + /// How long it takes to shake this item. + /// + [DataField] + public TimeSpan ShakeDuration = TimeSpan.FromSeconds(1f); + + /// + /// Does the entity need to be in the user's hand in order to be shaken? + /// + [DataField] + public bool RequireInHand; + + /// + /// Label to display in the verbs menu for this item's shake action. + /// + [DataField] + public LocId ShakeVerbText = "shakeable-verb"; + + /// + /// Text that will be displayed to the user when shaking this item. + /// + [DataField] + public LocId ShakePopupMessageSelf = "shakeable-popup-message-self"; + + /// + /// Text that will be displayed to other users when someone shakes this item. + /// + [DataField] + public LocId ShakePopupMessageOthers = "shakeable-popup-message-others"; + + /// + /// The sound that will be played when shaking this item. + /// + [DataField] + public SoundSpecifier ShakeSound = new SoundPathSpecifier("/Audio/Items/soda_shake.ogg"); +} diff --git a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs index 89aae57074..4de4e4d5fe 100644 --- a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs @@ -1,17 +1,22 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Alert; using Content.Shared.Damage; using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Rejuvenate; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Shared.Nutrition.EntitySystems; public sealed class HungerSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly DamageableSystem _damageable = default!; @@ -19,10 +24,27 @@ public sealed class HungerSystem : EntitySystem [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; [Dependency] private readonly SharedJetpackSystem _jetpack = default!; + [ValidatePrototypeId] + private const string HungerIconOverfedId = "HungerIconOverfed"; + + [ValidatePrototypeId] + private const string HungerIconPeckishId = "HungerIconPeckish"; + + [ValidatePrototypeId] + private const string HungerIconStarvingId = "HungerIconStarving"; + + private StatusIconPrototype? _hungerIconOverfed; + private StatusIconPrototype? _hungerIconPeckish; + private StatusIconPrototype? _hungerIconStarving; + public override void Initialize() { base.Initialize(); + DebugTools.Assert(_prototype.TryIndex(HungerIconOverfedId, out _hungerIconOverfed) && + _prototype.TryIndex(HungerIconPeckishId, out _hungerIconPeckish) && + _prototype.TryIndex(HungerIconStarvingId, out _hungerIconStarving)); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnRefreshMovespeed); @@ -194,6 +216,27 @@ public sealed class HungerSystem : EntitySystem } } + public bool TryGetStatusIconPrototype(HungerComponent component, [NotNullWhen(true)] out StatusIconPrototype? prototype) + { + switch (component.CurrentThreshold) + { + case HungerThreshold.Overfed: + prototype = _hungerIconOverfed; + break; + case HungerThreshold.Peckish: + prototype = _hungerIconPeckish; + break; + case HungerThreshold.Starving: + prototype = _hungerIconStarving; + break; + default: + prototype = null; + break; + } + + return prototype != null; + } + public override void Update(float frameTime) { base.Update(frameTime); diff --git a/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs b/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs index 0ad0877d22..2934ced8b4 100644 --- a/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs @@ -16,9 +16,9 @@ namespace Content.Shared.Nutrition.EntitySystems; /// public sealed partial class OpenableSystem : EntitySystem { - [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; - [Dependency] protected readonly SharedAudioSystem Audio = default!; - [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { @@ -31,6 +31,8 @@ public sealed partial class OpenableSystem : EntitySystem SubscribeLocalEvent(HandleIfClosed); SubscribeLocalEvent>(AddOpenCloseVerbs); SubscribeLocalEvent(OnTransferAttempt); + SubscribeLocalEvent(OnAttemptShake); + SubscribeLocalEvent(OnAttemptAddFizziness); } private void OnInit(EntityUid uid, OpenableComponent comp, ComponentInit args) @@ -100,6 +102,20 @@ public sealed partial class OpenableSystem : EntitySystem } } + private void OnAttemptShake(Entity entity, ref AttemptShakeEvent args) + { + // Prevent shaking open containers + if (entity.Comp.Opened) + args.Cancelled = true; + } + + private void OnAttemptAddFizziness(Entity entity, ref AttemptAddFizzinessEvent args) + { + // Can't add fizziness to an open container + if (entity.Comp.Opened) + args.Cancelled = true; + } + /// /// Returns true if the entity either does not have OpenableComponent or it is opened. /// Drinks that don't have OpenableComponent are automatically open, so it returns true. @@ -126,7 +142,7 @@ public sealed partial class OpenableSystem : EntitySystem return false; if (user != null) - Popup.PopupEntity(Loc.GetString(comp.ClosedPopup, ("owner", uid)), user.Value, user.Value); + _popup.PopupEntity(Loc.GetString(comp.ClosedPopup, ("owner", uid)), user.Value, user.Value); return true; } @@ -139,13 +155,13 @@ public sealed partial class OpenableSystem : EntitySystem if (!Resolve(uid, ref comp)) return; - Appearance.SetData(uid, OpenableVisuals.Opened, comp.Opened, appearance); + _appearance.SetData(uid, OpenableVisuals.Opened, comp.Opened, appearance); } /// /// Sets the opened field and updates open visuals. /// - public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = null) + public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = null, EntityUid? user = null) { if (!Resolve(uid, ref comp, false) || opened == comp.Opened) return; @@ -155,12 +171,12 @@ public sealed partial class OpenableSystem : EntitySystem if (opened) { - var ev = new OpenableOpenedEvent(); + var ev = new OpenableOpenedEvent(user); RaiseLocalEvent(uid, ref ev); } else { - var ev = new OpenableClosedEvent(); + var ev = new OpenableClosedEvent(user); RaiseLocalEvent(uid, ref ev); } @@ -176,8 +192,8 @@ public sealed partial class OpenableSystem : EntitySystem if (!Resolve(uid, ref comp, false) || comp.Opened) return false; - SetOpen(uid, true, comp); - Audio.PlayPredicted(comp.Sound, uid, user); + SetOpen(uid, true, comp, user); + _audio.PlayPredicted(comp.Sound, uid, user); return true; } @@ -190,9 +206,9 @@ public sealed partial class OpenableSystem : EntitySystem if (!Resolve(uid, ref comp, false) || !comp.Opened || !comp.Closeable) return false; - SetOpen(uid, false, comp); + SetOpen(uid, false, comp, user); if (comp.CloseSound != null) - Audio.PlayPredicted(comp.CloseSound, uid, user); + _audio.PlayPredicted(comp.CloseSound, uid, user); return true; } } @@ -201,10 +217,10 @@ public sealed partial class OpenableSystem : EntitySystem /// Raised after an Openable is opened. /// [ByRefEvent] -public record struct OpenableOpenedEvent; +public record struct OpenableOpenedEvent(EntityUid? User = null); /// /// Raised after an Openable is closed. /// [ByRefEvent] -public record struct OpenableClosedEvent; +public record struct OpenableClosedEvent(EntityUid? User = null); diff --git a/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs b/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs new file mode 100644 index 0000000000..d63b8e7326 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs @@ -0,0 +1,285 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Nutrition.Components; +using Content.Shared.Throwing; +using Content.Shared.IdentityManagement; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Random; +using Robust.Shared.Timing; +using Robust.Shared.Prototypes; +using Robust.Shared.Network; +using Content.Shared.Fluids; +using Content.Shared.Popups; + +namespace Content.Shared.Nutrition.EntitySystems; + +public sealed partial class PressurizedSolutionSystem : EntitySystem +{ + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedPuddleSystem _puddle = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnShake); + SubscribeLocalEvent(OnOpened); + SubscribeLocalEvent(OnLand); + SubscribeLocalEvent(OnSolutionUpdate); + } + + /// + /// Helper method for checking if the solution's fizziness is high enough to spray. + /// is added to the actual fizziness for the comparison. + /// + private bool SprayCheck(Entity entity, float chanceMod = 0) + { + return Fizziness((entity, entity.Comp)) + chanceMod > entity.Comp.SprayFizzinessThresholdRoll; + } + + /// + /// Calculates how readily the contained solution becomes fizzy. + /// + private float SolutionFizzability(Entity entity) + { + if (!_solutionContainer.TryGetSolution(entity.Owner, entity.Comp.Solution, out var _, out var solution)) + return 0; + + // An empty solution can't be fizzy + if (solution.Volume <= 0) + return 0; + + var totalFizzability = 0f; + + // Check each reagent in the solution + foreach (var reagent in solution.Contents) + { + if (_prototypeManager.TryIndex(reagent.Reagent.Prototype, out ReagentPrototype? reagentProto) && reagentProto != null) + { + // What portion of the solution is this reagent? + var proportion = (float) (reagent.Quantity / solution.Volume); + totalFizzability += reagentProto.Fizziness * proportion; + } + } + + return totalFizzability; + } + + /// + /// Increases the fizziness level of the solution by the given amount, + /// scaled by the solution's fizzability. + /// 0 will result in no change, and 1 will maximize fizziness. + /// Also rerolls the spray threshold. + /// + private void AddFizziness(Entity entity, float amount) + { + var fizzability = SolutionFizzability(entity); + + // Can't add fizziness if the solution isn't fizzy + if (fizzability <= 0) + return; + + // Make sure nothing is preventing fizziness from being added + var attemptEv = new AttemptAddFizzinessEvent(entity, amount); + RaiseLocalEvent(entity, ref attemptEv); + if (attemptEv.Cancelled) + return; + + // Scale added fizziness by the solution's fizzability + amount *= fizzability; + + // Convert fizziness to time + var duration = amount * entity.Comp.FizzinessMaxDuration; + + // Add to the existing settle time, if one exists. Otherwise, add to the current time + var start = entity.Comp.FizzySettleTime > _timing.CurTime ? entity.Comp.FizzySettleTime : _timing.CurTime; + var newTime = start + duration; + + // Cap the maximum fizziness + var maxEnd = _timing.CurTime + entity.Comp.FizzinessMaxDuration; + if (newTime > maxEnd) + newTime = maxEnd; + + entity.Comp.FizzySettleTime = newTime; + + // Roll a new fizziness threshold + RollSprayThreshold(entity); + } + + /// + /// Helper method. Performs a . If it passes, calls . If it fails, . + /// + private void SprayOrAddFizziness(Entity entity, float chanceMod = 0, float fizzinessToAdd = 0, EntityUid? user = null) + { + if (SprayCheck(entity, chanceMod)) + TrySpray((entity, entity.Comp), user); + else + AddFizziness(entity, fizzinessToAdd); + } + + /// + /// Randomly generates a new spray threshold. + /// This is the value used to compare fizziness against when doing . + /// Since RNG will give different results between client and server, this is run on the server + /// and synced to the client by marking the component dirty. + /// We roll this in advance, rather than during , so that the value (hopefully) + /// has time to get synced to the client, so we can try be accurate with prediction. + /// + private void RollSprayThreshold(Entity entity) + { + // Can't predict random, so we wait for the server to tell us + if (!_net.IsServer) + return; + + entity.Comp.SprayFizzinessThresholdRoll = _random.NextFloat(); + Dirty(entity, entity.Comp); + } + + #region Public API + + /// + /// Does the entity contain a solution capable of being fizzy? + /// + public bool CanSpray(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + return SolutionFizzability((entity, entity.Comp)) > 0; + } + + /// + /// Attempts to spray the solution onto the given entity, or the ground if none is given. + /// Fails if the solution isn't able to be sprayed. + /// + public bool TrySpray(Entity entity, EntityUid? target = null) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanSpray(entity)) + return false; + + if (!_solutionContainer.TryGetSolution(entity.Owner, entity.Comp.Solution, out var soln, out var interactions)) + return false; + + // If the container is openable, open it + _openable.SetOpen(entity, true); + + // Get the spray solution from the container + var solution = _solutionContainer.SplitSolution(soln.Value, interactions.Volume); + + // Spray the solution onto the ground and anyone nearby + if (TryComp(entity, out var transform)) + _puddle.TrySplashSpillAt(entity, transform.Coordinates, solution, out _, sound: false); + + var drinkName = Identity.Entity(entity, EntityManager); + + if (target != null) + { + var victimName = Identity.Entity(target.Value, EntityManager); + + var selfMessage = Loc.GetString(entity.Comp.SprayHolderMessageSelf, ("victim", victimName), ("drink", drinkName)); + var othersMessage = Loc.GetString(entity.Comp.SprayHolderMessageOthers, ("victim", victimName), ("drink", drinkName)); + _popup.PopupPredicted(selfMessage, othersMessage, target.Value, target.Value); + } + else + { + // Show a popup to everyone in PVS range + if (_timing.IsFirstTimePredicted) + _popup.PopupEntity(Loc.GetString(entity.Comp.SprayGroundMessage, ("drink", drinkName)), entity); + } + + _audio.PlayPredicted(entity.Comp.SpraySound, entity, target); + + // We just used all our fizziness, so clear it + TryClearFizziness(entity); + + return true; + } + + /// + /// What is the current fizziness level of the solution, from 0 to 1? + /// + public double Fizziness(Entity entity) + { + // No component means no fizz + if (!Resolve(entity, ref entity.Comp, false)) + return 0; + + // No negative fizziness + if (entity.Comp.FizzySettleTime <= _timing.CurTime) + return 0; + + var currentDuration = entity.Comp.FizzySettleTime - _timing.CurTime; + return Easings.InOutCubic((float) Math.Min(currentDuration / entity.Comp.FizzinessMaxDuration, 1)); + } + + /// + /// Attempts to clear any fizziness in the solution. + /// + /// Rolls a new spray threshold. + public void TryClearFizziness(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return; + + entity.Comp.FizzySettleTime = TimeSpan.Zero; + + // Roll a new fizziness threshold + RollSprayThreshold((entity, entity.Comp)); + } + + #endregion + + #region Event Handlers + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + RollSprayThreshold(entity); + } + + private void OnOpened(Entity entity, ref OpenableOpenedEvent args) + { + // Make sure the opener is actually holding the drink + var held = args.User != null && _hands.IsHolding(args.User.Value, entity, out _); + + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnOpened, -1, held ? args.User : null); + } + + private void OnShake(Entity entity, ref ShakeEvent args) + { + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnShake, entity.Comp.FizzinessAddedOnShake, args.Shaker); + } + + private void OnLand(Entity entity, ref LandEvent args) + { + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnLand, entity.Comp.FizzinessAddedOnLand); + } + + private void OnSolutionUpdate(Entity entity, ref SolutionContainerChangedEvent args) + { + if (args.SolutionId != entity.Comp.Solution) + return; + + // If the solution is no longer capable of being fizzy, clear any built up fizziness + if (SolutionFizzability(entity) <= 0) + TryClearFizziness((entity, entity.Comp)); + } + + #endregion +} + +[ByRefEvent] +public record struct AttemptAddFizzinessEvent(Entity Entity, float Amount) +{ + public bool Cancelled; +} diff --git a/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs b/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs new file mode 100644 index 0000000000..39890aada9 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs @@ -0,0 +1,155 @@ +using Content.Shared.DoAfter; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.IdentityManagement; +using Content.Shared.Nutrition.Components; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Serialization; + +namespace Content.Shared.Nutrition.EntitySystems; + +public sealed partial class ShakeableSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(AddShakeVerb); + SubscribeLocalEvent(OnShakeDoAfter); + } + + private void AddShakeVerb(EntityUid uid, ShakeableComponent component, GetVerbsEvent args) + { + if (args.Hands == null || !args.CanAccess || !args.CanInteract) + return; + + if (!CanShake((uid, component), args.User)) + return; + + var shakeVerb = new Verb() + { + Text = Loc.GetString(component.ShakeVerbText), + Act = () => TryStartShake((args.Target, component), args.User) + }; + args.Verbs.Add(shakeVerb); + } + + private void OnShakeDoAfter(Entity entity, ref ShakeDoAfterEvent args) + { + if (args.Handled || args.Cancelled) + return; + + TryShake((entity, entity.Comp), args.User); + } + + /// + /// Attempts to start the doAfter to shake the entity. + /// Fails and returns false if the entity cannot be shaken for any reason. + /// If successful, displays popup messages, plays shake sound, and starts the doAfter. + /// + public bool TryStartShake(Entity entity, EntityUid user) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanShake(entity, user)) + return false; + + var doAfterArgs = new DoAfterArgs(EntityManager, + user, + entity.Comp.ShakeDuration, + new ShakeDoAfterEvent(), + eventTarget: entity, + target: user, + used: entity) + { + NeedHand = true, + BreakOnDamage = true, + DistanceThreshold = 1, + MovementThreshold = 0.01f, + BreakOnHandChange = entity.Comp.RequireInHand, + }; + if (entity.Comp.RequireInHand) + doAfterArgs.BreakOnHandChange = true; + + if (!_doAfter.TryStartDoAfter(doAfterArgs)) + return false; + + var userName = Identity.Entity(user, EntityManager); + var shakeableName = Identity.Entity(entity, EntityManager); + + var selfMessage = Loc.GetString(entity.Comp.ShakePopupMessageSelf, ("user", userName), ("shakeable", shakeableName)); + var othersMessage = Loc.GetString(entity.Comp.ShakePopupMessageOthers, ("user", userName), ("shakeable", shakeableName)); + _popup.PopupPredicted(selfMessage, othersMessage, user, user); + + _audio.PlayPredicted(entity.Comp.ShakeSound, entity, user); + + return true; + } + + /// + /// Attempts to shake the entity, skipping the doAfter. + /// Fails and returns false if the entity cannot be shaken for any reason. + /// If successful, raises a ShakeEvent on the entity. + /// + public bool TryShake(Entity entity, EntityUid? user = null) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanShake(entity, user)) + return false; + + var ev = new ShakeEvent(user); + RaiseLocalEvent(entity, ref ev); + + return true; + } + + + /// + /// Is it possible for the given user to shake the entity? + /// + public bool CanShake(Entity entity, EntityUid? user = null) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + // If required to be in hand, fail if the user is not holding this entity + if (user != null && entity.Comp.RequireInHand && !_hands.IsHolding(user.Value, entity, out _)) + return false; + + var attemptEv = new AttemptShakeEvent(); + RaiseLocalEvent(entity, ref attemptEv); + if (attemptEv.Cancelled) + return false; + return true; + } +} + +/// +/// Raised when a ShakeableComponent is shaken, after the doAfter completes. +/// +[ByRefEvent] +public record struct ShakeEvent(EntityUid? Shaker); + +/// +/// Raised when trying to shake a ShakeableComponent. If cancelled, the +/// entity will not be shaken. +/// +[ByRefEvent] +public record struct AttemptShakeEvent() +{ + public bool Cancelled; +} + +[Serializable, NetSerializable] +public sealed partial class ShakeDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs b/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs new file mode 100644 index 0000000000..7cae3b9208 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs @@ -0,0 +1,90 @@ +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Examine; +using Content.Shared.FixedPoint; +using Content.Shared.Nutrition.Components; + +namespace Content.Shared.Nutrition.EntitySystems; + +public abstract partial class SharedDrinkSystem : EntitySystem +{ + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAttemptShake); + SubscribeLocalEvent(OnExamined); + } + + protected void OnAttemptShake(Entity entity, ref AttemptShakeEvent args) + { + if (IsEmpty(entity, entity.Comp)) + args.Cancelled = true; + } + + protected void OnExamined(Entity entity, ref ExaminedEvent args) + { + TryComp(entity, out var openable); + if (_openable.IsClosed(entity.Owner, null, openable) || !args.IsInDetailsRange || !entity.Comp.Examinable) + return; + + var empty = IsEmpty(entity, entity.Comp); + if (empty) + { + args.PushMarkup(Loc.GetString("drink-component-on-examine-is-empty")); + return; + } + + if (HasComp(entity)) + { + //provide exact measurement for beakers + args.PushText(Loc.GetString("drink-component-on-examine-exact-volume", ("amount", DrinkVolume(entity, entity.Comp)))); + } + else + { + //general approximation + var remainingString = (int) _solutionContainer.PercentFull(entity) switch + { + 100 => "drink-component-on-examine-is-full", + > 66 => "drink-component-on-examine-is-mostly-full", + > 33 => HalfEmptyOrHalfFull(args), + _ => "drink-component-on-examine-is-mostly-empty", + }; + args.PushMarkup(Loc.GetString(remainingString)); + } + } + + protected FixedPoint2 DrinkVolume(EntityUid uid, DrinkComponent? component = null) + { + if (!Resolve(uid, ref component)) + return FixedPoint2.Zero; + + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out _, out var sol)) + return FixedPoint2.Zero; + + return sol.Volume; + } + + protected bool IsEmpty(EntityUid uid, DrinkComponent? component = null) + { + if (!Resolve(uid, ref component)) + return true; + + return DrinkVolume(uid, component) <= 0; + } + + // some see half empty, and others see half full + private string HalfEmptyOrHalfFull(ExaminedEvent args) + { + string remainingString = "drink-component-on-examine-is-half-full"; + + if (TryComp(args.Examiner, out var examiner) && examiner.EntityName.Length > 0 + && string.Compare(examiner.EntityName.Substring(0, 1), "m", StringComparison.InvariantCultureIgnoreCase) > 0) + remainingString = "drink-component-on-examine-is-half-empty"; + + return remainingString; + } +} diff --git a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs index 29218f5719..8ea7d9140c 100644 --- a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs @@ -3,9 +3,12 @@ using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Rejuvenate; +using Content.Shared.StatusIcon; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Shared.Nutrition.EntitySystems; @@ -13,15 +16,33 @@ namespace Content.Shared.Nutrition.EntitySystems; public sealed class ThirstSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly MovementSpeedModifierSystem _movement = default!; [Dependency] private readonly SharedJetpackSystem _jetpack = default!; + [ValidatePrototypeId] + private const string ThirstIconOverhydratedId = "ThirstIconOverhydrated"; + + [ValidatePrototypeId] + private const string ThirstIconThirstyId = "ThirstIconThirsty"; + + [ValidatePrototypeId] + private const string ThirstIconParchedId = "ThirstIconParched"; + + private StatusIconPrototype? _thirstIconOverhydrated = null; + private StatusIconPrototype? _thirstIconThirsty = null; + private StatusIconPrototype? _thirstIconParched = null; + public override void Initialize() { base.Initialize(); + DebugTools.Assert(_prototype.TryIndex(ThirstIconOverhydratedId, out _thirstIconOverhydrated) && + _prototype.TryIndex(ThirstIconThirstyId, out _thirstIconThirsty) && + _prototype.TryIndex(ThirstIconParchedId, out _thirstIconParched)); + SubscribeLocalEvent(OnRefreshMovespeed); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnRejuvenate); @@ -107,6 +128,28 @@ public sealed class ThirstSystem : EntitySystem } } + public bool TryGetStatusIconPrototype(ThirstComponent component, out StatusIconPrototype? prototype) + { + switch (component.CurrentThirstThreshold) + { + case ThirstThreshold.OverHydrated: + prototype = _thirstIconOverhydrated; + return true; + + case ThirstThreshold.Thirsty: + prototype = _thirstIconThirsty; + return true; + + case ThirstThreshold.Parched: + prototype = _thirstIconParched; + return true; + + default: + prototype = null; + return false; + } + } + private void UpdateEffects(EntityUid uid, ThirstComponent component) { if (IsMovementThreshold(component.LastThirstThreshold) != IsMovementThreshold(component.CurrentThirstThreshold) && diff --git a/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs b/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs new file mode 100644 index 0000000000..cb0759be3e --- /dev/null +++ b/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// This component allows you to see criminal record status of mobs. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowCriminalRecordIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowHungerIconsComponent.cs b/Content.Shared/Overlays/ShowHungerIconsComponent.cs index bf1fb2dc19..b3841bd80f 100644 --- a/Content.Shared/Overlays/ShowHungerIconsComponent.cs +++ b/Content.Shared/Overlays/ShowHungerIconsComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.GameStates; namespace Content.Shared.Overlays; /// -/// This component allows you to see the hungriness of mobs. +/// This component allows you to see the hungriness of mobs. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowHungerIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowSecurityIconsComponent.cs b/Content.Shared/Overlays/ShowJobIconsComponent.cs similarity index 51% rename from Content.Shared/Overlays/ShowSecurityIconsComponent.cs rename to Content.Shared/Overlays/ShowJobIconsComponent.cs index ec268174d1..aae9739506 100644 --- a/Content.Shared/Overlays/ShowSecurityIconsComponent.cs +++ b/Content.Shared/Overlays/ShowJobIconsComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.GameStates; namespace Content.Shared.Overlays; /// -/// This component allows you to see job icons above mobs. +/// This component allows you to see job icons above mobs. /// [RegisterComponent, NetworkedComponent] -public sealed partial class ShowSecurityIconsComponent : Component { } +public sealed partial class ShowJobIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs b/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs new file mode 100644 index 0000000000..624d5ab8ef --- /dev/null +++ b/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// This component allows you to see mindshield icons above mobs. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowMindShieldIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs index 74a67db694..a63eae8e46 100644 --- a/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs +++ b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.GameStates; namespace Content.Shared.Overlays; /// -/// +/// This component allows you to identify members of the Syndicate faction. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowSyndicateIconsComponent : Component {} diff --git a/Content.Shared/Overlays/ShowThirstIconsComponent.cs b/Content.Shared/Overlays/ShowThirstIconsComponent.cs index 905ab07fe2..1914034e9e 100644 --- a/Content.Shared/Overlays/ShowThirstIconsComponent.cs +++ b/Content.Shared/Overlays/ShowThirstIconsComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.GameStates; namespace Content.Shared.Overlays; /// -/// This component allows you to see the thirstiness of mobs. +/// This component allows you to see the thirstiness of mobs. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowThirstIconsComponent : Component { } diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 1c10fefd5d..775ccb7c44 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -48,6 +48,9 @@ public enum CollisionGroup MachineLayer = Opaque | MidImpassable | LowImpassable | BulletImpassable, ConveyorMask = Impassable | MidImpassable | LowImpassable | DoorPassable, + // Crates + CrateMask = Impassable | HighImpassable | LowImpassable, + // Tables that SmallMobs can go under TableMask = Impassable | MidImpassable, TableLayer = MidImpassable, diff --git a/Content.Shared/Pinpointer/NavMapComponent.cs b/Content.Shared/Pinpointer/NavMapComponent.cs index 8c9979ba25..61315b3db1 100644 --- a/Content.Shared/Pinpointer/NavMapComponent.cs +++ b/Content.Shared/Pinpointer/NavMapComponent.cs @@ -1,9 +1,12 @@ +using Content.Shared.Atmos; using Robust.Shared.GameStates; +using Robust.Shared.Serialization; +using Robust.Shared.Timing; namespace Content.Shared.Pinpointer; /// -/// Used to store grid poly data to be used for UIs. +/// Used to store grid data to be used for UIs. /// [RegisterComponent, NetworkedComponent] public sealed partial class NavMapComponent : Component @@ -12,25 +15,57 @@ public sealed partial class NavMapComponent : Component * Don't need DataFields as this can be reconstructed */ + /// + /// Bitmasks that represent chunked tiles. + /// [ViewVariables] - public readonly Dictionary Chunks = new(); + public Dictionary<(NavMapChunkType, Vector2i), NavMapChunk> Chunks = new(); - [ViewVariables] public readonly List Beacons = new(); - - [ViewVariables] public readonly List Airlocks = new(); + /// + /// List of station beacons. + /// + [ViewVariables] + public HashSet Beacons = new(); } +[Serializable, NetSerializable] public sealed class NavMapChunk { + /// + /// The chunk origin + /// public readonly Vector2i Origin; /// - /// Bitmask for tiles, 1 for occupied and 0 for empty. + /// Bitmask for tiles, 1 for occupied and 0 for empty. There is a bitmask for each cardinal direction, + /// representing each edge of the tile, in case the entities inside it do not entirely fill it /// - public int TileData; + public Dictionary TileData; + + /// + /// The last game tick that the chunk was updated + /// + [NonSerialized] + public GameTick LastUpdate; public NavMapChunk(Vector2i origin) { Origin = origin; + + TileData = new() + { + [AtmosDirection.North] = 0, + [AtmosDirection.East] = 0, + [AtmosDirection.South] = 0, + [AtmosDirection.West] = 0, + }; } } + +public enum NavMapChunkType : byte +{ + Invalid, + Floor, + Wall, + Airlock, +} diff --git a/Content.Shared/Pinpointer/SharedNavMapSystem.cs b/Content.Shared/Pinpointer/SharedNavMapSystem.cs index 17f86ac7e6..ebc4f33f0f 100644 --- a/Content.Shared/Pinpointer/SharedNavMapSystem.cs +++ b/Content.Shared/Pinpointer/SharedNavMapSystem.cs @@ -1,13 +1,38 @@ +using System.Diagnostics.CodeAnalysis; using System.Numerics; +using Content.Shared.Atmos; +using Content.Shared.Tag; +using Robust.Shared.GameStates; using Robust.Shared.Serialization; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Shared.Pinpointer; public abstract class SharedNavMapSystem : EntitySystem { + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + public const byte ChunkSize = 4; + public readonly NavMapChunkType[] EntityChunkTypes = + { + NavMapChunkType.Invalid, + NavMapChunkType.Wall, + NavMapChunkType.Airlock, + }; + + private readonly string[] _wallTags = ["Wall", "Window"]; + + public override void Initialize() + { + base.Initialize(); + + // Data handling events + SubscribeLocalEvent(OnGetState); + } + /// /// Converts the chunk's tile into a bitflag for the slot. /// @@ -31,19 +56,236 @@ public abstract class SharedNavMapSystem : EntitySystem return new Vector2i(x, y); } - [Serializable, NetSerializable] - protected sealed class NavMapComponentState : ComponentState + public NavMapChunk SetAllEdgesForChunkTile(NavMapChunk chunk, Vector2i tile) { - public Dictionary TileData = new(); + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var flag = (ushort) GetFlag(relative); - public List Beacons = new(); + foreach (var (direction, _) in chunk.TileData) + chunk.TileData[direction] |= flag; - public List Airlocks = new(); + return chunk; + } + + public NavMapChunk UnsetAllEdgesForChunkTile(NavMapChunk chunk, Vector2i tile) + { + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var flag = (ushort) GetFlag(relative); + var invFlag = (ushort) ~flag; + + foreach (var (direction, _) in chunk.TileData) + chunk.TileData[direction] &= invFlag; + + return chunk; + } + + public ushort GetCombinedEdgesForChunk(Dictionary tile) + { + ushort combined = 0; + + foreach (var kvp in tile) + combined |= kvp.Value; + + return combined; + } + + public bool AllTileEdgesAreOccupied(Dictionary tileData, Vector2i tile) + { + var flag = (ushort) GetFlag(tile); + + foreach (var kvp in tileData) + { + if ((kvp.Value & flag) == 0) + return false; + } + + return true; + } + + public NavMapChunkType GetAssociatedEntityChunkType(EntityUid uid) + { + var category = NavMapChunkType.Invalid; + + if (HasComp(uid)) + category = NavMapChunkType.Airlock; + + else if (_tagSystem.HasAnyTag(uid, _wallTags)) + category = NavMapChunkType.Wall; + + return category; + } + + protected bool TryCreateNavMapBeaconData(EntityUid uid, NavMapBeaconComponent component, TransformComponent xform, [NotNullWhen(true)] out NavMapBeacon? beaconData) + { + beaconData = null; + + if (!component.Enabled || xform.GridUid == null || !xform.Anchored) + return false; + + string? name = component.Text; + var meta = MetaData(uid); + + if (string.IsNullOrEmpty(name)) + name = meta.EntityName; + + beaconData = new NavMapBeacon(meta.NetEntity, component.Color, name, xform.LocalPosition) + { + LastUpdate = _gameTiming.CurTick + }; + + return true; + } + + #region: Event handling + + private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) + { + var chunks = new Dictionary<(NavMapChunkType, Vector2i), Dictionary>(); + var beacons = new HashSet(); + + // Should this be a full component state or a delta-state? + if (args.FromTick <= component.CreationTick) + { + foreach (var ((category, origin), chunk) in component.Chunks) + { + var chunkDatum = new Dictionary(chunk.TileData.Count); + + foreach (var (direction, tileData) in chunk.TileData) + chunkDatum[direction] = tileData; + + chunks.Add((category, origin), chunkDatum); + } + + var beaconQuery = AllEntityQuery(); + + while (beaconQuery.MoveNext(out var beaconUid, out var beacon, out var xform)) + { + if (xform.GridUid != uid) + continue; + + if (!TryCreateNavMapBeaconData(beaconUid, beacon, xform, out var beaconData)) + continue; + + beacons.Add(beaconData.Value); + } + + args.State = new NavMapComponentState(chunks, beacons); + return; + } + + foreach (var ((category, origin), chunk) in component.Chunks) + { + if (chunk.LastUpdate < args.FromTick) + continue; + + var chunkDatum = new Dictionary(chunk.TileData.Count); + + foreach (var (direction, tileData) in chunk.TileData) + chunkDatum[direction] = tileData; + + chunks.Add((category, origin), chunkDatum); + } + + foreach (var beacon in component.Beacons) + { + if (beacon.LastUpdate < args.FromTick) + continue; + + beacons.Add(beacon); + } + + args.State = new NavMapComponentState(chunks, beacons) + { + AllChunks = new(component.Chunks.Keys), + AllBeacons = new(component.Beacons) + }; + } + + #endregion + + #region: System messages + + [Serializable, NetSerializable] + protected sealed class NavMapComponentState : ComponentState, IComponentDeltaState + { + public Dictionary<(NavMapChunkType, Vector2i), Dictionary> Chunks = new(); + public HashSet Beacons = new(); + + // Required to infer deleted/missing chunks for delta states + public HashSet<(NavMapChunkType, Vector2i)>? AllChunks; + public HashSet? AllBeacons; + + public NavMapComponentState(Dictionary<(NavMapChunkType, Vector2i), Dictionary> chunks, HashSet beacons) + { + Chunks = chunks; + Beacons = beacons; + } + + public bool FullState => (AllChunks == null || AllBeacons == null); + + public void ApplyToFullState(IComponentState fullState) + { + DebugTools.Assert(!FullState); + var state = (NavMapComponentState) fullState; + DebugTools.Assert(state.FullState); + + // Update chunks + foreach (var key in state.Chunks.Keys) + { + if (!AllChunks!.Contains(key)) + state.Chunks.Remove(key); + } + + foreach (var (chunk, data) in Chunks) + state.Chunks[chunk] = new(data); + + // Update beacons + foreach (var beacon in state.Beacons) + { + if (!AllBeacons!.Contains(beacon)) + state.Beacons.Remove(beacon); + } + + foreach (var beacon in Beacons) + state.Beacons.Add(beacon); + } + + public IComponentState CreateNewFullState(IComponentState fullState) + { + DebugTools.Assert(!FullState); + var state = (NavMapComponentState) fullState; + DebugTools.Assert(state.FullState); + + var chunks = new Dictionary<(NavMapChunkType, Vector2i), Dictionary>(); + var beacons = new HashSet(); + + foreach (var (chunk, data) in Chunks) + chunks[chunk] = new(data); + + foreach (var (chunk, data) in state.Chunks) + { + if (AllChunks!.Contains(chunk)) + chunks.TryAdd(chunk, new(data)); + } + + foreach (var beacon in Beacons) + beacons.Add(new NavMapBeacon(beacon.NetEnt, beacon.Color, beacon.Text, beacon.Position)); + + foreach (var beacon in state.Beacons) + { + if (AllBeacons!.Contains(beacon)) + beacons.Add(new NavMapBeacon(beacon.NetEnt, beacon.Color, beacon.Text, beacon.Position)); + } + + return new NavMapComponentState(chunks, beacons); + } } [Serializable, NetSerializable] - public readonly record struct NavMapBeacon(Color Color, string Text, Vector2 Position); + public record struct NavMapBeacon(NetEntity NetEnt, Color Color, string Text, Vector2 Position) + { + public GameTick LastUpdate; + } - [Serializable, NetSerializable] - public readonly record struct NavMapAirlock(Vector2 Position); + #endregion } diff --git a/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs b/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs new file mode 100644 index 0000000000..2b9fba7b39 --- /dev/null +++ b/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Polymorph.Components; + +/// +/// Component added to disguise entities. +/// Used by client to copy over appearance from the disguise's source entity. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class ChameleonDisguiseComponent : Component +{ + /// + /// The disguise source entity for copying the sprite. + /// + [DataField, AutoNetworkedField] + public EntityUid SourceEntity; + + /// + /// The source entity's prototype. + /// Used as a fallback if the source entity was deleted. + /// + [DataField, AutoNetworkedField] + public EntProtoId? SourceProto; +} diff --git a/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs b/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs new file mode 100644 index 0000000000..239b5236f2 --- /dev/null +++ b/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs @@ -0,0 +1,68 @@ +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Systems; +using Content.Shared.Whitelist; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Polymorph.Components; + +/// +/// A chameleon projector polymorphs you into a clicked entity, then polymorphs back when clicked on or destroyed. +/// This creates a new dummy polymorph entity and copies the appearance over. +/// +[RegisterComponent, Access(typeof(SharedChameleonProjectorSystem))] +public sealed partial class ChameleonProjectorComponent : Component +{ + /// + /// If non-null, whitelist for valid entities to disguise as. + /// + [DataField(required: true)] + public EntityWhitelist? Whitelist; + + /// + /// If non-null, blacklist that prevents entities from being used even if they are in the whitelist. + /// + [DataField(required: true)] + public EntityWhitelist? Blacklist; + + /// + /// Polymorph configuration for the disguise entity. + /// + [DataField(required: true)] + public PolymorphConfiguration Polymorph = new(); + + /// + /// Action for disabling your disguise's rotation. + /// + [DataField] + public EntProtoId NoRotAction = "ActionDisguiseNoRot"; + + /// + /// Action for anchoring your disguise in place. + /// + [DataField] + public EntProtoId AnchorAction = "ActionDisguiseAnchor"; + + /// + /// Minimum health to give the disguise. + /// + [DataField] + public float MinHealth = 1f; + + /// + /// Maximum health to give the disguise, health scales with mass. + /// + [DataField] + public float MaxHealth = 100f; + + /// + /// Popup shown to the user when they try to disguise as an invalid entity. + /// + [DataField] + public LocId InvalidPopup = "chameleon-projector-invalid"; + + /// + /// Popup shown to the user when they disguise as a valid entity. + /// + [DataField] + public LocId SuccessPopup = "chameleon-projector-success"; +} diff --git a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs new file mode 100644 index 0000000000..c1abfc526f --- /dev/null +++ b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs @@ -0,0 +1,113 @@ +using Content.Shared.Actions; +using Content.Shared.Interaction; +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Components; +using Content.Shared.Popups; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Prototypes; +using System.Diagnostics.CodeAnalysis; + +namespace Content.Shared.Polymorph.Systems; + +/// +/// Handles whitelist/blacklist checking. +/// Actual polymorphing and deactivation is done serverside. +/// +public abstract class SharedChameleonProjectorSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly ISerializationManager _serMan = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInteract); + } + + private void OnInteract(Entity ent, ref AfterInteractEvent args) + { + if (!args.CanReach || args.Target is not {} target) + return; + + var user = args.User; + args.Handled = true; + + if (IsInvalid(ent.Comp, target)) + { + _popup.PopupClient(Loc.GetString(ent.Comp.InvalidPopup), target, user); + return; + } + + _popup.PopupClient(Loc.GetString(ent.Comp.SuccessPopup), target, user); + Disguise(ent.Comp, user, target); + } + + /// + /// Returns true if an entity cannot be used as a disguise. + /// + public bool IsInvalid(ChameleonProjectorComponent comp, EntityUid target) + { + return (comp.Whitelist?.IsValid(target, EntityManager) == false) + || (comp.Blacklist?.IsValid(target, EntityManager) == true); + } + + /// + /// On server, polymorphs the user into an entity and sets up the disguise. + /// + public virtual void Disguise(ChameleonProjectorComponent comp, EntityUid user, EntityUid entity) + { + } + + /// + /// Copy a component from the source entity/prototype to the disguise entity. + /// + /// + /// This would probably be a good thing to add to engine in the future. + /// + protected bool CopyComp(Entity ent) where T: Component, new() + { + if (!GetSrcComp(ent.Comp, out var src)) + return true; + + // remove then re-add to prevent a funny + RemComp(ent); + var dest = AddComp(ent); + _serMan.CopyTo(src, ref dest, notNullableOverride: true); + Dirty(ent, dest); + return false; + } + + /// + /// Try to get a single component from the source entity/prototype. + /// + private bool GetSrcComp(ChameleonDisguiseComponent comp, [NotNullWhen(true)] out T? src) where T: Component + { + src = null; + if (TryComp(comp.SourceEntity, out src)) + return true; + + if (comp.SourceProto is not {} protoId) + return false; + + if (!_proto.TryIndex(protoId, out var proto)) + return false; + + return proto.TryGetComponent(out src); + } +} + +/// +/// Action event for toggling transform NoRot on a disguise. +/// +public sealed partial class DisguiseToggleNoRotEvent : InstantActionEvent +{ +} + +/// +/// Action event for toggling transform Anchored on a disguise. +/// +public sealed partial class DisguiseToggleAnchoredEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Preferences/Loadouts/Effects/LoadoutEffectGroupPrototype.cs b/Content.Shared/Preferences/Loadouts/Effects/LoadoutEffectGroupPrototype.cs index 0851be8d37..3bb9d8ab0a 100644 --- a/Content.Shared/Preferences/Loadouts/Effects/LoadoutEffectGroupPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/Effects/LoadoutEffectGroupPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Preferences.Loadouts.Effects; /// Stores a group of loadout effects in a prototype for re-use. /// [Prototype] -public sealed class LoadoutEffectGroupPrototype : IPrototype +public sealed partial class LoadoutEffectGroupPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs b/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs index 63f3b73e15..1d41f8dd7f 100644 --- a/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Preferences.Loadouts; /// Corresponds to a set of loadouts for a particular slot. /// [Prototype("loadoutGroup")] -public sealed class LoadoutGroupPrototype : IPrototype +public sealed partial class LoadoutGroupPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Preferences/Loadouts/LoadoutPrototype.cs b/Content.Shared/Preferences/Loadouts/LoadoutPrototype.cs index 43aedd84a1..90b000d181 100644 --- a/Content.Shared/Preferences/Loadouts/LoadoutPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/LoadoutPrototype.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Preferences.Loadouts; /// Individual loadout item to be applied. /// [Prototype] -public sealed class LoadoutPrototype : IPrototype +public sealed partial class LoadoutPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; diff --git a/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs b/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs index 58e0279251..36619ab104 100644 --- a/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/RoleLoadoutPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Preferences.Loadouts; /// Corresponds to a Job / Antag prototype and specifies loadouts /// [Prototype] -public sealed class RoleLoadoutPrototype : IPrototype +public sealed partial class RoleLoadoutPrototype : IPrototype { /* * Separate to JobPrototype / AntagPrototype as they are turning into messy god classes. diff --git a/Content.Shared/RCD/RCDPrototype.cs b/Content.Shared/RCD/RCDPrototype.cs index 1e80abfb72..58093bbe87 100644 --- a/Content.Shared/RCD/RCDPrototype.cs +++ b/Content.Shared/RCD/RCDPrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.RCD; /// Contains the parameters for a RCD construction / operation /// [Prototype("rcd")] -public sealed class RCDPrototype : IPrototype +public sealed partial class RCDPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; @@ -51,7 +51,7 @@ public sealed class RCDPrototype : IPrototype public int Cost { get; private set; } = 1; /// - /// The length of the operation + /// The length of the operation /// [DataField, ViewVariables(VVAccess.ReadOnly)] public float Delay { get; private set; } = 1f; @@ -75,7 +75,7 @@ public sealed class RCDPrototype : IPrototype public CollisionGroup CollisionMask { get; private set; } = CollisionGroup.None; /// - /// Specifies a set of custom collision bounds for determining whether the entity prototype will fit into a target tile + /// Specifies a set of custom collision bounds for determining whether the entity prototype will fit into a target tile /// /// /// Should be set assuming that the entity faces south. @@ -106,7 +106,7 @@ public sealed class RCDPrototype : IPrototype private Box2? _collisionBounds = null; /// - /// The polygon shape associated with the prototype CollisionBounds (if set) + /// The polygon shape associated with the prototype CollisionBounds (if set) /// [ViewVariables(VVAccess.ReadOnly)] public PolygonShape? CollisionPolygon { get; private set; } = null; diff --git a/Content.Shared/Salvage/SalvageMapPrototype.cs b/Content.Shared/Salvage/SalvageMapPrototype.cs index 518b64dafa..63a3164556 100644 --- a/Content.Shared/Salvage/SalvageMapPrototype.cs +++ b/Content.Shared/Salvage/SalvageMapPrototype.cs @@ -4,7 +4,7 @@ using Robust.Shared.Utility; namespace Content.Shared.Salvage; [Prototype] -public sealed class SalvageMapPrototype : IPrototype +public sealed partial class SalvageMapPrototype : IPrototype { [ViewVariables] [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs index f6407be5c7..5e5df448b3 100644 --- a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs +++ b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs @@ -58,7 +58,7 @@ public partial class SiliconLaw : IComparable /// [Prototype("siliconLaw")] [Serializable, NetSerializable] -public sealed class SiliconLawPrototype : SiliconLaw, IPrototype +public sealed partial class SiliconLawPrototype : SiliconLaw, IPrototype { /// [IdDataField] diff --git a/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs b/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs index 3553597c52..b61aa037cc 100644 --- a/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs +++ b/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.SprayPainter.Prototypes; /// Maps airlock style names to department ids. /// [Prototype("airlockDepartments")] -public sealed class AirlockDepartmentsPrototype : IPrototype +public sealed partial class AirlockDepartmentsPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/StatusIcon/StatusIconPrototype.cs b/Content.Shared/StatusIcon/StatusIconPrototype.cs index 145b443051..2bd13b9361 100644 --- a/Content.Shared/StatusIcon/StatusIconPrototype.cs +++ b/Content.Shared/StatusIcon/StatusIconPrototype.cs @@ -58,7 +58,7 @@ public partial class StatusIconData : IComparable /// but in new convenient prototype form! /// [Prototype("statusIcon")] -public sealed class StatusIconPrototype : StatusIconData, IPrototype, IInheritingPrototype +public sealed partial class StatusIconPrototype : StatusIconData, IPrototype, IInheritingPrototype { /// [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 9d364dded0..2021dfe2de 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -3,13 +3,14 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.ActionBlocker; using Content.Shared.Containers.ItemSlots; -using Content.Shared.Coordinates; using Content.Shared.Destructible; using Content.Shared.DoAfter; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Implants.Components; +using Content.Shared.Input; using Content.Shared.Interaction; +using Content.Shared.Inventory; using Content.Shared.Item; using Content.Shared.Lock; using Content.Shared.Materials; @@ -22,7 +23,9 @@ using Content.Shared.Verbs; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; +using Robust.Shared.Input.Binding; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization; @@ -41,6 +44,7 @@ public abstract class SharedStorageSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] protected readonly SharedItemSystem ItemSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; @@ -62,9 +66,14 @@ public abstract class SharedStorageSystem : EntitySystem public bool CheckingCanInsert; + private List _entList = new(); + private HashSet _entSet = new(); + private readonly List _sortedSizes = new(); private FrozenDictionary _nextSmallest = FrozenDictionary.Empty; + protected readonly List CantFillReasons = []; + /// public override void Initialize() { @@ -101,6 +110,11 @@ public abstract class SharedStorageSystem : EntitySystem SubscribeLocalEvent(OnReclaimed); + CommandBinds.Builder + .Bind(ContentKeyFunctions.OpenBackpack, InputCmdHandler.FromDelegate(HandleOpenBackpack, handle: false)) + .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt, handle: false)) + .Register(); + UpdatePrototypeCache(); } @@ -261,36 +275,40 @@ public abstract class SharedStorageSystem : EntitySystem /// private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInteractEvent args) { - if (args.Handled || !args.CanReach) + if (args.Handled || !args.CanReach || !UseDelay.TryResetDelay(uid, checkDelayed: true)) return; // Pick up all entities in a radius around the clicked location. // The last half of the if is because carpets exist and this is terrible if (storageComp.AreaInsert && (args.Target == null || !HasComp(args.Target.Value))) { - var validStorables = new List(); + _entList.Clear(); + _entSet.Clear(); + _entityLookupSystem.GetEntitiesInRange(args.ClickLocation, storageComp.AreaInsertRadius, _entSet, LookupFlags.Dynamic | LookupFlags.Sundries); var delay = 0f; - foreach (var entity in _entityLookupSystem.GetEntitiesInRange(args.ClickLocation, storageComp.AreaInsertRadius, LookupFlags.Dynamic | LookupFlags.Sundries)) + foreach (var entity in _entSet) { if (entity == args.User - // || !_itemQuery.HasComponent(entity) - || !TryComp(entity, out var itemComp) // Need comp to get item size to get weight + || !_itemQuery.TryGetComponent(entity, out var itemComp) // Need comp to get item size to get weight || !_prototype.TryIndex(itemComp.Size, out var itemSize) - || !CanInsert(uid, entity, out _, storageComp) + || !CanInsert(uid, entity, out _, storageComp, item: itemComp) || !_interactionSystem.InRangeUnobstructed(args.User, entity)) { continue; } - validStorables.Add(entity); + _entList.Add(entity); delay += itemSize.Weight * AreaInsertDelayPerItem; + + if (_entList.Count >= StorageComponent.AreaPickupLimit) + break; } //If there's only one then let's be generous - if (validStorables.Count > 1) + if (_entList.Count > 1) { - var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(validStorables)), uid, target: uid) + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(_entList)), uid, target: uid) { BreakOnDamage = true, BreakOnMove = true, @@ -312,7 +330,7 @@ public abstract class SharedStorageSystem : EntitySystem if (_containerSystem.IsEntityInContainer(target) || target == args.User - || !HasComp(target)) + || !_itemQuery.HasComponent(target)) { return; } @@ -330,10 +348,10 @@ public abstract class SharedStorageSystem : EntitySystem args.Handled = true; if (PlayerInsertEntityInWorld((uid, storageComp), args.User, target)) { - RaiseNetworkEvent(new AnimateInsertingEntitiesEvent(GetNetEntity(uid), + EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent(GetNetEntity(uid), new List { GetNetEntity(target) }, new List { GetNetCoordinates(position) }, - new List { transformOwner.LocalRotation })); + new List { transformOwner.LocalRotation }), args.User); } } } @@ -348,20 +366,27 @@ public abstract class SharedStorageSystem : EntitySystem var successfullyInserted = new List(); var successfullyInsertedPositions = new List(); var successfullyInsertedAngles = new List(); - _xformQuery.TryGetComponent(uid, out var xform); - foreach (var netEntity in args.Entities) + if (!_xformQuery.TryGetComponent(uid, out var xform)) { - var entity = GetEntity(netEntity); + return; + } + + var entCount = Math.Min(StorageComponent.AreaPickupLimit, args.Entities.Count); + + for (var i = 0; i < entCount; i++) + { + var entity = GetEntity(args.Entities[i]); // Check again, situation may have changed for some entities, but we'll still pick up any that are valid if (_containerSystem.IsEntityInContainer(entity) || entity == args.Args.User || !_itemQuery.HasComponent(entity)) + { continue; + } - if (xform == null || - !_xformQuery.TryGetComponent(entity, out var targetXform) || + if (!_xformQuery.TryGetComponent(entity, out var targetXform) || targetXform.MapID != xform.MapID) { continue; @@ -386,12 +411,12 @@ public abstract class SharedStorageSystem : EntitySystem // If we picked up at least one thing, play a sound and do a cool animation! if (successfullyInserted.Count > 0) { - Audio.PlayPvs(component.StorageInsertSound, uid); - RaiseNetworkEvent(new AnimateInsertingEntitiesEvent( + Audio.PlayPredicted(component.StorageInsertSound, uid, args.User); + EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent( GetNetEntity(uid), GetNetEntityList(successfullyInserted), GetNetCoordinatesList(successfullyInsertedPositions), - successfullyInsertedAngles)); + successfullyInsertedAngles), args.User); } args.Handled = true; @@ -628,8 +653,15 @@ public abstract class SharedStorageSystem : EntitySystem if (CheckingCanInsert) return; - if (!CanInsert(uid, args.EntityUid, out _, component, ignoreStacks: true)) + if (!CanInsert(uid, args.EntityUid, out var reason, component, ignoreStacks: true)) + { +#if DEBUG + if (reason != null) + CantFillReasons.Add(reason); +#endif + args.Cancel(); + } } public void UpdateAppearance(Entity entity) @@ -1072,7 +1104,7 @@ public abstract class SharedStorageSystem : EntitySystem for (int i = 0; i < list.Count; i++) { var saved = list[i]; - + if (saved == location) { list.Remove(location); @@ -1259,6 +1291,40 @@ public abstract class SharedStorageSystem : EntitySystem } } + private void HandleOpenBackpack(ICommonSession? session) + { + HandleOpenSlotUI(session, "back"); + } + + private void HandleOpenBelt(ICommonSession? session) + { + HandleOpenSlotUI(session, "belt"); + } + + private void HandleOpenSlotUI(ICommonSession? session, string slot) + { + if (session is not { } playerSession) + return; + + if (playerSession.AttachedEntity is not {Valid: true} playerEnt || !Exists(playerEnt)) + return; + + if (!_inventory.TryGetSlotEntity(playerEnt, slot, out var storageEnt)) + return; + + if (!ActionBlocker.CanInteract(playerEnt, storageEnt)) + return; + + OpenStorageUI(storageEnt.Value, playerEnt); + } + + protected void ClearCantFillReasons() + { +#if DEBUG + CantFillReasons.Clear(); +#endif + } + /// /// Plays a clientside pickup animation for the specified uid. /// diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 2cae12f07a..16987f1de0 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -60,6 +60,11 @@ namespace Content.Shared.Storage [DataField] public bool ClickInsert = true; // Can insert stuff by clicking the storage entity with it + /// + /// How many entities area pickup can pickup at once. + /// + public const int AreaPickupLimit = 10; + [DataField] public bool AreaInsert; // Clicking with the storage entity causes it to insert all nearby storables after a delay diff --git a/Content.Shared/Tools/Components/SharedWelderComponent.cs b/Content.Shared/Tools/Components/SharedWelderComponent.cs deleted file mode 100644 index 78c1cde201..0000000000 --- a/Content.Shared/Tools/Components/SharedWelderComponent.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Tools.Components -{ - [NetworkedComponent] - public abstract partial class SharedWelderComponent : Component { } - - [NetSerializable, Serializable] - public sealed class WelderComponentState : ComponentState - { - public float FuelCapacity { get; } - public float Fuel { get; } - - public WelderComponentState(float fuelCapacity, float fuel) - { - FuelCapacity = fuelCapacity; - Fuel = fuel; - } - } -} diff --git a/Content.Shared/Tools/Components/SharedWeldable.cs b/Content.Shared/Tools/Components/WeldableComponent.cs similarity index 55% rename from Content.Shared/Tools/Components/SharedWeldable.cs rename to Content.Shared/Tools/Components/WeldableComponent.cs index 701bd4d8da..e491b5f6a7 100644 --- a/Content.Shared/Tools/Components/SharedWeldable.cs +++ b/Content.Shared/Tools/Components/WeldableComponent.cs @@ -1,6 +1,6 @@ using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Tools.Components; @@ -10,29 +10,31 @@ public sealed partial class WeldableComponent : Component /// /// Tool quality for welding. /// - [DataField("weldingQuality", customTypeSerializer: typeof(PrototypeIdSerializer))] - [ViewVariables(VVAccess.ReadWrite)] - public string WeldingQuality = "Welding"; + [DataField] + public ProtoId WeldingQuality = "Welding"; /// /// How much time does it take to weld/unweld entity. /// - [DataField("time")] - [ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public TimeSpan WeldingTime = TimeSpan.FromSeconds(1f); + [DataField, AutoNetworkedField] + public TimeSpan Time = TimeSpan.FromSeconds(1f); + + /// + /// How much fuel does it take to weld/unweld entity. + /// + [DataField] + public float Fuel = 3f; /// /// Shown when welded entity is examined. /// - [DataField("weldedExamineMessage")] - [ViewVariables(VVAccess.ReadWrite)] - public string? WeldedExamineMessage = "weldable-component-examine-is-welded"; + [DataField] + public LocId? WeldedExamineMessage = "weldable-component-examine-is-welded"; /// /// Is this entity currently welded shut? /// - [DataField("isWelded"), AutoNetworkedField] + [DataField, AutoNetworkedField] public bool IsWelded; } diff --git a/Content.Shared/Tools/Components/WelderComponent.cs b/Content.Shared/Tools/Components/WelderComponent.cs new file mode 100644 index 0000000000..3c78a03fde --- /dev/null +++ b/Content.Shared/Tools/Components/WelderComponent.cs @@ -0,0 +1,58 @@ +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; +using Content.Shared.Tools.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Tools.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true), Access(typeof(SharedToolSystem))] +public sealed partial class WelderComponent : Component +{ + [DataField, AutoNetworkedField] + public bool Enabled; + + [DataField] + public float WelderTimer; + + /// + /// Name of . + /// + [DataField] + public string FuelSolutionName = "Welder"; + + /// + /// Reagent that will be used as fuel for welding. + /// + [DataField] + public ProtoId FuelReagent = "WeldingFuel"; + + /// + /// Fuel consumption per second while the welder is active. + /// + [DataField, AutoNetworkedField] + public FixedPoint2 FuelConsumption = FixedPoint2.New(1.0f); + + /// + /// A fuel amount to be consumed when the welder goes from being unlit to being lit. + /// + [DataField, AutoNetworkedField] + public FixedPoint2 FuelLitCost = FixedPoint2.New(0.5f); + + /// + /// Sound played when refilling the welder. + /// + [DataField] + public SoundSpecifier WelderRefill = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); + + /// + /// Whether the item is safe to refill while lit without exploding the tank. + /// + [DataField] + public bool TankSafe; + + [DataField] + public float WelderUpdateTimer = 1f; +} diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs b/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs new file mode 100644 index 0000000000..e790b59cd1 --- /dev/null +++ b/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs @@ -0,0 +1,178 @@ +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Database; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Shared.FixedPoint; +using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Tools.Components; + +namespace Content.Shared.Tools.Systems; + +public abstract partial class SharedToolSystem +{ + public void InitializeWelder() + { + SubscribeLocalEvent(OnWelderExamine); + SubscribeLocalEvent(OnWelderAfterInteract); + SubscribeLocalEvent>(OnWelderToolUseAttempt); + SubscribeLocalEvent(OnWelderDoAfter); + SubscribeLocalEvent(OnToggle); + SubscribeLocalEvent(OnActivateAttempt); + } + + public virtual void TurnOn(Entity entity, EntityUid? user) + { + if (!SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out var solutionComp, out _)) + return; + + SolutionContainerSystem.RemoveReagent(solutionComp.Value, entity.Comp.FuelReagent, entity.Comp.FuelLitCost); + AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, + $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} on"); + + entity.Comp.Enabled = true; + Dirty(entity, entity.Comp); + } + + public void TurnOff(Entity entity, EntityUid? user) + { + AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, + $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} off"); + entity.Comp.Enabled = false; + Dirty(entity, entity.Comp); + } + + public (FixedPoint2 fuel, FixedPoint2 capacity) GetWelderFuelAndCapacity(EntityUid uid, WelderComponent? welder = null, SolutionContainerManagerComponent? solutionContainer = null) + { + if (!Resolve(uid, ref welder, ref solutionContainer)) + return default; + + if (!SolutionContainer.TryGetSolution( + (uid, solutionContainer), + welder.FuelSolutionName, + out _, + out var fuelSolution)) + { + return default; + } + + return (fuelSolution.GetTotalPrototypeQuantity(welder.FuelReagent), fuelSolution.MaxVolume); + } + + private void OnWelderExamine(Entity entity, ref ExaminedEvent args) + { + using (args.PushGroup(nameof(WelderComponent))) + { + if (ItemToggle.IsActivated(entity.Owner)) + { + args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-lit-message")); + } + else + { + args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-not-lit-message")); + } + + if (args.IsInDetailsRange) + { + var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); + + args.PushMarkup(Loc.GetString("welder-component-on-examine-detailed-message", + ("colorName", fuel < capacity / FixedPoint2.New(4f) ? "darkorange" : "orange"), + ("fuelLeft", fuel), + ("fuelCapacity", capacity), + ("status", string.Empty))); // Lit status is handled above + } + } + } + + private void OnWelderAfterInteract(Entity entity, ref AfterInteractEvent args) + { + if (args.Handled) + return; + + if (args.Target is not { Valid: true } target || !args.CanReach) + return; + + if (TryComp(target, out ReagentTankComponent? tank) + && tank.TankType == ReagentTankType.Fuel + && SolutionContainerSystem.TryGetDrainableSolution(target, out var targetSoln, out var targetSolution) + && SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out var solutionComp, out var welderSolution)) + { + var trans = FixedPoint2.Min(welderSolution.AvailableVolume, targetSolution.Volume); + if (trans > 0) + { + var drained = SolutionContainerSystem.Drain(target, targetSoln.Value, trans); + SolutionContainerSystem.TryAddSolution(solutionComp.Value, drained); + _audioSystem.PlayPredicted(entity.Comp.WelderRefill, entity, user: args.User); + _popup.PopupClient(Loc.GetString("welder-component-after-interact-refueled-message"), entity, args.User); + } + else if (welderSolution.AvailableVolume <= 0) + { + _popup.PopupClient(Loc.GetString("welder-component-already-full"), entity, args.User); + } + else + { + _popup.PopupClient(Loc.GetString("welder-component-no-fuel-in-tank", ("owner", args.Target)), entity, args.User); + } + + args.Handled = true; + } + } + + private void OnWelderToolUseAttempt(Entity entity, ref DoAfterAttemptEvent args) + { + var user = args.DoAfter.Args.User; + + if (!ItemToggle.IsActivated(entity.Owner)) + { + _popup.PopupClient(Loc.GetString("welder-component-welder-not-lit-message"), entity, user); + args.Cancel(); + return; + } + + var (fuel, _) = GetWelderFuelAndCapacity(entity); + + if (args.Event.Fuel > fuel) + { + _popup.PopupClient(Loc.GetString("welder-component-cannot-weld-message"), entity, user); + args.Cancel(); + } + } + + private void OnWelderDoAfter(Entity ent, ref ToolDoAfterEvent args) + { + if (args.Cancelled) + return; + + if (!SolutionContainerSystem.TryGetSolution(ent.Owner, ent.Comp.FuelSolutionName, out var solution)) + return; + + SolutionContainerSystem.RemoveReagent(solution.Value, ent.Comp.FuelReagent, FixedPoint2.New(args.Fuel)); + } + + private void OnToggle(Entity entity, ref ItemToggledEvent args) + { + if (args.Activated) + TurnOn(entity, args.User); + else + TurnOff(entity, args.User); + } + + private void OnActivateAttempt(Entity entity, ref ItemToggleActivateAttemptEvent args) + { + if (!SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out _, out var solution)) + { + args.Cancelled = true; + args.Popup = Loc.GetString("welder-component-no-fuel-message"); + return; + } + + var fuel = solution.GetTotalPrototypeQuantity(entity.Comp.FuelReagent); + if (fuel == FixedPoint2.Zero || fuel < entity.Comp.FuelLitCost) + { + args.Popup = Loc.GetString("welder-component-no-fuel-message"); + args.Cancelled = true; + } + } +} diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index 4204d7547e..9edae9b78f 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -1,8 +1,12 @@ using Content.Shared.Administration.Logs; +using Content.Shared.Chemistry.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle; using Content.Shared.Maps; +using Content.Shared.Popups; using Content.Shared.Tools.Components; +using JetBrains.Annotations; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -15,20 +19,25 @@ public abstract partial class SharedToolSystem : EntitySystem { [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _protoMan = default!; - [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; + [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedInteractionSystem InteractionSystem = default!; + [Dependency] protected readonly SharedItemToggleSystem ItemToggle = default!; [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainerSystem = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly TileSystem _tiles = default!; [Dependency] private readonly TurfSystem _turfs = default!; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainer = default!; public override void Initialize() { InitializeMultipleTool(); InitializeTile(); + InitializeWelder(); SubscribeLocalEvent(OnDoAfter); } @@ -66,6 +75,7 @@ public abstract partial class SharedToolSystem : EntitySystem /// The qualities needed for this tool to work. /// The event that will be raised when the tool has finished (including cancellation). Event /// will be directed at the tool target. + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -75,6 +85,7 @@ public abstract partial class SharedToolSystem : EntitySystem float doAfterDelay, IEnumerable toolQualitiesNeeded, DoAfterEvent doAfterEv, + float fuel = 0, ToolComponent? toolComponent = null) { return UseTool(tool, @@ -84,6 +95,7 @@ public abstract partial class SharedToolSystem : EntitySystem toolQualitiesNeeded, doAfterEv, out _, + fuel, toolComponent); } @@ -101,6 +113,7 @@ public abstract partial class SharedToolSystem : EntitySystem /// will be directed at the tool target. /// The id of the DoAfter that was created. This may be null even if the function returns true in /// the event that this tool-use cancelled an existing DoAfter + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -111,31 +124,30 @@ public abstract partial class SharedToolSystem : EntitySystem IEnumerable toolQualitiesNeeded, DoAfterEvent doAfterEv, out DoAfterId? id, + float fuel = 0, ToolComponent? toolComponent = null) { id = null; if (!Resolve(tool, ref toolComponent, false)) return false; - if (!CanStartToolUse(tool, user, target, toolQualitiesNeeded, toolComponent)) + if (!CanStartToolUse(tool, user, target, fuel, toolQualitiesNeeded, toolComponent)) return false; - var toolEvent = new ToolDoAfterEvent(doAfterEv, GetNetEntity(target)); + var toolEvent = new ToolDoAfterEvent(fuel, doAfterEv, GetNetEntity(target)); var doAfterArgs = new DoAfterArgs(EntityManager, user, delay / toolComponent.SpeedModifier, toolEvent, tool, target: target, used: tool) { BreakOnDamage = true, BreakOnMove = true, BreakOnWeightlessMove = false, NeedHand = tool != user, - AttemptFrequency = IsWelder(tool) ? AttemptFrequency.EveryTick : AttemptFrequency.Never + AttemptFrequency = fuel > 0 ? AttemptFrequency.EveryTick : AttemptFrequency.Never }; _doAfterSystem.TryStartDoAfter(doAfterArgs, out id); return true; } - protected abstract bool IsWelder(EntityUid uid); - /// /// Attempts to use a tool on some entity, which will start a DoAfter. Returns true if an interaction occurred. /// Note that this does not mean the interaction was successful, you need to listen for the DoAfter event. @@ -148,6 +160,7 @@ public abstract partial class SharedToolSystem : EntitySystem /// The quality needed for this tool to work. /// The event that will be raised when the tool has finished (including cancellation). Event /// will be directed at the tool target. + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -157,6 +170,7 @@ public abstract partial class SharedToolSystem : EntitySystem float doAfterDelay, string toolQualityNeeded, DoAfterEvent doAfterEv, + float fuel = 0, ToolComponent? toolComponent = null) { return UseTool(tool, @@ -166,6 +180,7 @@ public abstract partial class SharedToolSystem : EntitySystem new[] { toolQualityNeeded }, doAfterEv, out _, + fuel, toolComponent); } @@ -180,12 +195,13 @@ public abstract partial class SharedToolSystem : EntitySystem /// /// Whether a tool entity has all specified qualities or not. /// + [PublicAPI] public bool HasAllQualities(EntityUid uid, IEnumerable qualities, ToolComponent? tool = null) { return Resolve(uid, ref tool, false) && tool.Qualities.ContainsAll(qualities); } - private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, IEnumerable toolQualitiesNeeded, ToolComponent? toolComponent = null) + private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, float fuel, IEnumerable toolQualitiesNeeded, ToolComponent? toolComponent = null) { if (!Resolve(tool, ref toolComponent)) return false; @@ -220,6 +236,9 @@ public abstract partial class SharedToolSystem : EntitySystem [Serializable, NetSerializable] protected sealed partial class ToolDoAfterEvent : DoAfterEvent { + [DataField] + public float Fuel; + /// /// Entity that the wrapped do after event will get directed at. If null, event will be broadcast. /// @@ -233,10 +252,11 @@ public abstract partial class SharedToolSystem : EntitySystem { } - public ToolDoAfterEvent(DoAfterEvent wrappedEvent, NetEntity? originalTarget) + public ToolDoAfterEvent(float fuel, DoAfterEvent wrappedEvent, NetEntity? originalTarget) { DebugTools.Assert(wrappedEvent.GetType().HasCustomAttribute(), "Tool event is not serializable"); + Fuel = fuel; WrappedEvent = wrappedEvent; OriginalTarget = originalTarget; } @@ -249,14 +269,14 @@ public abstract partial class SharedToolSystem : EntitySystem if (evClone == WrappedEvent) return this; - return new ToolDoAfterEvent(evClone, OriginalTarget); + return new ToolDoAfterEvent(Fuel, evClone, OriginalTarget); } } [Serializable, NetSerializable] protected sealed partial class LatticeCuttingCompleteEvent : DoAfterEvent { - [DataField("coordinates", required:true)] + [DataField(required:true)] public NetCoordinates Coordinates; private LatticeCuttingCompleteEvent() @@ -273,9 +293,7 @@ public abstract partial class SharedToolSystem : EntitySystem } [Serializable, NetSerializable] -public sealed partial class CableCuttingFinishedEvent : SimpleDoAfterEvent -{ -} +public sealed partial class CableCuttingFinishedEvent : SimpleDoAfterEvent; #endregion diff --git a/Content.Shared/Tools/Systems/WeldableSystem.cs b/Content.Shared/Tools/Systems/WeldableSystem.cs index b0ea68f713..c6c47d539e 100644 --- a/Content.Shared/Tools/Systems/WeldableSystem.cs +++ b/Content.Shared/Tools/Systems/WeldableSystem.cs @@ -69,7 +69,7 @@ public sealed class WeldableSystem : EntitySystem if (!CanWeld(uid, tool, user, component)) return false; - if (!_toolSystem.UseTool(tool, user, uid, component.WeldingTime.Seconds, component.WeldingQuality, new WeldFinishedEvent())) + if (!_toolSystem.UseTool(tool, user, uid, component.Time.Seconds, component.WeldingQuality, new WeldFinishedEvent(), component.Fuel)) return false; // Log attempt @@ -140,10 +140,10 @@ public sealed class WeldableSystem : EntitySystem if (!_query.Resolve(uid, ref component)) return; - if (component.WeldingTime.Equals(time)) + if (component.Time.Equals(time)) return; - component.WeldingTime = time; + component.Time = time; Dirty(uid, component); } } diff --git a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs index 618d77f133..58e9092d29 100644 --- a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs +++ b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs @@ -157,6 +157,14 @@ public sealed partial class MeleeWeaponComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("soundNoDamage"), AutoNetworkedField] public SoundSpecifier NoDamageSound { get; set; } = new SoundCollectionSpecifier("WeakHit"); + + /// + /// If true, the weapon must be equipped for it to be used. + /// E.g boxing gloves must be equipped to your gloves, + /// not just held in your hand to be used. + /// + [DataField, AutoNetworkedField] + public bool MustBeEquippedToUse = false; } /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 6effb8b82f..767bc179aa 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -277,7 +277,10 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem if (EntityManager.TryGetComponent(entity, out HandsComponent? hands) && hands.ActiveHandEntity is { } held) { - if (EntityManager.TryGetComponent(held, out melee)) + // Make sure the entity is a weapon AND it doesn't need + // to be equipped to be used (E.g boxing gloves). + if (EntityManager.TryGetComponent(held, out melee) && + !melee.MustBeEquippedToUse) { weaponUid = held; return true; diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs index cecacceda9..07f2a60c84 100644 --- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs +++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs @@ -30,50 +30,40 @@ public sealed class AnalysisConsoleExtractButtonPressedMessage : BoundUserInterf } [Serializable, NetSerializable] -public sealed class AnalysisConsoleScanUpdateState : BoundUserInterfaceState +public sealed class AnalysisConsoleBiasButtonPressedMessage(bool isDown) : BoundUserInterfaceMessage { - public NetEntity? Artifact; - - public bool AnalyzerConnected; - - public bool ServerConnected; - - public bool CanScan; - - public bool CanPrint; - - public FormattedMessage? ScanReport; - - public bool Scanning; - - public bool Paused; - - public TimeSpan? StartTime; - - public TimeSpan? AccumulatedRunTime; - - public TimeSpan? TotalTime; - - public int PointAmount; - - public AnalysisConsoleScanUpdateState(NetEntity? artifact, bool analyzerConnected, bool serverConnected, bool canScan, bool canPrint, - FormattedMessage? scanReport, bool scanning, bool paused, TimeSpan? startTime, TimeSpan? accumulatedRunTime, TimeSpan? totalTime, int pointAmount) - { - Artifact = artifact; - AnalyzerConnected = analyzerConnected; - ServerConnected = serverConnected; - CanScan = canScan; - CanPrint = canPrint; - - ScanReport = scanReport; - - Scanning = scanning; - Paused = paused; - - StartTime = startTime; - AccumulatedRunTime = accumulatedRunTime; - TotalTime = totalTime; - - PointAmount = pointAmount; - } + public bool IsDown = isDown; +} + +[Serializable, NetSerializable] +public sealed class AnalysisConsoleUpdateState( + NetEntity? artifact, + bool analyzerConnected, + bool serverConnected, + bool canScan, + bool canPrint, + FormattedMessage? scanReport, + bool scanning, + bool paused, + TimeSpan? startTime, + TimeSpan? accumulatedRunTime, + TimeSpan? totalTime, + int pointAmount, + bool isTraversalDown +) + : BoundUserInterfaceState +{ + public NetEntity? Artifact = artifact; + public bool AnalyzerConnected = analyzerConnected; + public bool ServerConnected = serverConnected; + public bool CanScan = canScan; + public bool CanPrint = canPrint; + public FormattedMessage? ScanReport = scanReport; + public bool Scanning = scanning; + public bool Paused = paused; + public TimeSpan? StartTime = startTime; + public TimeSpan? AccumulatedRunTime = accumulatedRunTime; + public TimeSpan? TotalTime = totalTime; + public int PointAmount = pointAmount; + public bool IsTraversalDown = isTraversalDown; } diff --git a/Content.Shared/Zombies/ZombieComponent.cs b/Content.Shared/Zombies/ZombieComponent.cs index be3fdbdd01..3673a2c51d 100644 --- a/Content.Shared/Zombies/ZombieComponent.cs +++ b/Content.Shared/Zombies/ZombieComponent.cs @@ -27,7 +27,7 @@ public sealed partial class ZombieComponent : Component, IAntagStatusIconCompone /// being invincible by bundling up. /// [ViewVariables(VVAccess.ReadWrite)] - public float MinZombieInfectionChance = 0.50f; + public float MinZombieInfectionChance = 0.25f; [ViewVariables(VVAccess.ReadWrite)] public float ZombieMovementSpeedDebuff = 0.70f; diff --git a/Content.YAMLLinter/Program.cs b/Content.YAMLLinter/Program.cs index b7b70bd118..b23faa48fc 100644 --- a/Content.YAMLLinter/Program.cs +++ b/Content.YAMLLinter/Program.cs @@ -1,9 +1,11 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Reflection; using System.Threading.Tasks; using Content.IntegrationTests; using Robust.Shared.Prototypes; +using Robust.Shared.Reflection; using Robust.Shared.Serialization.Markdown.Validation; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -103,9 +105,13 @@ namespace Content.YAMLLinter return (yamlErrors, fieldErrors); } - public static async Task<(Dictionary> YamlErrors , List FieldErrors)> + public static async Task<(Dictionary> YamlErrors, List FieldErrors)> RunValidation() { + var (clientAssemblies, serverAssemblies) = await GetClientServerAssemblies(); + var serverTypes = serverAssemblies.SelectMany(n => n.GetTypes()).Select(t => t.Name).ToHashSet(); + var clientTypes = clientAssemblies.SelectMany(n => n.GetTypes()).Select(t => t.Name).ToHashSet(); + var yamlErrors = new Dictionary>(); var serverErrors = await ValidateServer(); @@ -117,9 +123,18 @@ namespace Content.YAMLLinter var newErrors = val.Where(n => n.AlwaysRelevant).ToHashSet(); // We include sometimes-relevant errors if they exist both for the client & server - if (clientErrors.Item1.TryGetValue(key, out var clientVal)) + if (clientErrors.YamlErrors.TryGetValue(key, out var clientVal)) newErrors.UnionWith(val.Intersect(clientVal)); + // Include any errors that relate to server-only types + foreach (var errorNode in val) + { + if (errorNode is FieldNotFoundErrorNode fieldNotFoundNode && !clientTypes.Contains(fieldNotFoundNode.FieldType.Name)) + { + newErrors.Add(errorNode); + } + } + if (newErrors.Count != 0) yamlErrors[key] = newErrors; } @@ -135,6 +150,15 @@ namespace Content.YAMLLinter errors.UnionWith(val.Where(n => n.AlwaysRelevant)); else yamlErrors[key] = newErrors; + + // Include any errors that relate to client-only types + foreach (var errorNode in val) + { + if (errorNode is FieldNotFoundErrorNode fieldNotFoundNode && !serverTypes.Contains(fieldNotFoundNode.FieldType.Name)) + { + newErrors.Add(errorNode); + } + } } // Finally, combine the prototype ID field errors. @@ -145,5 +169,23 @@ namespace Content.YAMLLinter return (yamlErrors, fieldErrors); } + + private static async Task<(Assembly[] clientAssemblies, Assembly[] serverAssemblies)> + GetClientServerAssemblies() + { + await using var pair = await PoolManager.GetServerClient(); + + var result = (GetAssemblies(pair.Client), GetAssemblies(pair.Server)); + + await pair.CleanReturnAsync(); + + return result; + + Assembly[] GetAssemblies(RobustIntegrationTest.IntegrationInstance instance) + { + var refl = instance.ResolveDependency(); + return refl.Assemblies.ToArray(); + } + } } } diff --git a/Resources/Audio/Items/attributions.yml b/Resources/Audio/Items/attributions.yml index c6fea50bd2..675e4fff24 100644 --- a/Resources/Audio/Items/attributions.yml +++ b/Resources/Audio/Items/attributions.yml @@ -93,6 +93,16 @@ copyright: "User Hanbaal on freesound.org. Converted to ogg by TheShuEd" source: "https://freesound.org/people/Hanbaal/sounds/178669/" +- files: ["soda_shake.ogg"] + license: "CC-BY-NC-4.0" + copyright: "User mcmast on freesound.org. Converted and edited by Tayrtahn" + source: "https://freesound.org/people/mcmast/sounds/456703/" + +- files: ["soda_spray.ogg"] + license: "CC0-1.0" + copyright: "User Hajisounds on freesound.org. Converted and edited by Tayrtahn" + source: "https://freesound.org/people/Hajisounds/sounds/709149/" + - files: ["newton_cradle.ogg"] license: "CC-BY-4.0" copyright: "User LoafDV on freesound.org. Converted to ogg end edited by lzk228" diff --git a/Resources/Audio/Items/soda_shake.ogg b/Resources/Audio/Items/soda_shake.ogg new file mode 100644 index 0000000000..a596379c93 Binary files /dev/null and b/Resources/Audio/Items/soda_shake.ogg differ diff --git a/Resources/Audio/Items/soda_spray.ogg b/Resources/Audio/Items/soda_spray.ogg new file mode 100644 index 0000000000..f4a5a3e803 Binary files /dev/null and b/Resources/Audio/Items/soda_spray.ogg differ diff --git a/Resources/Audio/Jukebox/attributions.yml b/Resources/Audio/Jukebox/attributions.yml new file mode 100644 index 0000000000..48e1458c4c --- /dev/null +++ b/Resources/Audio/Jukebox/attributions.yml @@ -0,0 +1,27 @@ +- files: ["sector11.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "-Sector11 by MashedByMachines. Converted to mono OGG." + source: "https://www.newgrounds.com/audio/listen/312622" + +- files: ["mod.flip-flap.ogg"] + license: "Custom" + copyright: "Flip Flap by X-ceed is licensed under a short but clear license (see flip-flap.txt in Audio/Lobby) and is free for non-commercial use. Converted to mono OGG." + source: "http://aminet.net/package/mods/xceed/Flipflap" + +- files: ["title3.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Title3 by Cuboos. It is a remix of the song 'Tintin on the Moon'. Converted to mono OGG." + source: "https://www.youtube.com/watch?v=YKVmXn-Gv0M" + +- files: + - "constellations.ogg" + - "drifting.ogg" + - "starlight.ogg" + license: "CC-BY-3.0" + copyright: "Constellations by Qwertyquerty. Converted to mono OGG." + source: "https://www.youtube.com/channel/UCPYbhBUGhH7n_G4HLK2YipQ" + +- files: ["sunset.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Sunset by PigeonBeans. Exported in Mono OGG." + source: "https://soundcloud.com/pigeonbeans/sunset" \ No newline at end of file diff --git a/Resources/Audio/Jukebox/constellations.ogg b/Resources/Audio/Jukebox/constellations.ogg new file mode 100644 index 0000000000..f177489465 Binary files /dev/null and b/Resources/Audio/Jukebox/constellations.ogg differ diff --git a/Resources/Audio/Jukebox/drifting.ogg b/Resources/Audio/Jukebox/drifting.ogg new file mode 100644 index 0000000000..321c098bbd Binary files /dev/null and b/Resources/Audio/Jukebox/drifting.ogg differ diff --git a/Resources/Audio/Jukebox/flip-flap.ogg b/Resources/Audio/Jukebox/flip-flap.ogg new file mode 100644 index 0000000000..07c47c00be Binary files /dev/null and b/Resources/Audio/Jukebox/flip-flap.ogg differ diff --git a/Resources/Audio/Jukebox/sector11.ogg b/Resources/Audio/Jukebox/sector11.ogg new file mode 100644 index 0000000000..f0ce993b7e Binary files /dev/null and b/Resources/Audio/Jukebox/sector11.ogg differ diff --git a/Resources/Audio/Jukebox/starlight.ogg b/Resources/Audio/Jukebox/starlight.ogg new file mode 100644 index 0000000000..31e23416f9 Binary files /dev/null and b/Resources/Audio/Jukebox/starlight.ogg differ diff --git a/Resources/Audio/Jukebox/sunset.ogg b/Resources/Audio/Jukebox/sunset.ogg new file mode 100644 index 0000000000..3f6d909eaa Binary files /dev/null and b/Resources/Audio/Jukebox/sunset.ogg differ diff --git a/Resources/Audio/Jukebox/title3.ogg b/Resources/Audio/Jukebox/title3.ogg new file mode 100644 index 0000000000..5cfe80b535 Binary files /dev/null and b/Resources/Audio/Jukebox/title3.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index a8a2f143eb..d4ffb79e92 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -152,5 +152,21 @@ Entries: id: 20 time: '2024-04-09T15:25:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26771 +- author: Aexxie + changes: + - message: Removed the bartender's roundstart incendiary shells on Meta. + type: Remove + id: 21 + time: '2024-04-20T01:06:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27142 +- author: nikthechampiongr + changes: + - message: Banpanel default values for ban severities, whether a server ban should + be applied with hwid/ip, whether to use last available details, and whether + to erase the player on ban can now be configured through a Cvar. + type: Tweak + id: 22 + time: '2024-04-20T16:18:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27168 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cc4c3990b3..d623b48d44 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,383 +1,4 @@ Entries: -- author: VasilisThePikachu - changes: - - message: The fridge's explosion resistance has been nerfed significantly, It's - no longer able to survive nukes at point blank range of the nuke. - type: Tweak - id: 5866 - time: '2024-02-01T23:41:43.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24844 -- author: Dygon - changes: - - message: You can't slip through chain link fences anymore. - type: Fix - id: 5867 - time: '2024-02-02T04:24:20.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24850 -- author: Psychpsyo - changes: - - message: You can now turn down the screen shake intensity in the accessibility - settings. - type: Add - id: 5868 - time: '2024-02-02T12:39:13.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24749 -- author: Anzarot121 - changes: - - message: Fixed a problem in the code due to which mobs, including hamsters, slimes, - spiders, xenos, could not pull things. - type: Fix - id: 5869 - time: '2024-02-03T01:25:11.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/22485 -- author: Tayrtahn - changes: - - message: 'Added a new flavor of Donk Pockets: Stonk Pockets' - type: Add - id: 5870 - time: '2024-02-03T01:55:03.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24876 -- author: Hmeister - changes: - - message: The guidebook entry for cargo is now up to date, and some other minor - changes to the guidebook. - type: Tweak - id: 5871 - time: '2024-02-03T02:07:21.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24828 -- author: FairlySadPanda - changes: - - message: The round restart audio, again... - type: Fix - id: 5872 - time: '2024-02-03T02:11:53.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24754 -- author: Adrian16199 - changes: - - message: Added scarfs to the uniform printer. - type: Add - id: 5873 - time: '2024-02-03T02:12:38.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24735 -- author: Jajsha - changes: - - message: Emagged Cyborgs are no longer affected by Ion Storm events. - type: Fix - - message: Improved wording of cyborg laws. - type: Tweak - id: 5874 - time: '2024-02-03T02:29:41.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24870 -- author: metalgearsloth - changes: - - message: Moving entities that are pulled now throws them instead of moving them - manually. - type: Tweak - id: 5875 - time: '2024-02-03T03:36:09.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/20906 -- author: lzk228 - changes: - - message: Soapy water removed. - type: Remove - id: 5876 - time: '2024-02-03T04:23:34.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24301 -- author: Krunk - changes: - - message: Characters can properly select 'None' as a preference for their spawn - priority. - type: Fix - id: 5877 - time: '2024-02-03T08:06:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24897 -- author: Krunk - changes: - - message: Pointing arrows now begin at the player and smoothly animate to their - target. - type: Add - id: 5878 - time: '2024-02-03T08:09:20.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24864 -- author: Dygon - changes: - - message: Single tile sized puddles of space lube won't let you slide extremely - far anymore. - type: Fix - id: 5879 - time: '2024-02-03T08:10:51.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24846 -- author: shampunj - changes: - - message: Fixed incorrect path to the uranium spear image in the construction menu - type: Fix - id: 5880 - time: '2024-02-03T08:11:02.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24895 -- author: nikthechampiongr - changes: - - message: End of round messages no longer loop until the heat death of the universe. - type: Fix - id: 5881 - time: '2024-02-03T16:43:50.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24920 -- author: EmoGarbage404 - changes: - - message: Changed the colors used for chat names. - type: Tweak - id: 5882 - time: '2024-02-03T17:33:58.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24922 -- author: deltanedas - changes: - - message: Dissolved the biochem technology discipline into others and roundstart - availability. - type: Add - id: 5883 - time: '2024-02-03T18:13:30.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24871 -- author: themias - changes: - - message: EMPs temporarily disable suit sensors - type: Tweak - id: 5884 - time: '2024-02-04T00:50:24.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24869 -- author: themias - changes: - - message: Added face bandanas - type: Add - - message: Bandanas can be switched between head and face type with an alt verb - (Fold) - type: Tweak - id: 5885 - time: '2024-02-04T00:52:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24597 -- author: metalgearsloth - changes: - - message: Moving to open lockers is now predicted. - type: Fix - id: 5886 - time: '2024-02-04T02:23:16.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24937 -- author: Tayrtahn - changes: - - message: Added opened/closed visuals and fill levels for a variety of drinks. - type: Add - id: 5887 - time: '2024-02-04T20:13:48.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24600 -- author: deltanedas - changes: - - message: Grilles are no longer incredibly strong. - type: Tweak - id: 5888 - time: '2024-02-04T20:48:06.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24881 -- author: Scribbles0 - changes: - - message: Holoparasites can now autoattack at their max attack rate when holding - down their attack button. - type: Add - id: 5889 - time: '2024-02-04T23:01:49.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24944 -- author: EdenTheLiznerd - changes: - - message: Sectech no longer says "Let's crack communist skulls!" It now says "Let's - crack syndicate skulls!" - type: Tweak - id: 5890 - time: '2024-02-05T12:24:52.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24965 -- author: Varen - changes: - - message: Rebalanced electrocution damage to ramp up slower with power levels. - type: Tweak - id: 5891 - time: '2024-02-05T18:47:52.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24829 -- author: ficcialfaint and deltanedas - changes: - - message: Criminal records and the console that manages them have been added to - the game. They also have a guidebook entry. - type: Add - id: 5892 - time: '2024-02-05T23:03:04.754935+00:00' - url: null -- author: themias - changes: - - message: Outlaw Glasses fully hide your identity again - type: Tweak - id: 5893 - time: '2024-02-05T23:23:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24971 -- author: Emisse - changes: - - message: Nonstandard pens now embed again. (explosive pen good again) - type: Tweak - id: 5894 - time: '2024-02-05T23:30:06.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24849 -- author: FungiFellow - changes: - - message: Altered content of several Borg Modules for QoL - type: Tweak - - message: Removed Gas Analyzer Module - type: Remove - id: 5895 - time: '2024-02-05T23:46:39.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24702 -- author: Rainfey - changes: - - message: Health Analysers now continuously update their UI after scanning a patient - type: Tweak - id: 5896 - time: '2024-02-06T13:20:10.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/22449 -- author: ada-please - changes: - - message: A Surveillance Camera Monitor Board has been added to the Syndicate Observation - Kit. - type: Add - id: 5897 - time: '2024-02-06T16:25:07.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24979 -- author: snebl - changes: - - message: Fixed the glass version of cargo airlock looking like an engineering - door when opened. - type: Fix - id: 5898 - time: '2024-02-06T19:38:39.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25003 -- author: Mangohydra - changes: - - message: New cargo shuttle for fland - type: Tweak - id: 5899 - time: '2024-02-07T08:49:06.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25016 -- author: Ilya246 - changes: - - message: Atmos devices can now be built behind directional windows and on lattice. - type: Tweak - id: 5900 - time: '2024-02-08T23:07:42.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25057 -- author: Ubaser - changes: - - message: T-Ray scanner sprite is tweaked. - type: Tweak - id: 5901 - time: '2024-02-08T23:09:00.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25047 -- author: nikthechampiongr - changes: - - message: Brig timers display their label properly again. - type: Fix - id: 5902 - time: '2024-02-08T23:12:05.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25033 -- author: vero5123 - changes: - - message: fixes mop buckets being indestructible. - type: Fix - id: 5903 - time: '2024-02-08T23:15:12.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25001 -- author: Adrian16199 - changes: - - message: Added a straw hat that can be crafted with wheat. - type: Add - id: 5904 - time: '2024-02-08T23:17:01.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24997 -- author: Sk1tch - changes: - - message: Guidebook entries are now alphabetically sorted - type: Tweak - id: 5905 - time: '2024-02-08T23:23:35.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24963 -- author: FairlySadPanda - changes: - - message: Swapped out the Skelly Vs The Rev art with a new, higher-res version. - type: Tweak - id: 5906 - time: '2024-02-10T02:06:02.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25088 -- author: Potato1234_x - changes: - - message: Added laughin' peas, a new mutation for peas that can be ground into - Laughter, a chem that forces people to laugh. - type: Add - id: 5907 - time: '2024-02-10T08:21:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25089 -- author: themias - changes: - - message: Soft caps can be flipped backwards with an alt-verb (Flip) - type: Tweak - id: 5908 - time: '2024-02-10T08:44:19.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24961 -- author: Blackern5000 - changes: - - message: Shotgun beanbag rounds now deal 40 stamina damage and stun in 3 hits. - type: Tweak - id: 5909 - time: '2024-02-10T08:49:24.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24653 -- author: metalgearsloth - changes: - - message: Fix screenspace popups e.g. inventory / access popups drawing below the - UI. - type: Fix - id: 5910 - time: '2024-02-10T08:51:11.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24987 -- author: themias - changes: - - message: The ID card console now correctly updates the ID's department when you - update its job - type: Fix - - message: The Agent ID will update its department depending on the selected icon - type: Fix - id: 5911 - time: '2024-02-10T09:17:26.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24975 -- author: Nimfar11 - changes: - - message: Adds a glass showcase for an antique laser pistol. - type: Add - id: 5912 - time: '2024-02-10T23:36:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25104 -- author: Jezithyr - changes: - - message: Changed gibbing to now rotate giblets randomly when they are spawned. - type: Tweak - - message: Giblets are now thrown around the body instead of spawning in a rough - pile. - type: Tweak - id: 5913 - time: '2024-02-10T23:37:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24989 -- author: Jajsha - changes: - - message: Cyborgs can no longer Emag themselves. - type: Fix - id: 5914 - time: '2024-02-11T06:23:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24748 -- author: Ubaser - changes: - - message: Grinding ectoplasm now gives Necrosol. - type: Tweak - id: 5915 - time: '2024-02-11T06:24:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25053 - author: Ubaser changes: - message: Food Service research is now roundstart. @@ -3834,3 +3455,394 @@ id: 6365 time: '2024-04-17T03:36:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27025 +- author: iNV3RT3D & metalgearsloth + changes: + - message: Added a jukebox. + type: Add + id: 6366 + time: '2024-04-17T09:27:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26736 +- author: Vermidia + changes: + - message: Pirate Accent and Mobster accent will respect capitalization better now + type: Fix + id: 6367 + time: '2024-04-17T10:04:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26644 +- author: metalgearsloth + changes: + - message: Fix lobby character preview not updating upon changing characters. + type: Fix + id: 6368 + time: '2024-04-17T10:06:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27043 +- author: Beck Thompson + changes: + - message: You now must equip gloved weapons (E.g boxing gloves) to use them. + type: Fix + id: 6369 + time: '2024-04-17T10:10:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26762 +- author: slarticodefast + changes: + - message: The gas analyzer now tells you the volume of scanned objects. Tanks inside + canisters now show up as well. + type: Add + - message: The gas analyzer now shows the amount of moles inside the scanned pipe + element instead of the whole pipe network. + type: Tweak + id: 6370 + time: '2024-04-17T17:42:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25720 +- author: deltanedas + changes: + - message: The Chameleon Projector has been added to the uplink for 7 TC, it lets + you disguise as anything (within reason). + type: Add + id: 6371 + time: '2024-04-17T21:48:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26691 +- author: ShadowCommander + changes: + - message: Fixed PDA and ID card name, job, and access not getting set on some jobs. + type: Fix + id: 6372 + time: '2024-04-17T22:16:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27062 +- author: Krunk + changes: + - message: Head of Security and Warden now have armored and unarmored variants of + their winter coats and the unarmored variants are available in the uniform printer. + type: Tweak + - message: Head of Security's and Warden's winter coats now provide resistances + equal to their non-winter counterparts. + type: Tweak + id: 6373 + time: '2024-04-18T00:08:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24865 +- author: icekot8 + changes: + - message: "\u0421argo request console now reports when a request is approved" + type: Add + id: 6374 + time: '2024-04-18T00:32:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27038 +- author: Bellwether + changes: + - message: Midround zombie outbreaks are less common and spread more slowly. + type: Tweak + id: 6375 + time: '2024-04-18T01:06:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27060 +- author: Flareguy + changes: + - message: Updated Remote Signaller sprites. + type: Tweak + id: 6376 + time: '2024-04-18T01:16:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27073 +- author: Dutch-VanDerLinde + changes: + - message: Grey security jumpsuits are now available in the security officer loadout. + type: Tweak + id: 6377 + time: '2024-04-18T01:22:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27023 +- author: Tayrtahn + changes: + - message: Sodas and other fizzy drinks can be shaken with the verbs menu to build + up fizziness so they spray when opened. + type: Add + id: 6378 + time: '2024-04-18T01:49:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25574 +- author: metalgearsloth + changes: + - message: Fix lobby UI not resetting for character changes. + type: Fix + id: 6379 + time: '2024-04-18T03:01:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27075 +- author: TokenStyle + changes: + - message: Benzene is no longer required for the Insuzine recipe. + type: Tweak + id: 6380 + time: '2024-04-18T03:03:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26829 +- author: Golinth + changes: + - message: The Nukie Agent now comes with a medihud built into their visor! + type: Add + id: 6381 + time: '2024-04-18T03:04:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26218 +- author: Krunk + changes: + - message: Cyborgs no longer see criminal status icons. + type: Remove + id: 6382 + time: '2024-04-18T03:20:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26207 +- author: ArZarLordOfMango + changes: + - message: Added autolathe recipe for beverage jug. + type: Add + id: 6383 + time: '2024-04-18T03:24:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25681 +- author: superjj18 + changes: + - message: Emergency lighting now changes based on station alert level! + type: Tweak + id: 6384 + time: '2024-04-18T10:50:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26932 +- author: Dutch-VanDerLinde + changes: + - message: Chemists now start with chemical analysis goggles. + type: Tweak + id: 6385 + time: '2024-04-18T10:52:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27047 +- author: TheShuEd + changes: + - message: botanist can now mutate blood tomatoes into killer tomatoes! they will + be personal pets, aggressively defending the owner from any social interactions. + type: Add + id: 6386 + time: '2024-04-18T11:21:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26053 +- author: TheShuEd + changes: + - message: Now winter around Europa is different every round + type: Tweak + id: 6387 + time: '2024-04-18T11:27:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26510 +- author: Flareguy + changes: + - message: The Research Director's hardsuit is now 5x5 in the inventory instead + of 2x2. You'll need a duffelbag to store it now. + type: Tweak + id: 6388 + time: '2024-04-18T18:05:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27094 +- author: Dutch-VanDerLinde + changes: + - message: Roboticist gear in now available in the scientist loadout. + type: Tweak + id: 6389 + time: '2024-04-18T23:38:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27045 +- author: Whisper + changes: + - message: Raised the difficulty class of RD hardsuit objective, it will be less + likely to get it with other hard objectives. + type: Tweak + id: 6390 + time: '2024-04-18T23:41:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27103 +- author: iztokbajcar + changes: + - message: Glass textures are now less transparent. + type: Tweak + id: 6391 + time: '2024-04-18T23:43:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26948 +- author: SlamBamActionman + changes: + - message: Snouts and noses no longer disappear with toggled masks. + type: Fix + id: 6392 + time: '2024-04-19T05:39:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25716 +- author: shampunj + changes: + - message: 'Now for crafting stunprod you need: igniter, cable cuffs, small power + cell, metal rod.' + type: Tweak + - message: Stunprod deals 35 stamina damage per hit and 5 shock damage. The battery + charge is enough for 3 hits. + type: Tweak + id: 6393 + time: '2024-04-19T05:50:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25922 +- author: EmoGarbage404 + changes: + - message: Halved passive fuel consumption of welding tools. + type: Tweak + - message: Completing an action with a welding tool now directly drains the fuel. + type: Tweak + id: 6394 + time: '2024-04-19T23:20:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27030 +- author: superjj18 + changes: + - message: Pneumatic cannon inventory reduced in size to 2x2, item blacklist removed + type: Tweak + id: 6395 + time: '2024-04-19T23:22:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26878 +- author: Aquif + changes: + - message: The Communication Console will no longer cut off your messages. + type: Fix + id: 6396 + time: '2024-04-20T01:07:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27145 +- author: osjarw + changes: + - message: Wallmount substation electronics can now be created at an autolathe. + type: Add + id: 6397 + time: '2024-04-20T01:14:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27138 +- author: Gyrandola + changes: + - message: Pepper sprites are now properly centered! + type: Fix + id: 6398 + time: '2024-04-20T02:06:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25971 +- author: ElectroJr + changes: + - message: Fixed a bug causing the emergency shuttle to not spawn + type: Fix + id: 6399 + time: '2024-04-20T02:10:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27144 +- author: slarticodefast + changes: + - message: The internal volume of cryopods has been increased from 101.3 to 1000L. + This speeds up cooling patients inside. + type: Tweak + id: 6400 + time: '2024-04-20T03:44:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27148 +- author: UBlueberry + changes: + - message: Changed the guidebook entry for the Space Ninja, bringing it up to the + same quality as the other antagonist entries. + type: Tweak + id: 6401 + time: '2024-04-20T06:10:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26650 +- author: Vermidia + changes: + - message: You can now bless many more containers with a bible. + type: Tweak + id: 6402 + time: '2024-04-20T06:16:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26526 +- author: SoulFN + changes: + - message: Various types of glass shards now causes diffrent damage + type: Tweak + id: 6403 + time: '2024-04-20T06:21:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26783 +- author: Vermidia + changes: + - message: Most medical roles now can choose to start with nitrile or latex gloves, + or a sterile mask in their loadout, Medical Doctors can also start with a nurse + hat. + type: Add + id: 6404 + time: '2024-04-20T06:22:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27029 +- author: MilenVolf + changes: + - message: Most crates can now go through plastic flaps. + type: Fix + id: 6405 + time: '2024-04-20T06:23:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27137 +- author: MilenVolf + changes: + - message: Electronics inside windoors now has proper accesses. + type: Fix + id: 6406 + time: '2024-04-20T06:26:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27133 +- author: Bhijn and Myr + changes: + - message: An option to tie your viewport's scaling to your vertical screenspace + has been added, enabled by default! In laymen's terms, this means that manual + configuration is no longer necessary to avoid letterboxing on aspect ratios + tighter than 16:9, as the viewport will now default to cutting off any excess + horizontal width instead of letterboxing vertically when the screen is too tight. + type: Add + id: 6407 + time: '2024-04-20T06:46:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27061 +- author: Whisper + changes: + - message: All mobs should now properly burn to ash. + type: Fix + id: 6408 + time: '2024-04-20T14:44:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27158 +- author: IProduceWidgets + changes: + - message: New map Oasis. + type: Add + id: 6409 + time: '2024-04-21T05:59:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25736 +- author: KittenColony + changes: + - message: Added a new lizard snout, featuring a split muzzle and snoot that can + be coloured independently + type: Add + id: 6410 + time: '2024-04-21T06:18:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27143 +- author: SpeltIncorrectyl + changes: + - message: Security Officers, Head of Security, and Warden can now choose to start + with a security webbing instead of a belt in their loadout menu. + type: Add + id: 6411 + time: '2024-04-21T06:19:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27189 +- author: ElectroJr + changes: + - message: Fixed the nukie station not getting properly initialized. + type: Fix + id: 6412 + time: '2024-04-21T06:52:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27201 +- author: Blackern5000 + changes: + - message: '"Experienced" passengers can now wear a rainbow jumpsuit using loadouts.' + type: Add + id: 6413 + time: '2024-04-21T11:53:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27211 +- author: PJB3005 + changes: + - message: The item status menu has been moved to the side of the hands. There is + now one for each hand. + type: Add + - message: The item status menu fits with the rest of the HUD theme now. + type: Add + - message: Improved, fixed and otherwise added a bunch of item status menus. + type: Add + id: 6414 + time: '2024-04-21T13:16:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22986 +- author: FairlySadPanda + changes: + - message: Xenoarchaeology Traversal Distorters have been rolled into the Artifact + Analyzers to make artifact gameplay a bit more controlled. + type: Tweak + - message: The T2 Abnormal Artifact Manipulation tech has been made cheaper to compensate + for losing an unlock. + type: Tweak + - message: The Xenoarchaeology guidebook entry has been rewritten to be more useful + and comprehensive for newbies. + type: Tweak + id: 6415 + time: '2024-04-21T16:09:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26545 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 7be6ba13e0..cffbe61d2b 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUmAndXGabriel08X, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, CrafterKolyan, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, Jark255, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, Kadeo64, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, LudwigVonChesterfield, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, M3739, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, matthst, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mephisto72, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nails-n-Tape, Nairodian, Naive817, NakataRin, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, Nylux, OctoRocket, OldDanceJacket, OliverOtter, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, Phill101, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, SirDragooon, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUmAndXGabriel08X, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, deepy, Delete69, deltanedas, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, Jark255, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, Kadeo64, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, LudwigVonChesterfield, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, M3739, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, matthst, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mephisto72, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, NakataRin, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, SirDragooon, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, superjj18, SweptWasTaken, Szunti, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, Terraspark4941, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem diff --git a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl index 03a920cb64..652bb19cb5 100644 --- a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl +++ b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl @@ -12,6 +12,8 @@ gas-analyzer-window-refresh-button = Refresh gas-analyzer-window-no-data = No Data gas-analyzer-window-no-gas-text = No Gases gas-analyzer-window-error-text = Error: {$errorText} +gas-analyzer-window-volume-text = Volume: +gas-analyzer-window-volume-val-text = {$volume} L gas-analyzer-window-pressure-text = Pressure: gas-analyzer-window-pressure-val-text = {$pressure} kPa gas-analyzer-window-temperature-text = Temperature: diff --git a/Resources/Locale/en-US/burning/bodyburn.ftl b/Resources/Locale/en-US/burning/bodyburn.ftl index 896a0b6d04..58b98c09bb 100644 --- a/Resources/Locale/en-US/burning/bodyburn.ftl +++ b/Resources/Locale/en-US/burning/bodyburn.ftl @@ -1 +1 @@ -bodyburn-text-others = {$name}'s body burns to ash! +bodyburn-text-others = {$name} burns to ash! diff --git a/Resources/Locale/en-US/cargo/cargo-console-component.ftl b/Resources/Locale/en-US/cargo/cargo-console-component.ftl index b56f4730cc..532481f4a2 100644 --- a/Resources/Locale/en-US/cargo/cargo-console-component.ftl +++ b/Resources/Locale/en-US/cargo/cargo-console-component.ftl @@ -30,6 +30,7 @@ cargo-console-snip-snip = Order trimmed to capacity cargo-console-insufficient-funds = Insufficient funds (require {$cost}) cargo-console-unfulfilled = No room to fulfill order cargo-console-trade-station = Sent to {$destination} +cargo-console-unlock-approved-order-broadcast = [bold]{$productName} x{$orderAmount}[/bold], which cost [bold]{$cost}[/bold], was approved by [bold]{$approverName}, {$approverJob}[/bold] cargo-console-paper-print-name = Order #{$orderNumber} cargo-console-paper-print-text = diff --git a/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl b/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl new file mode 100644 index 0000000000..8a79516077 --- /dev/null +++ b/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl @@ -0,0 +1,2 @@ +chameleon-projector-invalid = You can't disguise as that! +chameleon-projector-success = Projected new disguise. diff --git a/Resources/Locale/en-US/chat/chat-repo.ftl b/Resources/Locale/en-US/chat/chat-repo.ftl new file mode 100644 index 0000000000..a53380260b --- /dev/null +++ b/Resources/Locale/en-US/chat/chat-repo.ftl @@ -0,0 +1,7 @@ +command-description-deletechatmessage-id = Delete a specific chat message by message ID +command-description-nukechatmessages-usernames = Delete all of the supplied usernames' chat messages posted during this round +command-description-nukechatmessages-userids = Delete all of the supplied userIds' chat messages posted during this round + +command-error-deletechatmessage-id-notexist = The message with the supplied ID does not exist +command-error-nukechatmessages-usernames-usernamenotexist = Username {$username} does not exist +command-error-nukechatmessages-usernames-usernamenomessages = UserID {$userId} has no messages to nuke diff --git a/Resources/Locale/en-US/chemistry/components/solution-status.ftl b/Resources/Locale/en-US/chemistry/components/solution-status.ftl new file mode 100644 index 0000000000..0ec5f932e0 --- /dev/null +++ b/Resources/Locale/en-US/chemistry/components/solution-status.ftl @@ -0,0 +1,2 @@ +solution-status-volume = Volume: [color=white]{$currentVolume}/{$maxVolume}u[/color] +solution-status-transfer = Transfer: [color=white]{$volume}u[/color] diff --git a/Resources/Locale/en-US/communications/communications-console-component.ftl b/Resources/Locale/en-US/communications/communications-console-component.ftl index f7cc87cb8b..bead43df28 100644 --- a/Resources/Locale/en-US/communications/communications-console-component.ftl +++ b/Resources/Locale/en-US/communications/communications-console-component.ftl @@ -1,4 +1,4 @@ -# User interface +# User interface comms-console-menu-title = Communications Console comms-console-menu-announcement-placeholder = Announcement text... comms-console-menu-announcement-button = Announce @@ -9,6 +9,7 @@ comms-console-menu-recall-shuttle = Recall emergency shuttle # Popup comms-console-permission-denied = Permission denied comms-console-shuttle-unavailable = Shuttle is currently unavailable +comms-console-message-too-long = Message is too long # Placeholder values comms-console-announcement-sent-by = Sent by diff --git a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl index 86ba4462cf..6173977285 100644 --- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl @@ -83,6 +83,10 @@ ui-options-vp-integer-scaling-tooltip = If this option is enabled, the viewport at specific resolutions. While this results in crisp textures, it also often means that black bars appear at the top/bottom of the screen or that part of the viewport is not visible. +ui-options-vp-vertical-fit = Vertical viewport fitting +ui-options-vp-vertical-fit-tooltip = When enabled, the main viewport will ignore the horizontal axis entirely when + fitting to your screen. If your screen is smaller than the viewport, then this + will cause the viewport to be cut off on the horizontal axis. ui-options-vp-low-res = Low-resolution viewport ui-options-parallax-low-quality = Low-quality Parallax (background) ui-options-fps-counter = Show FPS counter diff --git a/Resources/Locale/en-US/jukebox/jukebox-menu.ftl b/Resources/Locale/en-US/jukebox/jukebox-menu.ftl new file mode 100644 index 0000000000..d015976cc4 --- /dev/null +++ b/Resources/Locale/en-US/jukebox/jukebox-menu.ftl @@ -0,0 +1,5 @@ +jukebox-menu-title = Jukebox +jukebox-menu-selectedsong = Selected Song: +jukebox-menu-buttonplay = Play +jukebox-menu-buttonpause = Pause +jukebox-menu-buttonstop = Stop diff --git a/Resources/Locale/en-US/markings/reptilian.ftl b/Resources/Locale/en-US/markings/reptilian.ftl index cfc44a4ba2..ddd0eae62f 100644 --- a/Resources/Locale/en-US/markings/reptilian.ftl +++ b/Resources/Locale/en-US/markings/reptilian.ftl @@ -100,4 +100,8 @@ marking-LizardChestUnderbelly-body_underbelly = Lizard Chest (Underbelly) marking-LizardChestUnderbelly = Lizard Chest (Underbelly) marking-LizardChestBackspikes-body_backspikes = Lizard Back spikes (Four) -marking-LizardChestBackspikes = Lizard Back spikes (Four) \ No newline at end of file +marking-LizardChestBackspikes = Lizard Back spikes (Four) + +marking-LizardSnoutSplotch = Lizard Snout (Splotch) +marking-LizardSnoutSplotch-snout_splotch_primary = Muzzle +marking-LizardSnoutSplotch-snout_splotch_secondary = Snoot \ No newline at end of file diff --git a/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl b/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl new file mode 100644 index 0000000000..a227d811f6 --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl @@ -0,0 +1,3 @@ +pressurized-solution-spray-holder-self = { CAPITALIZE(THE($drink)) } sprays on you! +pressurized-solution-spray-holder-others = { CAPITALIZE(THE($drink)) } sprays on { THE($victim) }! +pressurized-solution-spray-ground = The contents of { THE($drink) } spray out! diff --git a/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl b/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl new file mode 100644 index 0000000000..acc1ecd848 --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl @@ -0,0 +1,3 @@ +shakeable-verb = Shake +shakeable-popup-message-others = { CAPITALIZE(THE($user)) } shakes { THE($shakeable) } +shakeable-popup-message-self = You shake { THE($shakeable) } diff --git a/Resources/Locale/en-US/preferences/loadout-groups.ftl b/Resources/Locale/en-US/preferences/loadout-groups.ftl index f95436c079..cdad0f72e6 100644 --- a/Resources/Locale/en-US/preferences/loadout-groups.ftl +++ b/Resources/Locale/en-US/preferences/loadout-groups.ftl @@ -45,6 +45,7 @@ loadout-group-chaplain-neck = Chaplain neck loadout-group-janitor-head = Janitor head loadout-group-janitor-jumpsuit = Janitor jumpsuit +loadout-group-janitor-gloves = Janitor gloves loadout-group-janitor-outerclothing = Janitor outer clothing loadout-group-botanist-head = Botanist head @@ -120,6 +121,7 @@ loadout-group-scientist-neck = Scientist neck loadout-group-scientist-jumpsuit = Scientist jumpsuit loadout-group-scientist-backpack = Scientist backpack loadout-group-scientist-outerclothing = Scientist outer clothing +loadout-group-scientist-gloves = Scientist gloves loadout-group-scientist-shoes = Scientist shoes loadout-group-scientist-id = Scientist ID @@ -138,6 +140,7 @@ loadout-group-warden-outerclothing = Warden outer clothing loadout-group-security-head = Security head loadout-group-security-jumpsuit = Security jumpsuit loadout-group-security-backpack = Security backpack +loadout-group-security-belt = Security Belt loadout-group-security-outerclothing = Security outer clothing loadout-group-security-shoes = Security shoes loadout-group-security-id = Security ID @@ -151,6 +154,9 @@ loadout-group-detective-outerclothing = Detective outer clothing loadout-group-security-cadet-jumpsuit = Security cadet jumpsuit # Medical +loadout-group-medical-gloves = Medical gloves +loadout-group-medical-mask = Medical mask + loadout-group-chief-medical-officer-head = Chief Medical Officer head loadout-group-chief-medical-officer-jumpsuit = Chief Medical Officer jumpsuit loadout-group-chief-medical-officer-outerclothing = Chief Medical Officer outer clothing diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index a68f9e80b4..70ca8d018a 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -44,7 +44,7 @@ research-technology-magnets-tech = Localized Magnetism research-technology-advanced-parts = Advanced Parts research-technology-anomaly-harnessing = Anomaly Core Harnessing research-technology-grappling = Grappling -research-technology-abnormal-artifact-manipulation = Abnormal Artifact Manipulation +research-technology-abnormal-artifact-manipulation = Artifact Recycling research-technology-gravity-manipulation = Gravity Manipulation research-technology-quantum-leaping = Quantum Leaping research-technology-advanced-anomaly-research = Advanced Anomaly Research diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index b398378288..bff317a7e6 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -41,6 +41,8 @@ seeds-bluetomato-name = blue tomato seeds-bluetomato-display-name = blue tomato plant seeds-bloodtomato-name = blood tomato seeds-bloodtomato-display-name = blood tomato plant +seeds-killertomato-name = tomato killer +seeds-killertomato-display-name = tomato killer plant seeds-eggplant-name = eggplant seeds-eggplant-display-name = eggplants seeds-apple-name = apple @@ -64,7 +66,7 @@ seeds-nettle-display-name = nettles seeds-deathnettle-name = death nettle seeds-deathnettle-display-name = death nettles seeds-chili-name = chili -seeds-chili-display-name = chilis +seeds-chili-display-name = chili peppers seeds-chilly-name = chilly seeds-chilly-display-name = chilly peppers seeds-poppy-name = poppy diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 8442725566..57a309ac69 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -367,6 +367,9 @@ uplink-slipocalypse-clustersoap-desc = Scatters arounds small pieces of syndicat uplink-mobcat-microbomb-name = SyndiCat uplink-mobcat-microbomb-desc = A hand cat equipped with a microbomb implant. Explodes when seriously injured. Can bite painfully +uplink-chameleon-projector-name = Chameleon Projector +uplink-chameleon-projector-desc = Disappear in plain sight by creating a hologram of an item around you. Do not use this to play the game "Object Search". + # Pointless uplink-revolver-cap-gun-name = Cap Gun uplink-revolver-cap-gun-desc = Looks almost like the real thing! Ages 8 and up. diff --git a/Resources/Locale/en-US/tools/components/welder-component.ftl b/Resources/Locale/en-US/tools/components/welder-component.ftl index 681975deb8..6307068521 100644 --- a/Resources/Locale/en-US/tools/components/welder-component.ftl +++ b/Resources/Locale/en-US/tools/components/welder-component.ftl @@ -4,7 +4,8 @@ welder-component-no-fuel-message = The welder has no fuel left! welder-component-no-fuel-in-tank = The {$owner} is empty. welder-component-on-examine-welder-lit-message = [color=orange]Lit[/color] welder-component-on-examine-welder-not-lit-message = Not lit -welder-component-on-examine-detailed-message = Fuel: [color={$colorName}]{$fuelLeft}/{$fuelCapacity}[/color]. {$status} +welder-component-on-examine-detailed-message = Fuel: [color={$colorName}]{$fuelLeft}/{$fuelCapacity}[/color] + {$status} welder-component-suicide-lit-others-message = {$victim} welds their every orifice closed! It looks like they are trying to commit suicide! welder-component-suicide-lit-message = You weld your every orifice closed! welder-component-suicide-unlit-others-message = {$victim} bashes themselves with the unlit welding torch! diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl index 599f36ec91..672d80ed31 100644 --- a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl @@ -6,6 +6,10 @@ analysis-console-print-button = Print analysis-console-print-tooltip-info = Print out the current information about the artifact. analysis-console-extract-button = Extract analysis-console-extract-button-info = Extract points from an artifact based on the newly explored nodes. +analysis-console-bias-up = Up +analysis-console-bias-down = Down +analysis-console-bias-button-info-up = Toggles the bias an artifact has in moving between its nodes. Up heads toward zero depth. +analysis-console-bias-button-info-down = Toggles the bias an artifact has in moving between its nodes. Down heads toward ever-higher depths. analysis-console-info-no-scanner = No analyzer connected! Please connect one using a multitool. analysis-console-info-no-artifact = No artifact present! Place one on the pad then scan for information. diff --git a/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl b/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl index 5c9eac57a5..ef2931768b 100644 --- a/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl @@ -1,5 +1,5 @@ -traversal-distorter-set-in = Traversal bias set to "in" -traversal-distorter-set-out = Traversal bias set to "out" +traversal-distorter-set-up = Traversal bias set to up, toward safer nodes +traversal-distorter-set-down = Traversal bias set to down, toward more dangerous nodes -traversal-distorter-desc-in = The affected artifact's traversal now favors moving inwards to the beginning. -traversal-distorter-desc-out = The affected artifact's traversal now favors moving outwards towards more dangerous nodes. +traversal-distorter-desc-up = The affected artifact's traversal now favors moving up the node tree toward safer nodes. +traversal-distorter-desc-down = The affected artifact's traversal now favors moving down the node tree towards more dangerous nodes. diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index 8449abf932..590692a6bb 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -7444,13 +7444,6 @@ entities: - type: Transform pos: 32.5,14.5 parent: 1653 -- proto: MachineTraversalDistorter - entities: - - uid: 1058 - components: - - type: Transform - pos: 34.5,22.5 - parent: 1653 - proto: MaintenanceFluffSpawner entities: - uid: 867 diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml index 8885dce432..ebf267a9c2 100644 --- a/Resources/Maps/Dungeon/lava_brig.yml +++ b/Resources/Maps/Dungeon/lava_brig.yml @@ -7345,7 +7345,7 @@ entities: - type: Transform pos: 18.47467,24.458666 parent: 588 -- proto: ClothingOuterCoatDetective +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 574 components: diff --git a/Resources/Maps/Shuttles/briggle.yml b/Resources/Maps/Shuttles/briggle.yml new file mode 100644 index 0000000000..4778896e02 --- /dev/null +++ b/Resources/Maps/Shuttles/briggle.yml @@ -0,0 +1,1181 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 110: FloorWhiteDiagonalMini + 112: FloorWhiteMini + 113: FloorWhiteMono + 115: FloorWhitePavement + 117: FloorWhitePlastic + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Briggle + - type: Transform + pos: -0.5104167,-0.625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: cAAAAAAAcAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAcQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: 1,-9 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 1: -1,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 2: 1,-7 + 3: 1,-6 + 4: 1,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 5: -1,-7 + 6: -1,-6 + 7: -1,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 8: 0,-10 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1911 + 0,-3: + 0: 30576 + 0,-2: + 0: 30583 + 0,-1: + 0: 30583 + -1,-3: + 0: 52416 + -1,-2: + 0: 52428 + -1,-1: + 0: 52428 + -1,0: + 0: 3276 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 142 + components: + - type: Transform + anchored: True + pos: -0.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockExternalShuttleLocked + entities: + - uid: 75 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - type: Door + secondsUntilStateChange: -81.781815 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True +- proto: AirlockSecurityGlassLocked + entities: + - uid: 73 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: AirlockSecurityLocked + entities: + - uid: 74 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 +- proto: APCConstructed + entities: + - uid: 42 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 83 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 55 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 +- proto: CableMV + entities: + - uid: 51 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: Chair + entities: + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 39 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 56 + components: + - type: Transform + anchored: True + pos: -0.5,-8.5 + parent: 1 + - type: Physics + bodyType: Static + - 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: + - 61 + - 60 + - 59 + - 58 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DisposalBend + entities: + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 107 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 118 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: FlashlightSeclite + entities: + - uid: 58 + components: + - type: Transform + parent: 56 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 93 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 76 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 +- proto: GasPort + entities: + - uid: 104 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 97 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: GravityGenerator + chargeRate: 0.2 +- proto: Grille + entities: + - uid: 119 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +- proto: Paper + entities: + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.49200684,-8.508412 + parent: 1 + - type: Paper + content: >2- + + Jim, + + + I left you some plasma for the generator on the Briggle. + + Don't forget to retool it for medium voltage, and I swear to god, if you run out of power in the middle of nowhere and I have to ask the QM to come save you one more time I'm going to blow a gasket. + + + The dock's containment field works again, but I had the intern set it up, so you might want to double check that he turned the containment generators on. + + + Try not to let the Briggle get banged up this time okay? Body work isn't cheap. + + + Best, + + -- + + Glip Glorp, + + NanoTrasen Motorpool Division +- proto: PortableGeneratorPacman + entities: + - uid: 41 + components: + - type: Transform + anchored: True + pos: 1.5,-8.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: Poweredlight + entities: + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 61 + components: + - type: Transform + parent: 56 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma + entities: + - uid: 59 + components: + - type: Transform + parent: 56 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 60 + components: + - type: Transform + parent: 56 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttleWindow + entities: + - uid: 2 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 +- proto: SignSecureSmallRed + entities: + - uid: 40 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 +- proto: Thruster + entities: + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 3 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 +... diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 85f35719fb..48b2eddf62 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -4351,7 +4351,6 @@ entities: solutions: absorbed: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index 68996e61c2..eaf00d830a 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -2576,8 +2576,6 @@ entities: - 483 - 448 - 469 - - type: AtmosDevice - joinedGrid: 30 - uid: 1943 components: - type: Transform @@ -2593,8 +2591,6 @@ entities: - 3009 - 2947 - 2948 - - type: AtmosDevice - joinedGrid: 30 - uid: 1944 components: - type: Transform @@ -2606,8 +2602,6 @@ entities: - 2686 - 5456 - 2475 - - type: AtmosDevice - joinedGrid: 30 - uid: 1945 components: - type: Transform @@ -2619,15 +2613,11 @@ entities: - 2676 - 2677 - 2717 - - type: AtmosDevice - joinedGrid: 30 - uid: 1946 components: - type: Transform pos: -18.5,-0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 1947 components: - type: Transform @@ -2638,8 +2628,6 @@ entities: devices: - 5914 - 6121 - - type: AtmosDevice - joinedGrid: 30 - uid: 1948 components: - type: Transform @@ -2649,8 +2637,6 @@ entities: - type: DeviceList devices: - 6719 - - type: AtmosDevice - joinedGrid: 30 - uid: 1949 components: - type: Transform @@ -2663,8 +2649,6 @@ entities: - 5995 - 6366 - 220 - - type: AtmosDevice - joinedGrid: 30 - uid: 1950 components: - type: Transform @@ -2680,8 +2664,6 @@ entities: - 5532 - 5795 - 5794 - - type: AtmosDevice - joinedGrid: 30 - uid: 1995 components: - type: Transform @@ -2700,8 +2682,6 @@ entities: - 520 - 382 - 381 - - type: AtmosDevice - joinedGrid: 30 - uid: 5063 components: - type: Transform @@ -2715,8 +2695,6 @@ entities: - 2602 - 2680 - 2347 - - type: AtmosDevice - joinedGrid: 30 - uid: 5433 components: - type: Transform @@ -2729,8 +2707,6 @@ entities: - 383 - 384 - 373 - - type: AtmosDevice - joinedGrid: 30 - uid: 5436 components: - type: Transform @@ -2743,8 +2719,6 @@ entities: - 447 - 471 - 470 - - type: AtmosDevice - joinedGrid: 30 - uid: 6561 components: - type: Transform @@ -2754,8 +2728,6 @@ entities: devices: - 1401 - 1421 - - type: AtmosDevice - joinedGrid: 30 - uid: 6648 components: - type: Transform @@ -2772,8 +2744,6 @@ entities: - 3815 - 929 - 7599 - - type: AtmosDevice - joinedGrid: 30 - uid: 7372 components: - type: Transform @@ -2792,8 +2762,6 @@ entities: - 3771 - 2164 - 2131 - - type: AtmosDevice - joinedGrid: 30 - uid: 7532 components: - type: Transform @@ -2810,8 +2778,6 @@ entities: - 7533 - 4848 - 5745 - - type: AtmosDevice - joinedGrid: 30 - uid: 7536 components: - type: Transform @@ -2828,8 +2794,6 @@ entities: - 6404 - 6403 - 6419 - - type: AtmosDevice - joinedGrid: 30 - uid: 7537 components: - type: Transform @@ -2846,8 +2810,6 @@ entities: - 4279 - 2949 - 2842 - - type: AtmosDevice - joinedGrid: 30 - uid: 7538 components: - type: Transform @@ -2861,15 +2823,11 @@ entities: - 4781 - 4782 - 4890 - - type: AtmosDevice - joinedGrid: 30 - uid: 7539 components: - type: Transform pos: -25.5,-17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7548 components: - type: Transform @@ -2881,8 +2839,6 @@ entities: - 2671 - 2673 - 7351 - - type: AtmosDevice - joinedGrid: 30 - uid: 7549 components: - type: Transform @@ -2900,8 +2856,6 @@ entities: - 3869 - 3868 - 3867 - - type: AtmosDevice - joinedGrid: 30 - uid: 7550 components: - type: Transform @@ -2926,8 +2880,6 @@ entities: - 1302 - 1303 - 684 - - type: AtmosDevice - joinedGrid: 30 - uid: 7552 components: - type: Transform @@ -2944,8 +2896,6 @@ entities: - 2943 - 2947 - 2948 - - type: AtmosDevice - joinedGrid: 30 - uid: 7553 components: - type: Transform @@ -2964,8 +2914,6 @@ entities: - 1076 - 1075 - 1157 - - type: AtmosDevice - joinedGrid: 30 - uid: 7557 components: - type: Transform @@ -2976,8 +2924,6 @@ entities: devices: - 7556 - 599 - - type: AtmosDevice - joinedGrid: 30 - uid: 7558 components: - type: Transform @@ -2990,8 +2936,6 @@ entities: - 5071 - 4237 - 4236 - - type: AtmosDevice - joinedGrid: 30 - uid: 7559 components: - type: Transform @@ -3007,8 +2951,6 @@ entities: - 5071 - 6267 - 6243 - - type: AtmosDevice - joinedGrid: 30 - uid: 7560 components: - type: Transform @@ -3024,8 +2966,6 @@ entities: - 7490 - 7492 - 7500 - - type: AtmosDevice - joinedGrid: 30 - uid: 7561 components: - type: Transform @@ -3040,8 +2980,6 @@ entities: - 2159 - 1400 - 1406 - - type: AtmosDevice - joinedGrid: 30 - uid: 7572 components: - type: Transform @@ -3062,8 +3000,6 @@ entities: - 3862 - 3861 - 7599 - - type: AtmosDevice - joinedGrid: 30 - uid: 7573 components: - type: Transform @@ -3082,8 +3018,6 @@ entities: - 5298 - 5299 - 5546 - - type: AtmosDevice - joinedGrid: 30 - uid: 7578 components: - type: Transform @@ -3097,8 +3031,6 @@ entities: - 2684 - 2685 - 2450 - - type: AtmosDevice - joinedGrid: 30 - uid: 7598 components: - type: Transform @@ -3109,8 +3041,6 @@ entities: devices: - 1146 - 1147 - - type: AtmosDevice - joinedGrid: 30 - uid: 7911 components: - type: Transform @@ -3124,8 +3054,6 @@ entities: - 7730 - 7769 - 7770 - - type: AtmosDevice - joinedGrid: 30 - proto: AirCanister entities: - uid: 5877 @@ -3133,8 +3061,6 @@ entities: - type: Transform pos: 16.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: Airlock entities: - uid: 5821 @@ -3362,7 +3288,7 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,1.5 parent: 30 -- proto: AirlockExternalEasyPry +- proto: AirlockExternal entities: - uid: 3133 components: @@ -3384,21 +3310,7 @@ entities: - type: Transform pos: 23.5,-22.5 parent: 30 -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 1330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,24.5 - parent: 30 - - uid: 2340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,24.5 - parent: 30 -- proto: AirlockExternalGlassEasyPry +- proto: AirlockExternalGlass entities: - uid: 1092 components: @@ -3417,6 +3329,20 @@ entities: - type: Transform pos: 7.5,24.5 parent: 30 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,24.5 + parent: 30 + - uid: 2340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,24.5 + parent: 30 - proto: AirlockExternalGlassLocked entities: - uid: 1338 @@ -4194,6 +4120,10 @@ entities: showEnts: False occludes: True ent: null + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: AmeJar entities: - uid: 6975 @@ -4595,16 +4525,12 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 2519 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: Beaker entities: - uid: 4294 @@ -4616,7 +4542,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -4624,6 +4549,8 @@ entities: - data: null ReagentId: Leporazine Quantity: 50 + - type: MixableSolution + solution: beaker - proto: Bed entities: - uid: 247 @@ -15823,8 +15750,6 @@ entities: - type: Transform pos: -20.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: Carpet entities: - uid: 649 @@ -18084,6 +18009,23 @@ entities: - type: Transform pos: -37.5,-16.5 parent: 30 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 7575 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 30 + - uid: 7607 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 30 + - uid: 7961 + components: + - type: Transform + pos: -7.5,20.5 + parent: 30 - proto: ClosetFireFilled entities: - uid: 704 @@ -18226,6 +18168,17 @@ entities: - type: Transform pos: 24.5,22.5 parent: 30 + - uid: 7610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 30 + - uid: 7960 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 30 - proto: ClosetWallFireFilledRandom entities: - uid: 888 @@ -18414,15 +18367,6 @@ entities: parent: 30 - type: Physics canCollide: False -- proto: ClothingHeadHatHairflower - entities: - - uid: 289 - components: - - type: Transform - pos: 27.123781,8.439485 - parent: 30 - - type: Physics - canCollide: False - proto: ClothingHeadHatHoodCulthood entities: - uid: 6158 @@ -19414,6 +19358,9 @@ entities: - type: Transform pos: 34.5,-3.5 parent: 30 + - type: SingletonDeviceNetServer + active: False + available: False - proto: CrowbarRed entities: - uid: 2471 @@ -19460,8 +19407,6 @@ entities: - type: Transform pos: 11.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: CryoxadoneBeakerSmall entities: - uid: 4358 @@ -22240,7 +22185,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -23514,6 +23458,15 @@ entities: - type: Transform pos: -9.677708,-14.257307 parent: 30 +- proto: FoodPoppy + entities: + - uid: 289 + components: + - type: Transform + pos: 27.123781,8.439485 + parent: 30 + - type: Physics + canCollide: False - proto: FoodRiceBoiled entities: - uid: 5251 @@ -23583,8 +23536,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2616 @@ -23593,8 +23544,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasFilterFlipped @@ -23604,15 +23553,11 @@ entities: - type: Transform pos: -42.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7235 components: - type: Transform pos: -42.5,4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasMinerNitrogen entities: - uid: 6890 @@ -23620,8 +23565,6 @@ entities: - type: Transform pos: -46.5,3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasMinerOxygen entities: - uid: 6889 @@ -23629,8 +23572,6 @@ entities: - type: Transform pos: -46.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasMixerFlipped entities: - uid: 3350 @@ -23643,8 +23584,6 @@ entities: inletTwoConcentration: 0.78 inletOneConcentration: 0.22 targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 30 - proto: GasOutletInjector entities: - uid: 4564 @@ -23653,16 +23592,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4565 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasPassiveVent entities: - uid: 3997 @@ -23671,8 +23606,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 4307 @@ -23681,16 +23614,12 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4670 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 4676 @@ -23699,31 +23628,23 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 6030 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 6031 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 6977 components: - type: Transform pos: -51.5,4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend @@ -32116,24 +32037,18 @@ entities: - type: Transform pos: 11.5,-12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4691 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4693 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasPressurePump entities: - uid: 1756 @@ -32144,8 +32059,6 @@ entities: parent: 30 - type: GasPressurePump targetPressure: 300 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3274 @@ -32154,8 +32067,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4682 @@ -32164,24 +32075,18 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4683 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4697 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 4699 @@ -32190,15 +32095,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4702 components: - type: Transform pos: -21.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6364 @@ -32207,8 +32108,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 6895 @@ -32219,8 +32118,6 @@ entities: parent: 30 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 30 - uid: 6896 components: - type: Transform @@ -32229,8 +32126,6 @@ entities: parent: 30 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 30 - proto: GasThermoMachineFreezer entities: - uid: 2778 @@ -32239,16 +32134,12 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 6524 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: GasVentPump entities: - uid: 382 @@ -32256,8 +32147,6 @@ entities: - type: Transform pos: 23.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 383 @@ -32266,8 +32155,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 384 @@ -32275,8 +32162,6 @@ entities: - type: Transform pos: 32.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 420 @@ -32285,8 +32170,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 447 @@ -32295,8 +32178,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 448 @@ -32305,8 +32186,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 459 @@ -32314,8 +32193,6 @@ entities: - type: Transform pos: 27.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 470 @@ -32324,8 +32201,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 478 @@ -32334,8 +32209,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 481 @@ -32343,8 +32216,6 @@ entities: - type: Transform pos: 29.5,4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 482 @@ -32353,8 +32224,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 599 @@ -32363,8 +32232,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 819 @@ -32373,8 +32240,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1146 @@ -32383,8 +32248,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1148 @@ -32393,8 +32256,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1150 @@ -32403,8 +32264,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1157 @@ -32412,8 +32271,6 @@ entities: - type: Transform pos: 19.5,26.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1158 @@ -32422,8 +32279,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1167 @@ -32432,8 +32287,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1231 @@ -32442,8 +32295,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1246 @@ -32452,8 +32303,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1401 @@ -32461,8 +32310,6 @@ entities: - type: Transform pos: 14.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1402 @@ -32471,8 +32318,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1437 @@ -32480,8 +32325,6 @@ entities: - type: Transform pos: 6.5,11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1989 @@ -32490,8 +32333,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2164 @@ -32500,8 +32341,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2330 @@ -32510,8 +32349,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2347 @@ -32519,8 +32356,6 @@ entities: - type: Transform pos: 0.5,-6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2475 @@ -32529,8 +32364,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2546 @@ -32539,8 +32372,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2558 @@ -32549,8 +32380,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2602 @@ -32558,8 +32387,6 @@ entities: - type: Transform pos: 1.5,-0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2604 @@ -32568,8 +32395,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2606 @@ -32578,8 +32403,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2608 @@ -32588,8 +32411,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2614 @@ -32598,8 +32419,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2673 @@ -32607,8 +32426,6 @@ entities: - type: Transform pos: -1.5,-6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2677 @@ -32617,8 +32434,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2684 @@ -32626,8 +32441,6 @@ entities: - type: Transform pos: 6.5,-0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2686 @@ -32636,8 +32449,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2717 @@ -32646,8 +32457,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2995 @@ -32656,8 +32465,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3006 @@ -32665,8 +32472,6 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3009 @@ -32675,8 +32480,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3011 @@ -32685,8 +32488,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3014 @@ -32695,8 +32496,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3347 @@ -32705,8 +32504,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3690 @@ -32714,8 +32511,6 @@ entities: - type: Transform pos: 5.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3771 @@ -32724,8 +32519,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3816 @@ -32733,8 +32526,6 @@ entities: - type: Transform pos: -9.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3817 @@ -32742,8 +32533,6 @@ entities: - type: Transform pos: -7.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3851 @@ -32752,8 +32541,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3854 @@ -32762,8 +32549,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3856 @@ -32771,8 +32556,6 @@ entities: - type: Transform pos: -8.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3995 @@ -32781,8 +32564,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4359 @@ -32791,8 +32572,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4780 @@ -32801,8 +32580,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4781 @@ -32811,8 +32588,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4782 @@ -32820,8 +32595,6 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4783 @@ -32830,8 +32603,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5252 @@ -32839,8 +32610,6 @@ entities: - type: Transform pos: -27.5,3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5275 @@ -32848,8 +32617,6 @@ entities: - type: Transform pos: -15.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5339 @@ -32858,8 +32625,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5446 @@ -32868,8 +32633,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5448 @@ -32877,8 +32640,6 @@ entities: - type: Transform pos: -19.5,22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5532 @@ -32886,8 +32647,6 @@ entities: - type: Transform pos: -26.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5745 @@ -32896,8 +32655,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5781 @@ -32905,8 +32662,6 @@ entities: - type: Transform pos: -22.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5782 @@ -32914,8 +32669,6 @@ entities: - type: Transform pos: -17.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5794 @@ -32924,8 +32677,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5840 @@ -32933,8 +32684,6 @@ entities: - type: Transform pos: 7.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5896 @@ -32943,8 +32692,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5995 @@ -32953,8 +32700,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6121 @@ -32962,8 +32707,6 @@ entities: - type: Transform pos: -38.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6191 @@ -32971,8 +32714,6 @@ entities: - type: Transform pos: -38.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6233 @@ -32980,8 +32721,6 @@ entities: - type: Transform pos: -36.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6242 @@ -32990,8 +32729,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6243 @@ -32999,8 +32736,6 @@ entities: - type: Transform pos: -32.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6366 @@ -33009,8 +32744,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6403 @@ -33018,8 +32751,6 @@ entities: - type: Transform pos: -31.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6404 @@ -33028,8 +32759,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6719 @@ -33038,8 +32767,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7289 @@ -33047,8 +32774,6 @@ entities: - type: Transform pos: -23.5,-0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7319 @@ -33057,8 +32782,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7363 @@ -33067,8 +32790,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7499 @@ -33076,8 +32797,6 @@ entities: - type: Transform pos: -42.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7500 @@ -33086,8 +32805,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7540 @@ -33096,8 +32813,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7618 @@ -33106,8 +32821,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7768 @@ -33116,8 +32829,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7769 @@ -33128,8 +32839,6 @@ entities: - type: DeviceNetwork deviceLists: - 7911 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7893 @@ -33141,8 +32850,6 @@ entities: - type: DeviceNetwork deviceLists: - 7911 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7897 @@ -33154,8 +32861,6 @@ entities: - type: DeviceNetwork deviceLists: - 7911 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -33166,8 +32871,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 381 @@ -33175,8 +32878,6 @@ entities: - type: Transform pos: 22.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 385 @@ -33185,8 +32886,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 421 @@ -33195,8 +32894,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 450 @@ -33205,8 +32902,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 460 @@ -33214,8 +32909,6 @@ entities: - type: Transform pos: 28.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 469 @@ -33224,8 +32917,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 471 @@ -33234,8 +32925,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 479 @@ -33243,8 +32932,6 @@ entities: - type: Transform pos: 23.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 480 @@ -33253,8 +32940,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 483 @@ -33263,8 +32948,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 820 @@ -33273,8 +32956,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 845 @@ -33282,8 +32963,6 @@ entities: - type: Transform pos: -1.5,10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 929 @@ -33291,8 +32970,6 @@ entities: - type: Transform pos: 2.5,6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1147 @@ -33301,8 +32978,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1149 @@ -33311,8 +32986,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1151 @@ -33321,8 +32994,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1152 @@ -33330,8 +33001,6 @@ entities: - type: Transform pos: 18.5,22.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1415 @@ -33340,8 +33009,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1421 @@ -33349,8 +33016,6 @@ entities: - type: Transform pos: 15.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2085 @@ -33359,8 +33024,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2127 @@ -33369,8 +33032,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2131 @@ -33379,8 +33040,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2148 @@ -33388,8 +33047,6 @@ entities: - type: Transform pos: 9.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2332 @@ -33398,8 +33055,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2545 @@ -33408,8 +33063,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2603 @@ -33418,8 +33071,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2605 @@ -33428,8 +33079,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2607 @@ -33437,8 +33086,6 @@ entities: - type: Transform pos: 2.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2609 @@ -33446,8 +33093,6 @@ entities: - type: Transform pos: 13.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2671 @@ -33455,8 +33100,6 @@ entities: - type: Transform pos: -2.5,-7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2676 @@ -33465,8 +33108,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2680 @@ -33475,8 +33116,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2682 @@ -33484,8 +33123,6 @@ entities: - type: Transform pos: 12.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2685 @@ -33493,8 +33130,6 @@ entities: - type: Transform pos: 5.5,-0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2687 @@ -33503,8 +33138,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2689 @@ -33513,8 +33146,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2718 @@ -33522,8 +33153,6 @@ entities: - type: Transform pos: 3.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2988 @@ -33532,8 +33161,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2994 @@ -33542,8 +33169,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3010 @@ -33552,8 +33177,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3310 @@ -33562,8 +33185,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3348 @@ -33572,8 +33193,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3814 @@ -33581,8 +33200,6 @@ entities: - type: Transform pos: -11.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3815 @@ -33590,8 +33207,6 @@ entities: - type: Transform pos: -6.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3852 @@ -33600,8 +33215,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3853 @@ -33610,8 +33223,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3855 @@ -33619,8 +33230,6 @@ entities: - type: Transform pos: -10.5,-4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3889 @@ -33628,8 +33237,6 @@ entities: - type: Transform pos: -19.5,-1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4198 @@ -33638,8 +33245,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,1.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4848 @@ -33647,8 +33252,6 @@ entities: - type: Transform pos: -16.5,11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4877 @@ -33657,8 +33260,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-13.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4889 @@ -33667,8 +33268,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4890 @@ -33676,8 +33275,6 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4897 @@ -33686,8 +33283,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 5274 @@ -33696,8 +33291,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5456 @@ -33706,8 +33299,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5780 @@ -33716,8 +33307,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5783 @@ -33726,8 +33315,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,14.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5784 @@ -33735,8 +33322,6 @@ entities: - type: Transform pos: -17.5,19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5795 @@ -33745,8 +33330,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5914 @@ -33755,8 +33338,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-0.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6266 @@ -33764,8 +33345,6 @@ entities: - type: Transform pos: -35.5,-12.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6267 @@ -33774,8 +33353,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6419 @@ -33783,8 +33360,6 @@ entities: - type: Transform pos: -33.5,17.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6433 @@ -33792,8 +33367,6 @@ entities: - type: Transform pos: -40.5,18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6434 @@ -33801,8 +33374,6 @@ entities: - type: Transform pos: -38.5,16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7056 @@ -33810,8 +33381,6 @@ entities: - type: Transform pos: -36.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7318 @@ -33820,8 +33389,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,7.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7333 @@ -33830,8 +33397,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,9.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7349 @@ -33839,8 +33404,6 @@ entities: - type: Transform pos: 2.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 7361 @@ -33848,8 +33411,6 @@ entities: - type: Transform pos: -2.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 7410 @@ -33858,8 +33419,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7412 @@ -33867,8 +33426,6 @@ entities: - type: Transform pos: -15.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7490 @@ -33876,8 +33433,6 @@ entities: - type: Transform pos: -44.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7491 @@ -33885,8 +33440,6 @@ entities: - type: Transform pos: -40.5,-11.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7492 @@ -33895,8 +33448,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-15.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7541 @@ -33905,8 +33456,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 7542 @@ -33914,8 +33463,6 @@ entities: - type: Transform pos: -22.5,-20.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 7556 @@ -33923,8 +33470,6 @@ entities: - type: Transform pos: -46.5,8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 7617 @@ -33933,8 +33478,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7730 @@ -33946,8 +33489,6 @@ entities: - type: DeviceNetwork deviceLists: - 7911 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - uid: 7770 @@ -33959,8 +33500,6 @@ entities: - type: DeviceNetwork deviceLists: - 7911 - - type: AtmosDevice - joinedGrid: 30 - type: AtmosPipeColor color: '#990000FF' - proto: GeneratorRTG @@ -36426,6 +35965,13 @@ entities: - type: Transform pos: -32.578957,21.567701 parent: 30 +- proto: Jukebox + entities: + - uid: 7408 + components: + - type: Transform + pos: -21.5,7.5 + parent: 30 - proto: KitchenElectricGrill entities: - uid: 6520 @@ -37232,22 +36778,16 @@ entities: - type: Transform pos: -43.5,4.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4664 components: - type: Transform pos: -22.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 5878 components: - type: Transform pos: 16.5,-10.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: NoticeBoard entities: - uid: 7632 @@ -37295,64 +36835,46 @@ entities: - type: Transform pos: 21.5,5.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 1570 components: - type: Transform pos: 6.5,23.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4593 components: - type: Transform pos: -43.5,2.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 4665 components: - type: Transform pos: -21.5,-21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 5131 components: - type: Transform pos: -30.5,-19.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 5876 components: - type: Transform pos: 16.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 6214 components: - type: Transform pos: -35.5,-16.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 6369 components: - type: Transform pos: -36.5,21.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - uid: 7254 components: - type: Transform pos: -44.5,-8.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: PaintingCafeTerraceAtNight entities: - uid: 4137 @@ -37626,8 +37148,6 @@ entities: - type: Transform pos: -20.5,-18.5 parent: 30 - - type: AtmosDevice - joinedGrid: 30 - proto: PlasmaTank entities: - uid: 6527 @@ -39724,6 +39244,11 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 7476 + components: + - type: Transform + pos: -40.5,13.5 + parent: 30 - uid: 7512 components: - type: Transform @@ -40059,6 +39584,11 @@ entities: - type: Transform pos: -27.5,-21.5 parent: 30 + - uid: 7397 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 30 - proto: RandomPainting entities: - uid: 5258 diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index edb8a5ac7b..868599b961 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -16,6 +16,7 @@ tilemap: 29: FloorDark 33: FloorDarkMini 38: FloorDarkPlastic + 1: FloorDesert 41: FloorEighties 44: FloorFreezer 45: FloorGlass @@ -76,119 +77,119 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: WQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAACIQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAABHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAADEQAAAAAAWQAAAAADEQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAHQAAAAACHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAB + tiles: WQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAACIQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAWQAAAAABEQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAB version: 6 0,0: ind: 0,0 - tiles: WQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAADeQAAAAAAFAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAFAAAAAAA + tiles: WQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAAFAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAEQAAAAAAHQAAAAACHQAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABEQAAAAAAEQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACEQAAAAAAHQAAAAACHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAABEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAB version: 6 -1,0: ind: -1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAADWQAAAAABWQAAAAAAWQAAAAACHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAACWQAAAAACWQAAAAACWQAAAAADHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAdgAAAAADdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC version: 6 1,-1: ind: 1,-1 - tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAABWQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADWQAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABWQAAAAABeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAA + tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAABWQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAWQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAABeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAACdgAAAAADWQAAAAAAeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: WQAAAAABWQAAAAADWQAAAAADeQAAAAAAaQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAA + tiles: WQAAAAADWQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: WQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADdgAAAAACdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACdgAAAAAAdgAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAACdgAAAAAAdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAA + tiles: WQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAdgAAAAABdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAaQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAACWQAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAADbAAAAAACbAAAAAABWQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAACWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAbAAAAAAAHQAAAAADHQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAHQAAAAAAHQAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACbAAAAAACHQAAAAADHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAADbAAAAAABHQAAAAAAHQAAAAADbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAbAAAAAACHQAAAAACHQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAD + tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABWQAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABWQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAADWQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAADbAAAAAAAHQAAAAABHQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAADWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAADHQAAAAAAHQAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAbAAAAAAAHQAAAAADHQAAAAABeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAACHQAAAAACHQAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAbAAAAAABHQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABdgAAAAADHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABdgAAAAABdgAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAdgAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACLAAAAAAALAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAABLQAAAAADHQAAAAABHQAAAAAAHQAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAAA + tiles: WQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACdgAAAAABHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAABHQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACdgAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABLAAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAACHQAAAAACLQAAAAABHQAAAAADHQAAAAACHQAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: WQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAACdgAAAAABdgAAAAACdgAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAALwAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAALwAAAAAAWQAAAAABeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACLwAAAAAAWQAAAAADeQAAAAAAHQAAAAACdgAAAAADdgAAAAAAdgAAAAABHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADLwAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABdgAAAAACHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAACdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAACdgAAAAACdgAAAAABHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABLQAAAAADHQAAAAADLQAAAAAC + tiles: WQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADLwAAAAAAWQAAAAABeQAAAAAAHQAAAAABdgAAAAACdgAAAAAAdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAWQAAAAACeQAAAAAAHQAAAAABdgAAAAAAdgAAAAADdgAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAALwAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAADHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADLwAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAABdgAAAAACdgAAAAACHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADdgAAAAAAdgAAAAADdgAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAHQAAAAABdgAAAAABdgAAAAACdgAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAABLQAAAAACHQAAAAACLQAAAAAD version: 6 -2,0: ind: -2,0 - tiles: HQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAACWQAAAAABWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAWQAAAAABWQAAAAADAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAB version: 6 0,-3: ind: 0,-3 - tiles: WQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAdwAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAdwAAAAADdgAAAAAAdgAAAAABdgAAAAAAdwAAAAACaQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAAD + tiles: WQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdwAAAAABdgAAAAAAdgAAAAAAdgAAAAACdwAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAdwAAAAADdgAAAAAAdgAAAAABdgAAAAACdwAAAAABaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAB version: 6 1,-3: ind: 1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAAAdQAAAAAAdQAAAAACdQAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAACdQAAAAAAdQAAAAABWQAAAAABLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAaQAAAAAAdQAAAAADdQAAAAAAdQAAAAAAdQAAAAABdQAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAABWQAAAAAAWQAAAAADWQAAAAACaQAAAAAAeQAAAAAAJgAAAAACJgAAAAADdQAAAAADJgAAAAAAJgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAADbAAAAAAAWQAAAAABWQAAAAABWQAAAAABHQAAAAAAeQAAAAAAJgAAAAABJgAAAAAAdQAAAAABJgAAAAAAJgAAAAACeQAAAAAAUgAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAACWQAAAAADWQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAADdQAAAAABdQAAAAAAdQAAAAACdQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAdQAAAAACdQAAAAACdQAAAAACdQAAAAACdQAAAAADWQAAAAADLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAaQAAAAAAdQAAAAAAdQAAAAACdQAAAAABdQAAAAAAdQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAACaQAAAAAAeQAAAAAAJgAAAAADJgAAAAABdQAAAAACJgAAAAADJgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAACWQAAAAABWQAAAAABWQAAAAABHQAAAAACeQAAAAAAJgAAAAACJgAAAAAAdQAAAAACJgAAAAAAJgAAAAAAeQAAAAAAUgAAAAACLAAAAAAALAAAAAAAeQAAAAAAbAAAAAADWQAAAAACWQAAAAADWQAAAAAB version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAADgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAADgAAAAACDgAAAAABDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAABDgAAAAACDgAAAAAADgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAVwAAAAAAVwAAAAAADQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAVwAAAAAADQAAAAAADQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAVwAAAAAADQAAAAAADQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAVwAAAAAADQAAAAAADQAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAVwAAAAAADQAAAAAADQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAVwAAAAAADQAAAAAADQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAVwAAAAAAVwAAAAAADQAAAAAA + tiles: eQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAADgAAAAABDgAAAAABDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAABDgAAAAADDgAAAAABDgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAAADgAAAAADDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAAQAAAAADAQAAAAAFAQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAQAAAAAEAQAAAAABAQAAAAAFWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACAQAAAAACAQAAAAAEAQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAQAAAAACAQAAAAAFAQAAAAABFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABAQAAAAADAQAAAAABAQAAAAADFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAQAAAAAFAQAAAAACAQAAAAADFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAQAAAAACAQAAAAAEAQAAAAAA version: 6 0,1: ind: 0,1 - tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAB + tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAC version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA + tiles: eQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVwAAAAAAVwAAAAACVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAABHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAABdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAHQAAAAABWQAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAALwAAAAAAHQAAAAABLwAAAAAA + tiles: HQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAALAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAWQAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAALwAAAAAAHQAAAAABLwAAAAAA version: 6 0,2: ind: 0,2 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACHQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAACWQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAABLwAAAAAAHQAAAAAALwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAACLwAAAAAAHQAAAAACLwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: WQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: DQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + tiles: AQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA version: 6 2,0: ind: 2,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAJVwAAAAAAVwAAAAAAVwAAAAAHVwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADQAAAAAADQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAVwAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAVwAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAAFAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAACAQAAAAADAQAAAAAFAQAAAAADAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAAFAQAAAAADAQAAAAAFAQAAAAABAQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAADAQAAAAAFAQAAAAAAAQAAAAADAQAAAAABAQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAAFAQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAdgAAAAADdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA version: 6 0,3: ind: 0,3 - tiles: HQAAAAABHQAAAAABLwAAAAAAHQAAAAACLwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADHQAAAAADLwAAAAAAHQAAAAACLwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: eQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA version: 6 -3,1: ind: -3,1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 @@ -196,15 +197,15 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: WQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAA version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,0: ind: -6,0 @@ -212,23 +213,23 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: WQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAC + tiles: WQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAB version: 6 -3,-1: ind: -3,-1 - tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAB + tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABHQAAAAABeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAC version: 6 3,0: ind: 3,0 - tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAUgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAABUgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: eQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAABHQAAAAAAWQAAAAAAeQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAADeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAABXAAAAAADWQAAAAAAHQAAAAABWQAAAAABWQAAAAACHQAAAAADHQAAAAABWQAAAAADHQAAAAADXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAWQAAAAAAHQAAAAADWQAAAAACWQAAAAADHQAAAAACHQAAAAADWQAAAAABeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAACWQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACLwAAAAAALwAAAAAALwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAA + tiles: eQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACHQAAAAACHQAAAAADWQAAAAABeQAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADdgAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAABXAAAAAACeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAACWQAAAAADHQAAAAACWQAAAAABWQAAAAADHQAAAAABHQAAAAAAWQAAAAACHQAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADWQAAAAACHQAAAAACWQAAAAABWQAAAAAAHQAAAAADHQAAAAABWQAAAAACeQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACWQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABLwAAAAAALwAAAAAALwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAA version: 6 3,1: ind: 3,1 @@ -236,11 +237,11 @@ entities: version: 6 4,1: ind: 4,1 - tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,0: ind: 5,0 @@ -248,11 +249,11 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAACdgAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAWQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAADWQAAAAAAHQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAADWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAACWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAPgAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACWQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADdgAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAADWQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAABdgAAAAACWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAPgAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -260,7 +261,7 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAdgAAAAACdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC version: 6 -3,-3: ind: -3,-3 @@ -268,71 +269,71 @@ entities: version: 6 -2,-4: ind: -2,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAADEQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAABHQAAAAADEQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAADHQAAAAACEQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACHQAAAAABHQAAAAACEQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAAAEQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAACHQAAAAABEQAAAAAAHQAAAAABHQAAAAABEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAB + tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAABHQAAAAACEQAAAAAAHQAAAAACHQAAAAABEQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAACHQAAAAABEQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADHQAAAAABHQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADHQAAAAABEQAAAAAAHQAAAAABHQAAAAABEQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAABHQAAAAAAEQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: eQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABeQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAACYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABeQAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: eQAAAAAAaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAACbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAACWQAAAAAAWQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABWQAAAAACWQAAAAABeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAADeQAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAADWQAAAAACWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAAA + tiles: eQAAAAAAaQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACeQAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACWQAAAAADWQAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAD version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAADbAAAAAACbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACaQAAAAAAaQAAAAAAHQAAAAADaQAAAAAAHQAAAAABaQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAACaQAAAAAAHQAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAABaQAAAAAAHQAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAABaQAAAAAAHQAAAAABaQAAAAAAHQAAAAAC version: 6 2,-4: ind: 2,-4 - tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAACbAAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADLwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACLwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAACbAAAAAACbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACWQAAAAADWQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAWQAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAHQAAAAABaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAADHQAAAAABaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAbAAAAAAAbAAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAAAEQAAAAAAHQAAAAAAWQAAAAACbAAAAAABbAAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAWQAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAWQAAAAACEQAAAAAAHQAAAAAAWQAAAAACbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAA + tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAACHQAAAAABHQAAAAADHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACHQAAAAABHQAAAAADHQAAAAACbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADWQAAAAACWQAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAWQAAAAACbAAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAAAaQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAADbAAAAAACaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAADHQAAAAADaQAAAAAAbAAAAAACbAAAAAACbAAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAACbAAAAAABbAAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABEQAAAAAAWQAAAAAAEQAAAAAAHQAAAAACWQAAAAABbAAAAAADbAAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAADEQAAAAAAHQAAAAADWQAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: eQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAADeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAWQAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAABWQAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: eQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAABaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABbAAAAAADbAAAAAACbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADWQAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAABbAAAAAACWQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAA + tiles: eQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADaAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACaAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABbAAAAAACbAAAAAABbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAACbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADEwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABWQAAAAADbAAAAAADWQAAAAABbAAAAAABWQAAAAABbAAAAAABWQAAAAAAbAAAAAADWQAAAAAAbAAAAAAAWQAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADHQAAAAABWQAAAAACHQAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAACeQAAAAAAWQAAAAABeQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACEwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABWQAAAAABbAAAAAABWQAAAAADbAAAAAAAWQAAAAABbAAAAAACWQAAAAABbAAAAAAAWQAAAAAAbAAAAAAAWQAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADHQAAAAADWQAAAAADHQAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAACdgAAAAABdgAAAAABeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-4: ind: 5,-4 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAD version: 6 4,-1: ind: 4,-1 - tiles: WQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAADWQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAADWQAAAAACWQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAAAHQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADWQAAAAADHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABWQAAAAABWQAAAAADHQAAAAABHQAAAAACHQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAHQAAAAABHQAAAAADHQAAAAADWQAAAAACWQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABHQAAAAABHQAAAAACHQAAAAABWQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABeQAAAAAAHQAAAAABWQAAAAACWQAAAAADHQAAAAABHQAAAAABHQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAHQAAAAABHQAAAAADHQAAAAADWQAAAAAAWQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAABHQAAAAACHQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-5: ind: 4,-5 @@ -344,7 +345,7 @@ entities: version: 6 3,-5: ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAJeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA version: 6 2,-5: ind: 2,-5 @@ -360,11 +361,11 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAACagAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAABagAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAAD version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADDgAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAADgAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAagAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABHQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACDgAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAADgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAagAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -372,11 +373,11 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAA version: 6 0,-6: ind: 0,-6 @@ -388,11 +389,11 @@ entities: version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAHQAAAAACeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-7: ind: 2,-7 @@ -404,11 +405,11 @@ entities: version: 6 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACHQAAAAADHQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAA version: 6 1,-8: ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAA version: 6 -2,-6: ind: -2,-6 @@ -436,7 +437,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: dgAAAAABdgAAAAACdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAALwAAAAAAHQAAAAADLwAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABdgAAAAACdgAAAAABdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: dgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAALwAAAAAAHQAAAAADLwAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 @@ -472,7 +473,7 @@ entities: version: 6 3,-6: ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA version: 6 -6,-1: ind: -6,-1 @@ -5791,6 +5792,13 @@ entities: id: splatter decals: 1151: 34.46607,8.395077 + - node: + color: '#FFFFFFFF' + id: thinline + decals: + 3661: 32.88275,8.297449 + 3662: 32.88275,9.188074 + 3663: 32.88275,10.078699 - type: GridAtmosphere version: 2 data: @@ -8614,8 +8622,6 @@ entities: - 22993 - 22800 - 23146 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3263 components: - type: Transform @@ -8627,8 +8633,6 @@ entities: - 19113 - 19123 - 19114 - - type: AtmosDevice - joinedGrid: 8364 - uid: 6646 components: - type: Transform @@ -8639,8 +8643,6 @@ entities: - 22640 - 24368 - 24373 - - type: AtmosDevice - joinedGrid: 8364 - uid: 10705 components: - type: Transform @@ -8658,8 +8660,6 @@ entities: - 22635 - 24099 - 24098 - - type: AtmosDevice - joinedGrid: 8364 - uid: 14152 components: - type: Transform @@ -8669,8 +8669,6 @@ entities: devices: - 24052 - 24051 - - type: AtmosDevice - joinedGrid: 8364 - uid: 14649 components: - type: Transform @@ -8689,8 +8687,6 @@ entities: - 22624 - 24032 - 24031 - - type: AtmosDevice - joinedGrid: 8364 - uid: 16456 components: - type: Transform @@ -8712,8 +8708,6 @@ entities: - 25307 - 25304 - 25305 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17778 components: - type: Transform @@ -8728,8 +8722,6 @@ entities: - 23000 - 23010 - 23011 - - type: AtmosDevice - joinedGrid: 8364 - uid: 18773 components: - type: Transform @@ -8746,8 +8738,15 @@ entities: - 14486 - 23068 - 23067 - - type: AtmosDevice - joinedGrid: 8364 + - uid: 20630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-49.5 + parent: 8364 + - type: DeviceList + devices: + - 20633 - uid: 20897 components: - type: Transform @@ -8775,8 +8774,6 @@ entities: - 10521 - 10523 - 22691 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22563 components: - type: Transform @@ -8803,8 +8800,6 @@ entities: - 16943 - 1672 - 16832 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22566 components: - type: Transform @@ -8816,8 +8811,6 @@ entities: - 17717 - 17630 - 17520 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22568 components: - type: Transform @@ -8837,8 +8830,6 @@ entities: - 22571 - 22951 - 22950 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22588 components: - type: Transform @@ -8849,8 +8840,6 @@ entities: - 23261 - 23260 - 22587 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22589 components: - type: Transform @@ -8864,8 +8853,6 @@ entities: - 9825 - 23948 - 23947 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22594 components: - type: Transform @@ -8890,8 +8877,6 @@ entities: - 24085 - 24063 - 24062 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22596 components: - type: Transform @@ -8904,8 +8889,6 @@ entities: - 5754 - 24073 - 24072 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22599 components: - type: Transform @@ -8916,8 +8899,6 @@ entities: - 22598 - 24240 - 24239 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22600 components: - type: Transform @@ -8929,8 +8910,6 @@ entities: - 22601 - 24187 - 24188 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22603 components: - type: Transform @@ -8950,8 +8929,6 @@ entities: - 24179 - 24178 - 24180 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22612 components: - type: Transform @@ -8963,8 +8940,6 @@ entities: - 24217 - 24224 - 22613 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22614 components: - type: Transform @@ -8976,8 +8951,6 @@ entities: - 24219 - 24220 - 22615 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22620 components: - type: Transform @@ -9006,8 +8979,6 @@ entities: - 24087 - 24086 - 13473 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22625 components: - type: Transform @@ -9020,8 +8991,6 @@ entities: - 13473 - 23999 - 24013 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22628 components: - type: Transform @@ -9045,8 +9014,6 @@ entities: - 24300 - 24244 - 24243 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22637 components: - type: Transform @@ -9067,8 +9034,6 @@ entities: - 13388 - 24111 - 24110 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22641 components: - type: Transform @@ -9080,8 +9045,6 @@ entities: - 22646 - 22647 - 24436 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22642 components: - type: Transform @@ -9095,8 +9058,6 @@ entities: - 22647 - 24436 - 27233 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22649 components: - type: Transform @@ -9108,8 +9069,6 @@ entities: - 24494 - 24493 - 22648 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22650 components: - type: Transform @@ -9126,8 +9085,6 @@ entities: - 13394 - 24505 - 24506 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22655 components: - type: Transform @@ -9144,8 +9101,6 @@ entities: - 24916 - 24914 - 24917 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22659 components: - type: Transform @@ -9175,8 +9130,6 @@ entities: - 13384 - 24586 - 24585 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22661 components: - type: Transform @@ -9192,8 +9145,6 @@ entities: - 19972 - 24599 - 24610 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22665 components: - type: Transform @@ -9215,8 +9166,6 @@ entities: - 24581 - 24583 - 24582 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22667 components: - type: Transform @@ -9233,8 +9182,6 @@ entities: - 22668 - 24587 - 24588 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22670 components: - type: Transform @@ -9250,8 +9197,6 @@ entities: - 22672 - 24712 - 24705 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22673 components: - type: Transform @@ -9262,8 +9207,6 @@ entities: - 22674 - 24747 - 24746 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22676 components: - type: Transform @@ -9281,8 +9224,6 @@ entities: - 7993 - 24752 - 24745 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22682 components: - type: Transform @@ -9305,8 +9246,6 @@ entities: - 24778 - 24776 - 24777 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22684 components: - type: Transform @@ -9325,8 +9264,6 @@ entities: - 24880 - 24830 - 24831 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22693 components: - type: Transform @@ -9350,8 +9287,6 @@ entities: - 24918 - 24921 - 24919 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22694 components: - type: Transform @@ -9371,8 +9306,6 @@ entities: - 19992 - 19991 - 19993 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22699 components: - type: Transform @@ -9392,8 +9325,6 @@ entities: - 21540 - 21542 - 21541 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22701 components: - type: Transform @@ -9404,8 +9335,6 @@ entities: - 24967 - 24968 - 22702 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22703 components: - type: Transform @@ -9425,8 +9354,6 @@ entities: - 21542 - 21539 - 21540 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22706 components: - type: Transform @@ -9439,8 +9366,6 @@ entities: - 13364 - 25116 - 25115 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22714 components: - type: Transform @@ -9464,8 +9389,6 @@ entities: - 25169 - 25136 - 25131 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22715 components: - type: Transform @@ -9481,8 +9404,6 @@ entities: - 13362 - 25069 - 25072 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22718 components: - type: Transform @@ -9493,8 +9414,6 @@ entities: - 25070 - 25071 - 22719 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22721 components: - type: Transform @@ -9506,8 +9425,6 @@ entities: - 25167 - 25165 - 22720 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22723 components: - type: Transform @@ -9517,8 +9434,6 @@ entities: - type: DeviceList devices: - 22722 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22726 components: - type: Transform @@ -9535,8 +9450,6 @@ entities: - 22725 - 25261 - 25260 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22732 components: - type: Transform @@ -9550,8 +9463,6 @@ entities: - 25242 - 22733 - 22731 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22734 components: - type: Transform @@ -9565,8 +9476,6 @@ entities: - 25132 - 25134 - 25135 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22816 components: - type: Transform @@ -9582,8 +9491,6 @@ entities: - 19168 - 17122 - 17123 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22954 components: - type: Transform @@ -9597,8 +9504,6 @@ entities: - 1479 - 25206 - 25207 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22956 components: - type: Transform @@ -9610,8 +9515,6 @@ entities: - 23302 - 23303 - 22957 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22959 components: - type: Transform @@ -9624,8 +9527,6 @@ entities: - 14192 - 24056 - 24057 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22964 components: - type: Transform @@ -9636,8 +9537,6 @@ entities: - 24010 - 24011 - 24012 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22970 components: - type: Transform @@ -9650,8 +9549,6 @@ entities: - 25367 - 25366 - 25365 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23262 components: - type: Transform @@ -9668,8 +9565,6 @@ entities: - 23117 - 25408 - 25409 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23263 components: - type: Transform @@ -9680,8 +9575,6 @@ entities: - 25407 - 25406 - 23264 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23267 components: - type: Transform @@ -9698,8 +9591,6 @@ entities: - 7043 - 25397 - 25396 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23268 components: - type: Transform @@ -9710,8 +9601,6 @@ entities: - 25377 - 23269 - 25376 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23280 components: - type: Transform @@ -9725,8 +9614,6 @@ entities: - 24333 - 23462 - 24337 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23898 components: - type: Transform @@ -9752,8 +9639,6 @@ entities: - 25420 - 25422 - 25421 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23938 components: - type: Transform @@ -9772,8 +9657,6 @@ entities: - 25487 - 25518 - 25519 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23943 components: - type: Transform @@ -9785,8 +9668,6 @@ entities: - 9392 - 25516 - 23944 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23945 components: - type: Transform @@ -9812,8 +9693,6 @@ entities: - 7357 - 25557 - 25560 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24766 components: - type: Transform @@ -9824,8 +9703,6 @@ entities: - 25800 - 24915 - 25804 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24987 components: - type: Transform @@ -9840,8 +9717,6 @@ entities: - 8934 - 25762 - 25759 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25234 components: - type: Transform @@ -9856,8 +9731,6 @@ entities: - 19934 - 25761 - 25760 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25238 components: - type: Transform @@ -9869,8 +9742,6 @@ entities: - 25801 - 25805 - 25237 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25239 components: - type: Transform @@ -9882,8 +9753,6 @@ entities: - 25802 - 25803 - 25240 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25244 components: - type: Transform @@ -9895,8 +9764,6 @@ entities: - 25824 - 25823 - 25243 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25275 components: - type: Transform @@ -9908,8 +9775,6 @@ entities: - 25274 - 25480 - 25485 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25517 components: - type: Transform @@ -9921,8 +9786,6 @@ entities: - 25375 - 25479 - 25486 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25825 components: - type: Transform @@ -9944,8 +9807,6 @@ entities: - 25318 - 25315 - 11722 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25833 components: - type: Transform @@ -9958,8 +9819,6 @@ entities: - 21815 - 25289 - 25290 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25834 components: - type: Transform @@ -9972,8 +9831,6 @@ entities: - 21812 - 25276 - 20132 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25837 components: - type: Transform @@ -9985,8 +9842,6 @@ entities: - 25838 - 25336 - 25337 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25915 components: - type: Transform @@ -9998,8 +9853,6 @@ entities: - 25914 - 24707 - 24711 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26703 components: - type: Transform @@ -10011,8 +9864,6 @@ entities: - 26694 - 26695 - 26702 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26704 components: - type: Transform @@ -10023,15 +9874,11 @@ entities: - 26698 - 26693 - 26697 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26707 components: - type: Transform pos: -14.5,-67.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26908 components: - type: Transform @@ -10043,8 +9890,6 @@ entities: - 26701 - 23177 - 23179 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27486 components: - type: Transform @@ -10066,8 +9911,6 @@ entities: - 17188 - 23120 - 23121 - - type: AtmosDevice - joinedGrid: 8364 - proto: AirCanister entities: - uid: 444 @@ -10075,190 +9918,136 @@ entities: - type: Transform pos: -43.5,16.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 446 components: - type: Transform pos: -44.5,16.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 756 components: - type: Transform pos: 39.5,8.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 769 components: - type: Transform pos: 39.5,7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3105 components: - type: Transform pos: 36.5,-69.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 5602 components: - type: Transform pos: 26.5,21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 11707 components: - type: Transform pos: 53.5,17.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 12452 components: - type: Transform pos: -65.5,17.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 13829 components: - type: Transform pos: -41.5,10.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 14418 components: - type: Transform pos: -52.5,-10.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 14426 components: - type: Transform pos: -25.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15048 components: - type: Transform pos: -21.5,-38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15726 components: - type: Transform pos: 1.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15933 components: - type: Transform pos: -16.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 16810 components: - type: Transform pos: 21.5,-66.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 18300 components: - type: Transform pos: 44.5,-38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 18301 components: - type: Transform pos: 43.5,-38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19388 components: - type: Transform pos: 86.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19389 components: - type: Transform pos: 86.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21430 components: - type: Transform pos: 69.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26545 components: - type: Transform pos: -21.5,51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27150 components: - type: Transform pos: 22.5,-89.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27151 components: - type: Transform pos: 24.5,-88.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27213 components: - type: Transform pos: -39.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27214 components: - type: Transform pos: -39.5,-12.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27215 components: - type: Transform pos: -39.5,-11.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27216 components: - type: Transform pos: -39.5,-10.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: Airlock entities: - uid: 1146 @@ -11750,6 +11539,12 @@ entities: - type: Transform pos: 24.5,16.5 parent: 8364 + - type: Door + secondsUntilStateChange: -295.63562 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - uid: 6403 components: - type: Transform @@ -13446,6 +13241,11 @@ entities: - type: Transform pos: 6.5,-60.5 parent: 8364 + - uid: 20633 + components: + - type: Transform + pos: 15.5,-51.5 + parent: 8364 - uid: 20898 components: - type: Transform @@ -15765,16 +15565,12 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-19.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 18633 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-42.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: Basketball entities: - uid: 815 @@ -15791,6 +15587,11 @@ entities: parent: 8364 - proto: BeachBall entities: + - uid: 20679 + components: + - type: Transform + pos: 34.165627,9.592048 + parent: 8364 - uid: 27654 components: - type: Transform @@ -16578,34 +16379,46 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-33.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 6456 components: - type: Transform pos: 5.5,-13.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 6972 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-0.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 11386 components: - type: Transform pos: 74.5,12.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 17027 components: - type: Transform pos: 7.5,-51.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 26420 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,47.5 parent: 8364 -- proto: BodyBag_Folded + - type: SpamEmitSound + enabled: False +- proto: BodyBagFolded entities: - uid: 27686 components: @@ -16619,13 +16432,6 @@ entities: - type: Transform pos: 38.39524,-6.593956 parent: 8364 -- proto: BookEscalationSecurity - entities: - - uid: 26467 - components: - - type: Transform - pos: -13.487206,48.529594 - parent: 8364 - proto: BookRandom entities: - uid: 26555 @@ -16633,6 +16439,13 @@ entities: - type: Transform pos: -14.522785,53.581825 parent: 8364 +- proto: BookRandomStory + entities: + - uid: 26467 + components: + - type: Transform + pos: -13.487206,48.529594 + parent: 8364 - proto: BooksBag entities: - uid: 5559 @@ -56954,29 +56767,21 @@ entities: - type: Transform pos: 59.5,-36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21304 components: - type: Transform pos: 59.5,-37.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22570 components: - type: Transform pos: 14.5,-43.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22904 components: - type: Transform pos: 28.5,-55.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: Carpet entities: - uid: 370 @@ -58395,6 +58200,16 @@ entities: - type: Transform pos: 57.5,-34.5 parent: 8364 + - uid: 20680 + components: + - type: Transform + pos: 36.5,10.5 + parent: 8364 + - uid: 20681 + components: + - type: Transform + pos: 36.5,9.5 + parent: 8364 - uid: 21142 components: - type: Transform @@ -58656,6 +58471,16 @@ entities: - type: Transform pos: 63.5,1.5 parent: 8364 + - uid: 20682 + components: + - type: Transform + pos: 30.5,11.5 + parent: 8364 + - uid: 20683 + components: + - type: Transform + pos: 30.5,10.5 + parent: 8364 - uid: 21141 components: - type: Transform @@ -63417,6 +63242,20 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,12.5 parent: 8364 +- proto: ChairGreyscale + entities: + - uid: 20673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,7.5 + parent: 8364 + - uid: 20678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 8364 - proto: ChairOfficeDark entities: - uid: 592 @@ -65634,6 +65473,46 @@ entities: showEnts: False occludes: True ent: null + - uid: 20631 + components: + - type: Transform + pos: -17.5,6.5 + parent: 8364 + - uid: 20639 + components: + - type: Transform + pos: 54.5,-51.5 + parent: 8364 + - uid: 20640 + components: + - type: Transform + pos: 53.5,-51.5 + parent: 8364 + - uid: 20645 + components: + - type: Transform + pos: -77.5,10.5 + parent: 8364 + - uid: 20647 + components: + - type: Transform + pos: -77.5,-5.5 + parent: 8364 + - uid: 20649 + components: + - type: Transform + pos: -17.5,7.5 + parent: 8364 + - uid: 20694 + components: + - type: Transform + pos: 46.5,15.5 + parent: 8364 + - uid: 20695 + components: + - type: Transform + pos: 46.5,16.5 + parent: 8364 - uid: 21632 components: - type: Transform @@ -65718,6 +65597,43 @@ entities: - type: Transform pos: -40.5,-20.5 parent: 8364 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 7998 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 8364 + - uid: 20638 + components: + - type: Transform + pos: 77.5,-20.5 + parent: 8364 + - uid: 20642 + components: + - type: Transform + pos: 52.5,-51.5 + parent: 8364 + - uid: 20644 + components: + - type: Transform + pos: -78.5,10.5 + parent: 8364 + - uid: 20646 + components: + - type: Transform + pos: -78.5,-5.5 + parent: 8364 + - uid: 20648 + components: + - type: Transform + pos: -17.5,5.5 + parent: 8364 + - uid: 20693 + components: + - type: Transform + pos: 46.5,14.5 + parent: 8364 - proto: ClosetFireFilled entities: - uid: 1514 @@ -65863,11 +65779,6 @@ entities: - 0 - 0 - 0 - - uid: 16657 - components: - - type: Transform - pos: -3.5,-57.5 - parent: 8364 - uid: 16658 components: - type: Transform @@ -68044,6 +67955,16 @@ entities: - type: Transform pos: -12.483962,13.826879 parent: 8364 + - uid: 20675 + components: + - type: Transform + pos: 32.497746,7.719324 + parent: 8364 + - uid: 20676 + components: + - type: Transform + pos: 34.51337,7.703699 + parent: 8364 - proto: ClothingEyesHudMedical entities: - uid: 1858 @@ -68322,19 +68243,6 @@ entities: - type: Transform pos: -41.5,-7.5 parent: 8364 -- proto: ClothingHeadHatHairflower - entities: - - uid: 10943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,3.5000002 - parent: 8364 - - uid: 20891 - components: - - type: Transform - pos: -29.262028,3.9797268 - parent: 8364 - proto: ClothingHeadHatHopcap entities: - uid: 26077 @@ -68689,16 +68597,6 @@ entities: - type: Transform pos: 39.53401,11.65906 parent: 8364 - - uid: 25950 - components: - - type: Transform - pos: 29.682945,7.5553207 - parent: 8364 - - uid: 25982 - components: - - type: Transform - pos: 29.682945,7.5553207 - parent: 8364 - proto: ClothingNeckScarfStripedRed entities: - uid: 4029 @@ -68711,16 +68609,6 @@ entities: - type: Transform pos: -38.611267,-58.59867 parent: 8364 - - uid: 25927 - components: - - type: Transform - pos: 29.38607,7.7896957 - parent: 8364 - - uid: 25986 - components: - - type: Transform - pos: 29.38607,7.7896957 - parent: 8364 - proto: ClothingNeckScarfStripedZebra entities: - uid: 7242 @@ -68999,28 +68887,6 @@ entities: - type: Transform pos: 66.39981,-80.5017 parent: 8364 -- proto: ClothingShoesBootsWinter - entities: - - uid: 22644 - components: - - type: Transform - pos: 31.72982,7.3521957 - parent: 8364 - - uid: 25983 - components: - - type: Transform - pos: 31.72982,7.3521957 - parent: 8364 - - uid: 25985 - components: - - type: Transform - pos: 31.120445,7.3521957 - parent: 8364 - - uid: 26000 - components: - - type: Transform - pos: 31.120445,7.3521957 - parent: 8364 - proto: ClothingShoesBootsWork entities: - uid: 11558 @@ -69037,6 +68903,16 @@ entities: - type: Transform pos: 70.422775,14.622831 parent: 8364 + - uid: 20674 + components: + - type: Transform + pos: 37.220516,13.029548 + parent: 8364 + - uid: 20677 + components: + - type: Transform + pos: 37.5,13.5 + parent: 8364 - proto: ClothingShoeSlippersDuck entities: - uid: 21749 @@ -69087,6 +68963,20 @@ entities: - type: Transform pos: 3.6011043,-55.402374 parent: 8364 +- proto: ClothingUniformJumpsuitHawaiRed + entities: + - uid: 20696 + components: + - type: Transform + pos: 30.594074,11.439555 + parent: 8364 +- proto: ClothingUniformJumpsuitHawaiYellow + entities: + - uid: 20697 + components: + - type: Transform + pos: 36.594074,9.51768 + parent: 8364 - proto: ClothingUniformJumpsuitNanotrasen entities: - uid: 27655 @@ -71464,6 +71354,9 @@ entities: - type: Transform pos: 52.5,-29.5 parent: 8364 + - type: SingletonDeviceNetServer + active: False + available: False - proto: Crowbar entities: - uid: 5342 @@ -71582,15 +71475,11 @@ entities: - type: Transform pos: 30.5,-32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22544 components: - type: Transform pos: 32.5,-32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: CryoxadoneBeakerSmall entities: - uid: 19845 @@ -82008,8 +81897,6 @@ entities: - 16975 - 16976 - 23000 - - type: AtmosDevice - joinedGrid: 8364 - uid: 1447 components: - type: Transform @@ -82026,8 +81913,6 @@ entities: - 15393 - 15392 - 22624 - - type: AtmosDevice - joinedGrid: 8364 - uid: 1478 components: - type: Transform @@ -82039,8 +81924,6 @@ entities: - 5512 - 5513 - 1479 - - type: AtmosDevice - joinedGrid: 8364 - uid: 1907 components: - type: Transform @@ -82059,8 +81942,6 @@ entities: - 23151 - 16977 - 27489 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3213 components: - type: Transform @@ -82074,8 +81955,6 @@ entities: - 14149 - 22663 - 19972 - - type: AtmosDevice - joinedGrid: 8364 - uid: 10714 components: - type: Transform @@ -82091,8 +81970,6 @@ entities: - 8080 - 8110 - 22635 - - type: AtmosDevice - joinedGrid: 8364 - uid: 16454 components: - type: Transform @@ -82110,8 +81987,6 @@ entities: - 14342 - 21815 - 21816 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17069 components: - type: Transform @@ -82126,8 +82001,6 @@ entities: - 26635 - 16853 - 14486 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17071 components: - type: Transform @@ -82150,8 +82023,6 @@ entities: - 16943 - 1652 - 22561 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19166 components: - type: Transform @@ -82164,8 +82035,6 @@ entities: - 16977 - 23151 - 19168 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21479 components: - type: Transform @@ -82181,8 +82050,6 @@ entities: - 8080 - 8110 - 22635 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21545 components: - type: Transform @@ -82199,8 +82066,6 @@ entities: - 21539 - 21540 - 22704 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21794 components: - type: Transform @@ -82217,8 +82082,6 @@ entities: - 21540 - 21542 - 21541 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22560 components: - type: Transform @@ -82241,8 +82104,6 @@ entities: - 16943 - 1652 - 22561 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22569 components: - type: Transform @@ -82260,8 +82121,6 @@ entities: - 18754 - 18753 - 18752 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22590 components: - type: Transform @@ -82273,8 +82132,6 @@ entities: - 6917 - 9826 - 9825 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22592 components: - type: Transform @@ -82293,8 +82150,6 @@ entities: - 6910 - 14556 - 14153 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22595 components: - type: Transform @@ -82305,8 +82160,6 @@ entities: devices: - 22597 - 5754 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22604 components: - type: Transform @@ -82322,8 +82175,6 @@ entities: - 14129 - 14601 - 14630 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22605 components: - type: Transform @@ -82339,8 +82190,6 @@ entities: - 14129 - 14601 - 14630 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22616 components: - type: Transform @@ -82364,8 +82213,6 @@ entities: - 6760 - 6910 - 13473 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22619 components: - type: Transform @@ -82388,8 +82235,6 @@ entities: - 6760 - 6910 - 13473 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22627 components: - type: Transform @@ -82400,8 +82245,6 @@ entities: devices: - 22626 - 13473 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22629 components: - type: Transform @@ -82421,8 +82264,6 @@ entities: - 6683 - 6682 - 6685 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22638 components: - type: Transform @@ -82441,8 +82282,6 @@ entities: - 13385 - 13386 - 13388 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22643 components: - type: Transform @@ -82455,8 +82294,6 @@ entities: - 22646 - 22647 - 27233 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22654 components: - type: Transform @@ -82473,8 +82310,6 @@ entities: - 9865 - 13394 - 7252 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22656 components: - type: Transform @@ -82487,8 +82322,6 @@ entities: - 13394 - 22657 - 7252 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22660 components: - type: Transform @@ -82516,8 +82349,6 @@ entities: - 13381 - 13383 - 13384 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22664 components: - type: Transform @@ -82535,8 +82366,6 @@ entities: - 14094 - 11725 - 11719 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22669 components: - type: Transform @@ -82551,8 +82380,6 @@ entities: - 18680 - 18682 - 22668 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22671 components: - type: Transform @@ -82566,8 +82393,6 @@ entities: - 6211 - 5879 - 22672 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22675 components: - type: Transform @@ -82583,8 +82408,6 @@ entities: - 7981 - 5546 - 7993 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22683 components: - type: Transform @@ -82597,8 +82420,6 @@ entities: - 5546 - 7993 - 22681 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22689 components: - type: Transform @@ -82621,8 +82442,6 @@ entities: - 19992 - 19991 - 19993 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22692 components: - type: Transform @@ -82642,8 +82461,6 @@ entities: - 10521 - 10523 - 22691 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22698 components: - type: Transform @@ -82659,8 +82476,6 @@ entities: - 19992 - 19991 - 19993 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22705 components: - type: Transform @@ -82671,8 +82486,6 @@ entities: - 22707 - 13363 - 13364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22712 components: - type: Transform @@ -82693,8 +82506,6 @@ entities: - 6459 - 5236 - 5235 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22716 components: - type: Transform @@ -82708,8 +82519,6 @@ entities: - 13369 - 22717 - 13362 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22724 components: - type: Transform @@ -82724,8 +82533,6 @@ entities: - 6489 - 19883 - 22725 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22727 components: - type: Transform @@ -82741,8 +82548,6 @@ entities: - 5511 - 5512 - 5513 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22730 components: - type: Transform @@ -82758,8 +82563,6 @@ entities: - 6464 - 6467 - 22731 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22962 components: - type: Transform @@ -82769,8 +82572,6 @@ entities: devices: - 22958 - 14192 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23116 components: - type: Transform @@ -82785,8 +82586,6 @@ entities: - 5183 - 5182 - 23117 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23266 components: - type: Transform @@ -82801,8 +82600,6 @@ entities: - 7078 - 7180 - 7043 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23900 components: - type: Transform @@ -82822,8 +82619,6 @@ entities: - 11605 - 11600 - 23935 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23936 components: - type: Transform @@ -82842,8 +82637,6 @@ entities: - 11605 - 11600 - 23935 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23942 components: - type: Transform @@ -82858,8 +82651,6 @@ entities: - 11603 - 23939 - 23940 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25233 components: - type: Transform @@ -82871,8 +82662,6 @@ entities: - 9219 - 8930 - 8934 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25235 components: - type: Transform @@ -82885,8 +82674,6 @@ entities: - 8934 - 25236 - 19934 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25807 components: - type: Transform @@ -82904,8 +82691,6 @@ entities: - 25827 - 25826 - 11722 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25832 components: - type: Transform @@ -82916,8 +82701,6 @@ entities: - 25831 - 21816 - 21815 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25835 components: - type: Transform @@ -82928,8 +82711,6 @@ entities: - 25836 - 21814 - 21812 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25891 components: - type: Transform @@ -82942,8 +82723,6 @@ entities: - 9811 - 5879 - 6211 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25916 components: - type: Transform @@ -82953,8 +82732,6 @@ entities: - type: DeviceList devices: - 25914 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25965 components: - type: Transform @@ -82970,8 +82747,6 @@ entities: - 25960 - 25961 - 25962 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26399 components: - type: Transform @@ -82982,8 +82757,6 @@ entities: - 9185 - 26398 - 7282 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26400 components: - type: Transform @@ -82994,8 +82767,6 @@ entities: - 7301 - 8910 - 26397 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27312 components: - type: Transform @@ -83006,8 +82777,6 @@ entities: - 26111 - 7405 - 7357 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27407 components: - type: Transform @@ -83021,8 +82790,6 @@ entities: - 27404 - 27405 - 27406 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27487 components: - type: Transform @@ -83037,8 +82804,6 @@ entities: - 23151 - 16977 - 27489 - - type: AtmosDevice - joinedGrid: 8364 - proto: FireAxeCabinetFilled entities: - uid: 5782 @@ -85223,36 +84988,192 @@ entities: - type: Transform pos: 60.499405,18.485723 parent: 8364 -- proto: FloraTreeConifer01 +- proto: FloorWaterEntity entities: - - uid: 26007 + - uid: 9536 components: - type: Transform - pos: 37.46689,11.205443 + pos: 35.5,15.5 parent: 8364 - - uid: 26008 + - uid: 10792 components: - type: Transform - pos: 29.404388,15.142943 + pos: 35.5,14.5 parent: 8364 -- proto: FloraTreeSnow02 - entities: - - uid: 26018 + - uid: 13865 components: - type: Transform - pos: 30.177273,16.133446 + pos: 36.5,14.5 parent: 8364 -- proto: FloraTreeSnow06 - entities: - - uid: 26017 + - uid: 14956 components: - type: Transform - pos: 37.302273,7.6334457 + pos: 35.5,16.5 parent: 8364 - - uid: 26019 + - uid: 16657 components: - type: Transform - pos: 30.521023,7.7115707 + pos: 34.5,15.5 + parent: 8364 + - uid: 20387 + components: + - type: Transform + pos: 33.5,16.5 + parent: 8364 + - uid: 20388 + components: + - type: Transform + pos: 34.5,14.5 + parent: 8364 + - uid: 20595 + components: + - type: Transform + pos: 33.5,15.5 + parent: 8364 + - uid: 20596 + components: + - type: Transform + pos: 37.5,15.5 + parent: 8364 + - uid: 20597 + components: + - type: Transform + pos: 36.5,15.5 + parent: 8364 + - uid: 20627 + components: + - type: Transform + pos: 36.5,16.5 + parent: 8364 + - uid: 20628 + components: + - type: Transform + pos: 37.5,16.5 + parent: 8364 + - uid: 20629 + components: + - type: Transform + pos: 34.5,16.5 + parent: 8364 + - uid: 20634 + components: + - type: Transform + pos: 32.5,16.5 + parent: 8364 + - uid: 20635 + components: + - type: Transform + pos: 37.5,14.5 + parent: 8364 + - uid: 20636 + components: + - type: Transform + pos: 33.5,14.5 + parent: 8364 + - uid: 20650 + components: + - type: Transform + pos: 32.5,15.5 + parent: 8364 + - uid: 20651 + components: + - type: Transform + pos: 32.5,14.5 + parent: 8364 + - uid: 20652 + components: + - type: Transform + pos: 31.5,16.5 + parent: 8364 + - uid: 20653 + components: + - type: Transform + pos: 31.5,15.5 + parent: 8364 + - uid: 20654 + components: + - type: Transform + pos: 31.5,14.5 + parent: 8364 + - uid: 20655 + components: + - type: Transform + pos: 30.5,16.5 + parent: 8364 + - uid: 20656 + components: + - type: Transform + pos: 30.5,15.5 + parent: 8364 + - uid: 20657 + components: + - type: Transform + pos: 30.5,14.5 + parent: 8364 + - uid: 20658 + components: + - type: Transform + pos: 29.5,16.5 + parent: 8364 + - uid: 20661 + components: + - type: Transform + pos: 29.5,15.5 + parent: 8364 + - uid: 20662 + components: + - type: Transform + pos: 29.5,14.5 + parent: 8364 + - uid: 20663 + components: + - type: Transform + pos: 36.5,13.5 + parent: 8364 + - uid: 20664 + components: + - type: Transform + pos: 35.5,13.5 + parent: 8364 + - uid: 20665 + components: + - type: Transform + pos: 34.5,13.5 + parent: 8364 + - uid: 20666 + components: + - type: Transform + pos: 33.5,13.5 + parent: 8364 + - uid: 20667 + components: + - type: Transform + pos: 32.5,13.5 + parent: 8364 + - uid: 20668 + components: + - type: Transform + pos: 31.5,13.5 + parent: 8364 + - uid: 20669 + components: + - type: Transform + pos: 30.5,13.5 + parent: 8364 + - uid: 20670 + components: + - type: Transform + pos: 32.5,12.5 + parent: 8364 + - uid: 20671 + components: + - type: Transform + pos: 33.5,12.5 + parent: 8364 + - uid: 20672 + components: + - type: Transform + pos: 34.5,12.5 parent: 8364 - proto: FoodBanana entities: @@ -85422,6 +85343,19 @@ entities: - type: Transform pos: 55.5,17.5 parent: 8364 +- proto: FoodPoppy + entities: + - uid: 10943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,3.5000002 + parent: 8364 + - uid: 20891 + components: + - type: Transform + pos: -29.262028,3.9797268 + parent: 8364 - proto: FoodSnackPopcorn entities: - uid: 26853 @@ -85484,8 +85418,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17248 @@ -85496,8 +85428,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#3AB334FF' - uid: 17260 @@ -85508,8 +85438,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17263 @@ -85520,8 +85448,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-52.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#3AB334FF' - uid: 17264 @@ -85532,8 +85458,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-56.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#3AB334FF' - uid: 17838 @@ -85541,8 +85465,6 @@ entities: - type: Transform pos: 29.5,-34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasMinerCarbonDioxide @@ -85552,8 +85474,6 @@ entities: - type: Transform pos: 27.5,-55.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasMinerNitrogen entities: - uid: 16809 @@ -85563,8 +85483,6 @@ entities: parent: 8364 - type: GasMiner maxExternalPressure: 4500 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasMinerOxygen entities: - uid: 16808 @@ -85574,8 +85492,6 @@ entities: parent: 8364 - type: GasMiner maxExternalPressure: 4500 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasMinerWaterVapor entities: - uid: 16806 @@ -85583,8 +85499,6 @@ entities: - type: Transform pos: 27.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasMixer entities: - uid: 17052 @@ -85593,8 +85507,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-57.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 24988 @@ -85603,24 +85515,18 @@ entities: rot: -1.5707963267948966 rad pos: 76.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24989 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24996 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasMixerFlipped entities: - uid: 27555 @@ -85629,8 +85535,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-71.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasOutletInjector entities: - uid: 15511 @@ -85639,56 +85543,42 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15512 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15513 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-52.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15514 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-56.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15515 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-64.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15516 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-64.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 23110 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-83.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#947507FF' - proto: GasPassiveGate @@ -85698,8 +85588,6 @@ entities: - type: Transform pos: 20.5,-60.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GasPassiveVent @@ -85709,16 +85597,12 @@ entities: - type: Transform pos: 15.5,-52.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3823 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-85.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12676 @@ -85727,32 +85611,24 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 12680 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-39.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15517 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-64.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 16760 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-64.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 16764 @@ -85761,8 +85637,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-64.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 16765 @@ -85771,8 +85645,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-64.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17222 @@ -85781,8 +85653,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-42.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#947507FF' - uid: 17224 @@ -85791,8 +85661,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#B3A234FF' - uid: 17225 @@ -85801,8 +85669,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#B3A234FF' - uid: 17226 @@ -85811,8 +85677,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-54.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#B3A234FF' - uid: 17673 @@ -85821,8 +85685,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-84.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17675 @@ -85831,8 +85693,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-86.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20140 @@ -85841,16 +85701,12 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22844 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22948 @@ -85859,8 +85715,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-62.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23175 @@ -85869,16 +85723,12 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27182 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-94.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasPipeBend entities: - uid: 4 @@ -109200,55 +109050,41 @@ entities: - type: Transform pos: -44.5,16.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 445 components: - type: Transform pos: -43.5,16.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 768 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,8.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3798 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3802 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3991 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 4563 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-78.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4564 @@ -109257,8 +109093,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 5596 @@ -109267,15 +109101,11 @@ entities: rot: 3.141592653589793 rad pos: 26.5,21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 6256 components: - type: Transform pos: 15.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#947507FF' - uid: 6665 @@ -109284,30 +109114,22 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15045 components: - type: Transform pos: -20.5,-38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15046 components: - type: Transform pos: -21.5,-38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15505 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-49.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15506 @@ -109316,8 +109138,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15641 @@ -109326,23 +109146,17 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15642 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15893 components: - type: Transform pos: 18.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#947507FF' - uid: 16330 @@ -109351,15 +109165,11 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-19.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17060 components: - type: Transform pos: 16.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#947507FF' - uid: 17207 @@ -109367,36 +109177,26 @@ entities: - type: Transform pos: 14.5,-78.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17208 components: - type: Transform pos: 16.5,-78.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 18298 components: - type: Transform pos: 43.5,-38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 18299 components: - type: Transform pos: 44.5,-38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19162 components: - type: Transform pos: 17.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#947507FF' - uid: 19386 @@ -109405,161 +109205,119 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19387 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 20802 components: - type: Transform pos: 7.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21203 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24990 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24991 components: - type: Transform pos: 76.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24992 components: - type: Transform pos: 77.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24993 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24994 components: - type: Transform pos: 74.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24995 components: - type: Transform pos: 70.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24997 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24998 components: - type: Transform pos: 72.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 24999 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25000 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25001 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-39.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27178 components: - type: Transform pos: 22.5,-91.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27550 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-72.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27551 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-72.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27552 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-72.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27553 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-71.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27554 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-71.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasPressurePump entities: - uid: 3993 @@ -109567,8 +109325,6 @@ entities: - type: Transform pos: 1.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5251 @@ -109576,8 +109332,6 @@ entities: - type: Transform pos: 43.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7188 @@ -109586,8 +109340,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9437 @@ -109595,8 +109347,6 @@ entities: - type: Transform pos: 26.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10435 @@ -109605,8 +109355,6 @@ entities: rot: -1.5707963267948966 rad pos: 84.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10440 @@ -109614,8 +109362,6 @@ entities: - type: Transform pos: 40.5,6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13813 @@ -109624,8 +109370,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17000 @@ -109634,24 +109378,18 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-42.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17001 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17035 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-57.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 17084 @@ -109660,24 +109398,18 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-54.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17085 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17104 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17139 @@ -109685,8 +109417,6 @@ entities: - type: Transform pos: -43.5,14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17212 @@ -109694,8 +109424,6 @@ entities: - type: Transform pos: 14.5,-79.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17218 @@ -109706,8 +109434,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-60.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17219 @@ -109718,8 +109444,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-60.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 17220 @@ -109730,8 +109454,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-60.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 17221 @@ -109739,8 +109461,6 @@ entities: - type: Transform pos: 16.5,-79.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 17568 @@ -109749,16 +109469,12 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19160 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-57.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 22840 @@ -109766,16 +109482,12 @@ entities: - type: Transform pos: 15.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22928 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25004 @@ -109784,24 +109496,18 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25005 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-39.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26040 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26081 @@ -109811,8 +109517,6 @@ entities: - type: Transform pos: 17.5,-57.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#947507FF' - proto: GasThermoMachineFreezer @@ -109823,58 +109527,42 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19121 components: - type: Transform pos: 33.5,-32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 20141 components: - type: Transform pos: 38.5,0.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21274 components: - type: Transform pos: 57.5,-29.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21406 components: - type: Transform pos: 70.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22565 components: - type: Transform pos: 18.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22688 components: - type: Transform pos: 18.5,-50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27380 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-72.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasThermoMachineHeater entities: - uid: 3803 @@ -109883,37 +109571,27 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17695 components: - type: Transform pos: 12.5,-50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17696 components: - type: Transform pos: 12.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21405 components: - type: Transform pos: 74.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27549 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-72.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasValve entities: - uid: 4136 @@ -109923,8 +109601,6 @@ entities: parent: 8364 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4228 @@ -109934,8 +109610,6 @@ entities: parent: 8364 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 14079 @@ -109946,8 +109620,6 @@ entities: parent: 8364 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 8364 - uid: 17062 components: - type: Transform @@ -109956,8 +109628,6 @@ entities: parent: 8364 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#947507FF' - uid: 17339 @@ -109968,8 +109638,6 @@ entities: parent: 8364 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 8364 - uid: 22843 components: - type: MetaData @@ -109978,8 +109646,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25002 @@ -109988,16 +109654,12 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 25003 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-39.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: GasVentPump entities: - uid: 4546 @@ -110006,8 +109668,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-73.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5382 @@ -110016,8 +109676,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-10.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5462 @@ -110025,16 +109683,12 @@ entities: - type: Transform pos: -15.5,-68.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 7282 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7293 @@ -110043,8 +109697,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7296 @@ -110053,8 +109705,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,45.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8909 @@ -110063,8 +109713,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8910 @@ -110073,8 +109721,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8950 @@ -110083,8 +109729,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8955 @@ -110093,8 +109737,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9392 @@ -110102,8 +109744,6 @@ entities: - type: Transform pos: 13.5,20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10452 @@ -110112,8 +109752,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-0.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14562 @@ -110122,8 +109760,6 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-18.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15344 @@ -110132,8 +109768,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16399 @@ -110142,8 +109776,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-63.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17123 @@ -110152,8 +109784,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-61.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17188 @@ -110161,8 +109791,6 @@ entities: - type: Transform pos: -1.5,-66.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17520 @@ -110171,8 +109799,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-43.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18741 @@ -110181,8 +109807,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-62.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19113 @@ -110191,8 +109815,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22458 @@ -110200,8 +109822,6 @@ entities: - type: Transform pos: 1.5,0.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22696 @@ -110210,8 +109830,6 @@ entities: rot: -1.5707963267948966 rad pos: 79.5,-12.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22950 @@ -110220,8 +109838,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22952 @@ -110229,8 +109845,6 @@ entities: - type: Transform pos: 16.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23011 @@ -110238,8 +109852,6 @@ entities: - type: Transform pos: 9.5,-52.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23068 @@ -110248,8 +109860,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-56.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23089 @@ -110258,8 +109868,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-55.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23090 @@ -110267,8 +109875,6 @@ entities: - type: Transform pos: -7.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23091 @@ -110276,8 +109882,6 @@ entities: - type: Transform pos: -6.5,-54.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23121 @@ -110286,8 +109890,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-66.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23146 @@ -110296,8 +109898,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-62.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23179 @@ -110306,8 +109906,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-73.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23261 @@ -110316,8 +109914,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-69.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23279 @@ -110326,8 +109922,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-42.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23281 @@ -110336,8 +109930,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23303 @@ -110346,8 +109938,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23304 @@ -110356,8 +109946,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-37.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23946 @@ -110366,8 +109954,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-26.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23947 @@ -110376,8 +109962,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23949 @@ -110386,8 +109970,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23998 @@ -110395,8 +109977,6 @@ entities: - type: Transform pos: -20.5,-22.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23999 @@ -110404,8 +109984,6 @@ entities: - type: Transform pos: -21.5,-18.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24010 @@ -110414,8 +109992,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24011 @@ -110424,8 +110000,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24031 @@ -110434,8 +110008,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24038 @@ -110444,8 +110016,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24052 @@ -110454,8 +110024,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24057 @@ -110464,8 +110032,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24063 @@ -110474,8 +110040,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-27.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24072 @@ -110483,8 +110047,6 @@ entities: - type: Transform pos: -7.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24082 @@ -110493,8 +110055,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-11.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24085 @@ -110503,8 +110063,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24086 @@ -110513,8 +110071,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24096 @@ -110523,8 +110079,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24098 @@ -110533,8 +110087,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24108 @@ -110543,8 +110095,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-26.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24110 @@ -110553,8 +110103,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-18.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24178 @@ -110562,8 +110110,6 @@ entities: - type: Transform pos: -2.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24179 @@ -110571,8 +110117,6 @@ entities: - type: Transform pos: 1.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24187 @@ -110581,8 +110125,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24216 @@ -110591,8 +110133,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24217 @@ -110601,8 +110141,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24220 @@ -110611,8 +110149,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24240 @@ -110621,8 +110157,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-16.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24241 @@ -110631,8 +110165,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24243 @@ -110641,8 +110173,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24246 @@ -110650,8 +110180,6 @@ entities: - type: Transform pos: 78.5,-2.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24291 @@ -110660,8 +110188,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24292 @@ -110670,8 +110196,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24293 @@ -110680,8 +110204,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,12.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24294 @@ -110690,8 +110212,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24299 @@ -110699,8 +110219,6 @@ entities: - type: Transform pos: 11.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24331 @@ -110709,8 +110227,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24333 @@ -110719,8 +110235,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24334 @@ -110729,8 +110243,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24336 @@ -110739,8 +110251,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,2.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24368 @@ -110748,8 +110258,6 @@ entities: - type: Transform pos: 11.5,12.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24369 @@ -110757,8 +110265,6 @@ entities: - type: Transform pos: 12.5,14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24370 @@ -110766,8 +110272,6 @@ entities: - type: Transform pos: 16.5,14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24376 @@ -110775,8 +110279,6 @@ entities: - type: Transform pos: 19.5,12.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24400 @@ -110785,8 +110287,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24419 @@ -110795,8 +110295,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24420 @@ -110805,8 +110303,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24463 @@ -110815,8 +110311,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,3.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24493 @@ -110824,8 +110318,6 @@ entities: - type: Transform pos: 30.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24505 @@ -110834,8 +110326,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-8.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24519 @@ -110843,8 +110333,6 @@ entities: - type: Transform pos: 37.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24583 @@ -110853,8 +110341,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-17.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24584 @@ -110863,8 +110349,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-17.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24585 @@ -110872,8 +110356,6 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24588 @@ -110881,8 +110363,6 @@ entities: - type: Transform pos: 29.5,-24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24599 @@ -110890,8 +110370,6 @@ entities: - type: Transform pos: 19.5,-20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24643 @@ -110899,8 +110377,6 @@ entities: - type: Transform pos: 42.5,-20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24645 @@ -110908,8 +110384,6 @@ entities: - type: Transform pos: 39.5,-18.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24671 @@ -110917,8 +110391,6 @@ entities: - type: Transform pos: 40.5,-27.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24672 @@ -110927,8 +110399,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-28.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24705 @@ -110937,8 +110407,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-28.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24706 @@ -110947,8 +110415,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24707 @@ -110957,8 +110423,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24745 @@ -110967,8 +110431,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24746 @@ -110977,8 +110439,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24775 @@ -110987,8 +110447,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24776 @@ -110997,8 +110455,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24811 @@ -111007,8 +110463,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24812 @@ -111017,8 +110471,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24813 @@ -111027,8 +110479,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-49.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24831 @@ -111037,8 +110487,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24849 @@ -111046,8 +110494,6 @@ entities: - type: Transform pos: 44.5,-53.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24863 @@ -111055,8 +110501,6 @@ entities: - type: Transform pos: 35.5,-55.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24864 @@ -111065,8 +110509,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-58.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24879 @@ -111075,8 +110517,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24880 @@ -111085,8 +110525,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24914 @@ -111095,8 +110533,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-8.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24920 @@ -111104,8 +110540,6 @@ entities: - type: Transform pos: 47.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24921 @@ -111113,8 +110547,6 @@ entities: - type: Transform pos: 67.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24931 @@ -111122,8 +110554,6 @@ entities: - type: Transform pos: 73.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24968 @@ -111132,8 +110562,6 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,2.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25069 @@ -111141,8 +110569,6 @@ entities: - type: Transform pos: 70.5,-23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25070 @@ -111151,8 +110577,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25115 @@ -111161,8 +110585,6 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25131 @@ -111171,8 +110593,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-26.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25132 @@ -111181,8 +110601,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-29.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25133 @@ -111191,8 +110609,6 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-29.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25142 @@ -111201,8 +110617,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25164 @@ -111211,8 +110625,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25165 @@ -111221,8 +110633,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25168 @@ -111231,8 +110641,6 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25170 @@ -111241,8 +110649,6 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25206 @@ -111251,8 +110657,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25224 @@ -111261,8 +110665,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-40.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25242 @@ -111270,8 +110672,6 @@ entities: - type: Transform pos: 56.5,-39.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25260 @@ -111280,8 +110680,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25276 @@ -111290,8 +110688,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25289 @@ -111300,8 +110696,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25304 @@ -111310,8 +110704,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-4.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25307 @@ -111320,8 +110712,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25314 @@ -111330,8 +110720,6 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-10.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25315 @@ -111339,8 +110727,6 @@ entities: - type: Transform pos: -59.5,1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25316 @@ -111349,8 +110735,6 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25325 @@ -111358,8 +110742,6 @@ entities: - type: Transform pos: -60.5,4.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25336 @@ -111368,8 +110750,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25366 @@ -111378,8 +110758,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-11.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25367 @@ -111388,8 +110766,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25376 @@ -111397,8 +110773,6 @@ entities: - type: Transform pos: -38.5,3.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25394 @@ -111407,8 +110781,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25395 @@ -111417,8 +110789,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25396 @@ -111426,8 +110796,6 @@ entities: - type: Transform pos: -40.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25407 @@ -111435,8 +110803,6 @@ entities: - type: Transform pos: -30.5,3.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25409 @@ -111444,8 +110810,6 @@ entities: - type: Transform pos: -25.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25418 @@ -111454,8 +110818,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25420 @@ -111464,8 +110826,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25421 @@ -111474,8 +110834,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,16.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25483 @@ -111483,8 +110841,6 @@ entities: - type: Transform pos: -16.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25484 @@ -111493,8 +110849,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,19.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25485 @@ -111503,8 +110857,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,15.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25486 @@ -111513,8 +110865,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,15.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25488 @@ -111522,8 +110872,6 @@ entities: - type: Transform pos: -6.5,20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25519 @@ -111531,8 +110879,6 @@ entities: - type: Transform pos: 9.5,20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25533 @@ -111541,8 +110887,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25557 @@ -111551,8 +110895,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,27.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25558 @@ -111561,8 +110903,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25619 @@ -111571,8 +110911,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25620 @@ -111581,8 +110919,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25621 @@ -111591,8 +110927,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25622 @@ -111601,8 +110935,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25623 @@ -111611,8 +110943,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25751 @@ -111621,8 +110951,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25753 @@ -111631,8 +110959,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25755 @@ -111640,8 +110966,6 @@ entities: - type: Transform pos: -10.5,27.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25757 @@ -111650,8 +110974,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,28.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25761 @@ -111659,8 +110981,6 @@ entities: - type: Transform pos: 1.5,36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25762 @@ -111669,8 +110989,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25803 @@ -111678,8 +110996,6 @@ entities: - type: Transform pos: 15.5,38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25804 @@ -111688,8 +111004,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25805 @@ -111697,8 +111011,6 @@ entities: - type: Transform pos: 8.5,36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25824 @@ -111707,8 +111019,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26692 @@ -111717,8 +111027,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-75.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26693 @@ -111727,8 +111035,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-74.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26694 @@ -111737,8 +111043,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-74.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26949 @@ -111747,8 +111051,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-109.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26950 @@ -111757,8 +111059,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-106.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26951 @@ -111767,8 +111067,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-92.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26958 @@ -111777,8 +111075,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-91.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26959 @@ -111787,8 +111083,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26960 @@ -111797,8 +111091,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-85.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26961 @@ -111806,8 +111098,6 @@ entities: - type: Transform pos: 28.5,-79.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27233 @@ -111816,8 +111106,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -111828,8 +111116,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-74.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5383 @@ -111837,8 +111123,6 @@ entities: - type: Transform pos: 57.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5463 @@ -111847,15 +111131,11 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-69.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 7284 components: - type: Transform pos: -7.5,44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7294 @@ -111863,8 +111143,6 @@ entities: - type: Transform pos: -13.5,47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7295 @@ -111872,8 +111150,6 @@ entities: - type: Transform pos: -18.5,44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7301 @@ -111882,8 +111158,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8953 @@ -111892,8 +111166,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9185 @@ -111902,8 +111174,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15347 @@ -111912,8 +111182,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16832 @@ -111921,8 +111189,6 @@ entities: - type: Transform pos: -0.5,-46.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17122 @@ -111931,8 +111197,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-61.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17187 @@ -111941,8 +111205,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-67.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17630 @@ -111950,8 +111212,6 @@ entities: - type: Transform pos: 5.5,-43.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19123 @@ -111959,8 +111219,6 @@ entities: - type: Transform pos: 28.5,-32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20132 @@ -111969,8 +111227,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22459 @@ -111978,8 +111234,6 @@ entities: - type: Transform pos: -2.5,0.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22695 @@ -111988,8 +111242,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-12.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22778 @@ -111998,8 +111250,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22800 @@ -112008,8 +111258,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-63.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22828 @@ -112018,8 +111266,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-64.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22951 @@ -112027,8 +111273,6 @@ entities: - type: Transform pos: 11.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23010 @@ -112037,8 +111281,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-52.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23067 @@ -112047,8 +111289,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-57.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23086 @@ -112057,8 +111297,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-57.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23087 @@ -112067,8 +111305,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-56.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23088 @@ -112076,8 +111312,6 @@ entities: - type: Transform pos: -5.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23120 @@ -112086,8 +111320,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-65.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23177 @@ -112096,8 +111328,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-74.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23260 @@ -112106,8 +111336,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-68.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23278 @@ -112116,8 +111344,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-43.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23302 @@ -112126,8 +111352,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23305 @@ -112136,8 +111360,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23941 @@ -112146,8 +111368,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-27.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23948 @@ -112155,8 +111375,6 @@ entities: - type: Transform pos: 1.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23950 @@ -112164,8 +111382,6 @@ entities: - type: Transform pos: -12.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24012 @@ -112174,8 +111390,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24013 @@ -112183,8 +111397,6 @@ entities: - type: Transform pos: -22.5,-18.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24014 @@ -112193,8 +111405,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24032 @@ -112203,8 +111413,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24039 @@ -112213,8 +111421,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24051 @@ -112223,8 +111429,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24056 @@ -112233,8 +111437,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24062 @@ -112243,8 +111445,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-22.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24073 @@ -112252,8 +111452,6 @@ entities: - type: Transform pos: -8.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24083 @@ -112262,8 +111460,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-12.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24084 @@ -112272,8 +111468,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24087 @@ -112282,8 +111476,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-15.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24097 @@ -112292,8 +111484,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24099 @@ -112302,8 +111492,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24109 @@ -112312,8 +111500,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-25.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24111 @@ -112322,8 +111508,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-19.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24180 @@ -112332,8 +111516,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24181 @@ -112342,8 +111524,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24188 @@ -112352,8 +111532,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24219 @@ -112362,8 +111540,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24224 @@ -112372,8 +111548,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24239 @@ -112382,8 +111556,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-16.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24242 @@ -112392,8 +111564,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24244 @@ -112402,8 +111572,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24245 @@ -112411,8 +111579,6 @@ entities: - type: Transform pos: 76.5,-2.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24295 @@ -112421,8 +111587,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24296 @@ -112431,8 +111595,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24297 @@ -112441,8 +111603,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24298 @@ -112451,8 +111611,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24300 @@ -112461,8 +111619,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24332 @@ -112471,8 +111627,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,3.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24335 @@ -112481,8 +111635,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24337 @@ -112491,8 +111643,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,8.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24338 @@ -112501,8 +111651,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,8.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24371 @@ -112510,8 +111658,6 @@ entities: - type: Transform pos: 13.5,14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24372 @@ -112519,8 +111665,6 @@ entities: - type: Transform pos: 17.5,14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24373 @@ -112529,8 +111673,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24377 @@ -112539,8 +111681,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24401 @@ -112549,8 +111689,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24421 @@ -112559,8 +111697,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24422 @@ -112569,8 +111705,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24436 @@ -112579,8 +111713,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24464 @@ -112588,8 +111720,6 @@ entities: - type: Transform pos: 20.5,3.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24494 @@ -112597,8 +111727,6 @@ entities: - type: Transform pos: 29.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24506 @@ -112607,8 +111735,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-8.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24520 @@ -112616,8 +111742,6 @@ entities: - type: Transform pos: 36.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24581 @@ -112626,8 +111750,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24582 @@ -112636,8 +111758,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-18.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24586 @@ -112646,8 +111766,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24587 @@ -112656,8 +111774,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24610 @@ -112665,8 +111781,6 @@ entities: - type: Transform pos: 20.5,-20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24644 @@ -112674,8 +111788,6 @@ entities: - type: Transform pos: 41.5,-20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24646 @@ -112683,8 +111795,6 @@ entities: - type: Transform pos: 38.5,-18.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24673 @@ -112693,8 +111803,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-27.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24674 @@ -112703,8 +111811,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24709 @@ -112713,8 +111819,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24711 @@ -112723,8 +111827,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24712 @@ -112733,8 +111835,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-28.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24747 @@ -112743,8 +111843,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24752 @@ -112753,8 +111851,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24777 @@ -112763,8 +111859,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-39.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24778 @@ -112773,8 +111867,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-39.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24814 @@ -112783,8 +111875,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-48.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24815 @@ -112793,8 +111883,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-45.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24816 @@ -112803,8 +111891,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-45.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24830 @@ -112813,8 +111899,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-53.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24850 @@ -112823,8 +111907,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24851 @@ -112833,8 +111915,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24852 @@ -112843,8 +111923,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-55.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24853 @@ -112853,8 +111931,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-56.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24878 @@ -112862,8 +111938,6 @@ entities: - type: Transform pos: 43.5,-53.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24916 @@ -112871,8 +111945,6 @@ entities: - type: Transform pos: 47.5,-0.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24917 @@ -112881,8 +111953,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24918 @@ -112891,8 +111961,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24919 @@ -112901,8 +111969,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-13.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24930 @@ -112911,8 +111977,6 @@ entities: rot: 3.141592653589793 rad pos: 73.5,-10.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24967 @@ -112921,8 +111985,6 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25035 @@ -112931,8 +111993,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-18.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25071 @@ -112941,8 +112001,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25072 @@ -112950,8 +112008,6 @@ entities: - type: Transform pos: 70.5,-21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25116 @@ -112959,8 +112015,6 @@ entities: - type: Transform pos: 61.5,-22.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25134 @@ -112969,8 +112023,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25135 @@ -112979,8 +112031,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25136 @@ -112989,8 +112039,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-27.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25143 @@ -112999,8 +112047,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25166 @@ -113009,8 +112055,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25167 @@ -113019,8 +112063,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25169 @@ -113029,8 +112071,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25171 @@ -113039,8 +112079,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25207 @@ -113049,8 +112087,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-50.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25223 @@ -113059,8 +112095,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-41.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25241 @@ -113068,8 +112102,6 @@ entities: - type: Transform pos: 58.5,-39.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25261 @@ -113078,8 +112110,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-45.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25290 @@ -113088,8 +112118,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,10.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25305 @@ -113098,8 +112126,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25306 @@ -113108,8 +112134,6 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-2.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25313 @@ -113118,8 +112142,6 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25317 @@ -113127,8 +112149,6 @@ entities: - type: Transform pos: -58.5,-4.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25318 @@ -113137,8 +112157,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,0.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25324 @@ -113146,8 +112164,6 @@ entities: - type: Transform pos: -57.5,4.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25337 @@ -113156,8 +112172,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-7.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25364 @@ -113166,8 +112180,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25365 @@ -113176,8 +112188,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-11.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25377 @@ -113185,8 +112195,6 @@ entities: - type: Transform pos: -45.5,3.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25392 @@ -113195,8 +112203,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25393 @@ -113205,8 +112211,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-5.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25397 @@ -113215,8 +112219,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25406 @@ -113224,8 +112226,6 @@ entities: - type: Transform pos: -31.5,3.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25408 @@ -113234,8 +112234,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-1.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25419 @@ -113244,8 +112242,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25422 @@ -113254,8 +112250,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,14.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25423 @@ -113264,8 +112258,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,4.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25479 @@ -113274,8 +112266,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,15.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25480 @@ -113284,8 +112274,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,15.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25481 @@ -113294,8 +112282,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25482 @@ -113303,8 +112289,6 @@ entities: - type: Transform pos: -17.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25487 @@ -113313,8 +112297,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25516 @@ -113323,8 +112305,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,21.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25518 @@ -113333,8 +112313,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25534 @@ -113343,8 +112321,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25559 @@ -113353,8 +112329,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25560 @@ -113363,8 +112337,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,28.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25624 @@ -113373,8 +112345,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,23.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25625 @@ -113383,8 +112353,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25626 @@ -113393,8 +112361,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25627 @@ -113403,8 +112369,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25628 @@ -113413,8 +112377,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25752 @@ -113423,8 +112385,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25754 @@ -113433,8 +112393,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25756 @@ -113443,8 +112401,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25758 @@ -113453,8 +112409,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,29.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25759 @@ -113463,8 +112417,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25760 @@ -113472,8 +112424,6 @@ entities: - type: Transform pos: 2.5,36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25800 @@ -113482,8 +112432,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,31.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25801 @@ -113491,8 +112439,6 @@ entities: - type: Transform pos: 7.5,37.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25802 @@ -113501,8 +112447,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,38.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25823 @@ -113511,8 +112455,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26695 @@ -113521,8 +112463,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-73.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26696 @@ -113530,8 +112470,6 @@ entities: - type: Transform pos: -6.5,-72.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26697 @@ -113540,8 +112478,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-73.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -113551,8 +112487,6 @@ entities: - type: Transform pos: 16.5,-73.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 17159 @@ -113561,8 +112495,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-73.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - proto: GeigerCounter @@ -121511,8 +120443,6 @@ entities: - type: Transform pos: 35.5,-73.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 27427 @@ -121521,8 +120451,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-85.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - type: AtmosPipeColor color: '#FF1212FF' - proto: Hemostat @@ -122143,6 +121071,13 @@ entities: - type: Transform pos: -12.493954,3.065948 parent: 8364 +- proto: Jukebox + entities: + - uid: 20632 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 8364 - proto: KitchenElectricGrill entities: - uid: 27772 @@ -124775,30 +123710,6 @@ entities: - 0 - 0 - 0 - - uid: 10792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,18.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 18623 components: - type: Transform @@ -125125,92 +124036,66 @@ entities: - type: Transform pos: 34.5,-69.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 11705 components: - type: Transform pos: 50.5,17.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 13827 components: - type: Transform pos: -40.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 13844 components: - type: Transform pos: 19.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15931 components: - type: Transform pos: -18.5,-62.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17705 components: - type: Transform pos: 9.5,-44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17752 components: - type: Transform pos: 11.5,-44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17767 components: - type: Transform pos: 10.5,-44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21301 components: - type: Transform pos: 60.5,-36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21302 components: - type: Transform pos: 60.5,-37.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21432 components: - type: Transform pos: 71.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22902 components: - type: Transform pos: 13.5,-66.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26808 components: - type: Transform pos: -13.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: NitrousOxideTankFilled entities: - uid: 21342 @@ -125288,162 +124173,116 @@ entities: - type: Transform pos: 9.5,-43.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3794 components: - type: Transform pos: 10.5,-43.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 5181 components: - type: Transform pos: -29.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 8916 components: - type: Transform pos: -16.5,22.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 11706 components: - type: Transform pos: 51.5,17.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 11982 components: - type: Transform pos: -6.5,6.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 13828 components: - type: Transform pos: -41.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15605 components: - type: Transform pos: -32.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 15932 components: - type: Transform pos: -18.5,-61.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 17700 components: - type: Transform pos: 11.5,-43.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 18668 components: - type: Transform pos: 35.5,-69.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19193 components: - type: Transform pos: 29.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 19243 components: - type: Transform pos: 57.5,-30.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21297 components: - type: Transform pos: 62.5,-36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21298 components: - type: Transform pos: 62.5,-37.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21299 components: - type: Transform pos: 61.5,-36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21300 components: - type: Transform pos: 61.5,-37.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21431 components: - type: Transform pos: 70.5,-59.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22903 components: - type: Transform pos: 17.5,-66.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22923 components: - type: Transform pos: 11.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22924 components: - type: Transform pos: 12.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 26807 components: - type: Transform pos: -14.5,9.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 27446 components: - type: Transform pos: 9.5,-65.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: OxygenTank entities: - uid: 21419 @@ -126532,29 +125371,21 @@ entities: - type: Transform pos: 28.5,-47.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3611 components: - type: Transform pos: 13.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3680 components: - type: Transform pos: 14.5,-70.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22576 components: - type: Transform pos: 14.5,-44.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 540 @@ -132889,6 +131720,23 @@ entities: - type: Transform pos: 80.5,-29.5 parent: 8364 +- proto: RandomArtifactSpawner20 + entities: + - uid: 20637 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 8364 + - uid: 20641 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 8364 + - uid: 20643 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 8364 - proto: RandomBoard entities: - uid: 5724 @@ -132953,6 +131801,13 @@ entities: - type: Transform pos: 28.5,-7.5 parent: 8364 +- proto: RandomDrinkSoda + entities: + - uid: 20690 + components: + - type: Transform + pos: 37.5,9.5 + parent: 8364 - proto: RandomFoodSingle entities: - uid: 5210 @@ -133573,6 +132428,18 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 8364 +- proto: RandomSnacks + entities: + - uid: 20688 + components: + - type: Transform + pos: 36.5,10.5 + parent: 8364 + - uid: 20689 + components: + - type: Transform + pos: 30.5,10.5 + parent: 8364 - proto: RandomSoap entities: - uid: 6245 @@ -133807,11 +132674,6 @@ entities: - type: Transform pos: -24.5,6.5 parent: 8364 - - uid: 13865 - components: - - type: Transform - pos: -17.5,6.5 - parent: 8364 - uid: 13867 components: - type: Transform @@ -143954,34 +142816,46 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-32.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 6971 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-1.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 8201 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-2.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 11688 components: - type: Transform pos: 72.5,12.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 19087 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 8364 + - type: SpamEmitSound + enabled: False - uid: 26426 components: - type: Transform pos: -4.5,45.5 parent: 8364 + - type: SpamEmitSound + enabled: False - proto: SpawnMobAlexander entities: - uid: 27538 @@ -144038,23 +142912,6 @@ entities: - type: Transform pos: 12.5,-57.5 parent: 8364 -- proto: SpawnMobDrone - entities: - - uid: 7998 - components: - - type: Transform - pos: -50.5,-5.5 - parent: 8364 - - uid: 14956 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 8364 - - uid: 21494 - components: - - type: Transform - pos: -50.5,-4.5 - parent: 8364 - proto: SpawnMobFoxRenault entities: - uid: 17227 @@ -144071,6 +142928,11 @@ entities: parent: 8364 - proto: SpawnMobLizard entities: + - uid: 20687 + components: + - type: Transform + pos: 35.5,15.5 + parent: 8364 - uid: 27583 components: - type: Transform @@ -144876,23 +143738,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 8364 - - uid: 25949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,8.5 - parent: 8364 - - uid: 25981 - components: - - type: Transform - pos: 31.5,16.5 - parent: 8364 - - uid: 25984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,8.5 - parent: 8364 - proto: Stool entities: - uid: 377 @@ -145309,92 +144154,66 @@ entities: - type: Transform pos: 10.5,-42.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3793 components: - type: Transform pos: 11.5,-42.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 3797 components: - type: Transform pos: 9.5,-42.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21424 components: - type: Transform pos: 76.5,-36.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21425 components: - type: Transform pos: 76.5,-35.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21426 components: - type: Transform pos: 76.5,-34.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21427 components: - type: Transform pos: 76.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 21428 components: - type: Transform pos: 76.5,-32.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22906 components: - type: Transform pos: 59.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22907 components: - type: Transform pos: 28.5,-43.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22938 components: - type: Transform pos: 60.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22939 components: - type: Transform pos: 61.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22940 components: - type: Transform pos: 62.5,-33.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: SubstationBasic entities: - uid: 1666 @@ -149794,8 +148613,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-75.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: TegCirculator entities: - uid: 5010 @@ -150449,6 +149266,11 @@ entities: - type: Transform pos: 16.5,5.5 parent: 8364 + - uid: 20686 + components: + - type: Transform + pos: 31.579891,15.170173 + parent: 8364 - proto: ToySpawner entities: - uid: 5445 @@ -170648,13 +169470,6 @@ entities: parent: 8364 - type: WarpPoint location: port bow - - uid: 22220 - components: - - type: Transform - pos: -33.5,-63.5 - parent: 8364 - - type: WarpPoint - location: port quarter - uid: 22221 components: - type: Transform @@ -170837,15 +169652,11 @@ entities: - type: Transform pos: 14.5,-42.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - uid: 22905 components: - type: Transform pos: 28.5,-51.5 parent: 8364 - - type: AtmosDevice - joinedGrid: 8364 - proto: WeaponCapacitorRecharger entities: - uid: 5307 @@ -173299,6 +172110,20 @@ entities: - type: Transform pos: 73.5,-1.5 parent: 8364 +- proto: WoodenBench + entities: + - uid: 20684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,11.5 + parent: 8364 + - uid: 20685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 8364 - proto: Wrench entities: - uid: 2220 diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index cc12d77259..607d8fb4f3 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -32761,7 +32761,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 9e977b9b35..038c9adcff 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -162,7 +162,7 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: HwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAABHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAABwAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAABwAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABXQAAAAACHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAaAAAAAADXQAAAAAAaAAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAJAAAAAABfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABaAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAaAAAAAAAXQAAAAACXQAAAAACJAAAAAADfgAAAAAAXQAAAAAATgAAAAAATgAAAAACaAAAAAAATgAAAAAATgAAAAABaAAAAAABaAAAAAABaAAAAAAAaAAAAAABaAAAAAACaAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAbgAAAAADbgAAAAACbgAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAB + tiles: HwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADHwAAAAABHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABXQAAAAACHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABaAAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAaAAAAAADXQAAAAAAaAAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAJAAAAAABfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAaAAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABaAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAaAAAAAAAXQAAAAACXQAAAAACJAAAAAADfgAAAAAAXQAAAAAATgAAAAAATgAAAAACaAAAAAAATgAAAAAATgAAAAABaAAAAAABaAAAAAABaAAAAAAAaAAAAAABaAAAAAACaAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAbgAAAAADbgAAAAACbgAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAB version: 6 3,-3: ind: 3,-3 @@ -282,7 +282,7 @@ entities: version: 6 4,-2: ind: 4,-2 - tiles: fgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADJAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABJAAAAAADJAAAAAADJAAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAACHwAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAaAAAAAADXQAAAAACegAAAAAAegAAAAADfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAADXQAAAAADXQAAAAADJAAAAAACfgAAAAAAaAAAAAACXQAAAAABegAAAAABegAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAaAAAAAABXQAAAAAAJAAAAAACegAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbgAAAAADbgAAAAABbgAAAAACbAAAAAAATgAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACbQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAATgAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACbQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAbgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADJAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABJAAAAAADJAAAAAADJAAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAACHwAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAJAAAAAAAegAAAAABegAAAAADegAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAaAAAAAADXQAAAAACegAAAAAAegAAAAADfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAJAAAAAAAegAAAAAAegAAAAADegAAAAADXQAAAAADXQAAAAADJAAAAAACfgAAAAAAaAAAAAACXQAAAAABegAAAAABegAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAJAAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAaAAAAAABXQAAAAAAJAAAAAACegAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbgAAAAADbgAAAAABbgAAAAACbAAAAAAATgAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACbQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAATgAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACbQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAA version: 6 5,-1: ind: 5,-1 @@ -290,7 +290,7 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: bQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAAbQAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAgQAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADXQAAAAABXQAAAAABaAAAAAABaAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAbgAAAAACfgAAAAAAJAAAAAACJAAAAAAAXQAAAAABXQAAAAADJAAAAAAAJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAbgAAAAABfgAAAAAAJAAAAAADJAAAAAABXQAAAAADXQAAAAABJAAAAAADJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAA + tiles: bQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbgAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbgAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAgQAAAAAAgQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAADXQAAAAABXQAAAAABaAAAAAABaAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAbgAAAAACfgAAAAAAJAAAAAACJAAAAAAAXQAAAAABXQAAAAADJAAAAAAAJAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAbgAAAAABfgAAAAAAJAAAAAADJAAAAAABXQAAAAADXQAAAAABJAAAAAADJAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfQAAAAAAfgAAAAAAbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAA version: 6 4,-3: ind: 4,-3 @@ -369,20 +369,20 @@ entities: color: '#32CD32FF' id: Arrows decals: - 1736: 53,14 + 1734: 53,14 - node: angle: 1.5707963267948966 rad color: '#32CD32FF' id: Arrows decals: - 1737: 55,14 + 1735: 55,14 - node: angle: 4.71238898038469 rad color: '#DE3A3A96' id: Arrows decals: - 1197: 3,31 - 1198: 3,30 + 1195: 3,31 + 1196: 3,30 - node: angle: 1.5707963267948966 rad color: '#EFB34196' @@ -394,68 +394,69 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 1891: 69,-28 - 1892: 70,-28 - 6186: -44.266167,24.17379 - 6187: -43.71579,24.16156 - 6886: 7.80612,-46.838108 - 6887: 8.233204,-46.827694 + 1889: 69,-28 + 1890: 70,-28 + 6157: -44.266167,24.17379 + 6158: -43.71579,24.16156 + 6857: 7.80612,-46.838108 + 6858: 8.233204,-46.827694 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: 350: 44,-22 - 1271: 22,15 - 1329: -18,28 - 1785: 62,-25 - 1786: 62,-24 - 1955: 61,-18 - 1956: 61,-20 - 1980: 22,-38 - 1981: 22,-37 - 6184: -45.159,22.681658 - 6185: -45.17123,23.256496 + 1269: 22,15 + 1327: -18,28 + 1783: 62,-25 + 1784: 62,-24 + 1953: 61,-18 + 1954: 61,-20 + 1978: 22,-38 + 1979: 22,-37 + 6155: -45.159,22.681658 + 6156: -45.17123,23.256496 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 3001: -25,37 + 2980: -25,37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 1275: 25,23 - 1276: 29,23 - 1812: 68.96644,-11.160069 - 1813: 69.96644,-11.15081 - 1814: 67.97107,-11.15544 - 6182: -43.71579,21.837746 - 6183: -44.32732,21.837746 - 6708: -33,-12 + 1273: 25,23 + 1274: 29,23 + 1810: 68.96644,-11.160069 + 1811: 69.96644,-11.15081 + 1812: 67.97107,-11.15544 + 6153: -43.71579,21.837746 + 6154: -44.32732,21.837746 + 6679: -33,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 1274: 25,12 - 6180: -42.87188,22.669428 - 6181: -42.85965,23.219805 + 1272: 25,12 + 6151: -42.87188,22.669428 + 6152: -42.85965,23.219805 - node: color: '#FFFFFFFF' id: Basalt1 decals: 309: 26,-21 - 2251: 26,1 + 2230: 26,1 + 6900: 54.43144,-23.18127 - node: cleanable: True color: '#FFFFFFFF' id: Basalt1 decals: - 3047: 80.98914,-5.89228 + 3026: 80.98914,-5.89228 - node: color: '#FFFFFFFF' id: Basalt2 @@ -466,26 +467,26 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 3049: 79.36655,-6.805498 + 3028: 79.36655,-6.805498 - node: color: '#FFFFFFFF' id: Basalt3 decals: 312: 26,-24 - 1749: 57,19 + 1747: 57,19 - node: cleanable: True color: '#FFFFFFFF' id: Basalt3 decals: - 3046: 80.410225,-6.9767265 + 3025: 80.410225,-6.9767265 - node: color: '#FFFFFFFF' id: Basalt4 decals: 315: 26,-24 941: -48,-27 - 1941: 56,-23 + 1939: 56,-23 - node: color: '#FFFFFFFF' id: Basalt5 @@ -493,8 +494,10 @@ entities: 311: 26,-22 314: 25,-23 940: -48,-28 - 1939: 54,-21 - 2252: 25,1 + 1937: 54,-21 + 2231: 25,1 + 6899: 54.08898,-21.835905 + 6901: 56.437256,-22.899967 - node: color: '#FFFFFFFF' id: Basalt6 @@ -506,20 +509,21 @@ entities: decals: 310: 25,-22 938: -49,-29 - 1750: 57,18 - 1940: 57,-23 + 1748: 57,18 + 1938: 57,-23 - node: cleanable: True color: '#FFFFFFFF' id: Basalt7 decals: - 3048: 80.88314,-7.8817906 + 3027: 80.88314,-7.8817906 - node: color: '#FFFFFFFF' id: Basalt8 decals: 34: -4,-12 942: -47,-30 + 6902: 56.755253,-20.832996 - node: color: '#FFFFFFFF' id: Basalt9 @@ -531,31 +535,31 @@ entities: color: '#FFFFFFFF' id: Basalt9 decals: - 3050: 79.17086,-7.824714 + 3029: 79.17086,-7.824714 - node: color: '#D4D4D428' id: Bot decals: - 2206: -36,-58 - 2207: -36,-59 - 2208: -36,-60 - 2209: -36,-61 - 2210: -36,-62 - 2211: -36,-63 - 2212: -36,-64 - 2213: -60,-58 - 2214: -60,-59 - 2215: -60,-60 - 2216: -60,-61 - 2217: -60,-62 - 2218: -60,-63 - 2219: -60,-64 + 2185: -36,-58 + 2186: -36,-59 + 2187: -36,-60 + 2188: -36,-61 + 2189: -36,-62 + 2190: -36,-63 + 2191: -36,-64 + 2192: -60,-58 + 2193: -60,-59 + 2194: -60,-60 + 2195: -60,-61 + 2196: -60,-62 + 2197: -60,-63 + 2198: -60,-64 - node: color: '#DE3A3A41' id: Bot decals: - 6633: -38,-45 - 6634: -38,-45 + 6604: -38,-45 + 6605: -38,-45 - node: color: '#EFB34196' id: Bot @@ -628,19 +632,19 @@ entities: color: '#FFFFFF4A' id: Bot decals: - 6757: 18,-56 - 6758: 19,-56 + 6728: 18,-56 + 6729: 19,-56 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 1787: 63,-25 - 1788: 63,-24 - 1789: 65,-25 - 1790: 65,-24 - 2174: -10,-41 - 2175: -10,-40 + 1785: 63,-25 + 1786: 63,-24 + 1787: 65,-25 + 1788: 65,-24 + 2153: -10,-41 + 2154: -10,-40 - node: color: '#FFFFFFFF' id: Bot @@ -668,268 +672,283 @@ entities: 886: -52,-1 1084: 33,-3 1085: 34,-3 - 1111: 39,-28 - 1112: -26,-32 - 1113: 49,-22 - 1114: 35,2 - 1115: 21,21 - 1116: 34,-37 - 1117: -62,-29 - 1127: -5,31 - 1128: -6,31 - 1129: -6,32 - 1130: -5,32 - 1133: 2,26 - 1234: -1,27 - 1235: 7,30 - 1236: 7,31 - 1237: 7,32 - 1238: 7,33 - 1239: 6,33 - 1240: 2,32 - 1251: -4,48 - 1268: 23,15 - 1269: 23,13 - 1277: 23,8 - 1278: 23,7 - 1279: 23,6 - 1280: 24,6 - 1281: 24,7 - 1282: 24,8 - 1283: 25,6 - 1290: 25,7 - 1291: 25,8 - 1292: 26,20 - 1293: 25,20 - 1294: 24,20 - 1295: 24,19 - 1296: 25,19 - 1297: 26,19 - 1298: 28,20 - 1299: 29,20 - 1300: 30,20 - 1301: 28,19 - 1302: 29,19 - 1303: 30,19 - 1310: 29,17 - 1321: -10,34 - 1322: -9,34 - 1323: -8,34 - 1324: -7,34 - 1328: -18,25 - 1331: 33,17 - 1433: 58,-33 - 1440: 57,-35 - 1451: 47,12 - 1483: 44,11 - 1767: 61,-12 - 1768: 57,-15 - 1769: 57,-14 - 1773: 64,-24 - 1774: 64,-25 - 1809: 71,-11 - 1810: 71,-12 - 1811: 71,-13 - 1871: 63,-19 - 1876: 70,-22 - 1905: 69,-13 - 1960: 22,-39 - 1979: 22,-36 - 2020: 28,-36 - 2021: 29,-36 - 2022: 28,-47 - 2077: 12,-46 - 2078: 13,-46 - 2119: -2,-35 - 2120: -1,-35 - 2121: 3,-38 - 2122: 3,-37 - 2146: 10,-41 - 2152: 12,-38 - 2171: -6,-34 - 2172: -5,-34 - 2173: -4,-34 - 2223: 41,-10 - 2224: -23,12 - 2840: 66,-23 - 2872: -27,30 - 2885: 57,15 - 3173: 75,-13 - 3174: 75,-15 - 3179: 75,-19 - 3180: 75,-17 - 6417: 48,-10 - 6418: 51,5 - 6419: 53,10 - 6561: -36,-65 - 6562: -60,-65 - 6696: -34,-11 - 6697: -34,-10 - 6698: -32,-11 - 6699: -32,-10 - 6718: 61,-21 - 6725: -24,-42 - 6735: 3,48 - 6755: 62,-7 - 6756: 62,-8 - 6842: 54,-33 - 6846: 22,-59 - 6847: 15,-59 - 6850: -19,-38 - 6876: 7,-48 - 6877: 7,-49 - 6878: 9,-48 - 6879: 9,-49 - 6888: 7,-45 - 6889: 9,-45 + 1109: 39,-28 + 1110: -26,-32 + 1111: 49,-22 + 1112: 35,2 + 1113: 21,21 + 1114: 34,-37 + 1115: -62,-29 + 1125: -5,31 + 1126: -6,31 + 1127: -6,32 + 1128: -5,32 + 1131: 2,26 + 1232: -1,27 + 1233: 7,30 + 1234: 7,31 + 1235: 7,32 + 1236: 7,33 + 1237: 6,33 + 1238: 2,32 + 1249: -4,48 + 1266: 23,15 + 1267: 23,13 + 1275: 23,8 + 1276: 23,7 + 1277: 23,6 + 1278: 24,6 + 1279: 24,7 + 1280: 24,8 + 1281: 25,6 + 1288: 25,7 + 1289: 25,8 + 1290: 26,20 + 1291: 25,20 + 1292: 24,20 + 1293: 24,19 + 1294: 25,19 + 1295: 26,19 + 1296: 28,20 + 1297: 29,20 + 1298: 30,20 + 1299: 28,19 + 1300: 29,19 + 1301: 30,19 + 1308: 29,17 + 1319: -10,34 + 1320: -9,34 + 1321: -8,34 + 1322: -7,34 + 1326: -18,25 + 1329: 33,17 + 1431: 58,-33 + 1438: 57,-35 + 1449: 47,12 + 1481: 44,11 + 1765: 61,-12 + 1766: 57,-15 + 1767: 57,-14 + 1771: 64,-24 + 1772: 64,-25 + 1807: 71,-11 + 1808: 71,-12 + 1809: 71,-13 + 1869: 63,-19 + 1874: 70,-22 + 1903: 69,-13 + 1958: 22,-39 + 1977: 22,-36 + 2018: 28,-36 + 2019: 29,-36 + 2020: 28,-47 + 2075: 12,-46 + 2076: 13,-46 + 2117: -2,-35 + 2118: -1,-35 + 2119: 3,-38 + 2120: 3,-37 + 2125: 10,-41 + 2131: 12,-38 + 2150: -6,-34 + 2151: -5,-34 + 2152: -4,-34 + 2202: 41,-10 + 2203: -23,12 + 2819: 66,-23 + 2851: -27,30 + 2864: 57,15 + 3152: 75,-13 + 3153: 75,-15 + 3158: 75,-19 + 3159: 75,-17 + 6388: 48,-10 + 6389: 51,5 + 6390: 53,10 + 6532: -36,-65 + 6533: -60,-65 + 6667: -34,-11 + 6668: -34,-10 + 6669: -32,-11 + 6670: -32,-10 + 6689: 61,-21 + 6696: -24,-42 + 6706: 3,48 + 6726: 62,-7 + 6727: 62,-8 + 6813: 54,-33 + 6817: 22,-59 + 6818: 15,-59 + 6821: -19,-38 + 6847: 7,-48 + 6848: 7,-49 + 6849: 9,-48 + 6850: 9,-49 + 6859: 7,-45 + 6860: 9,-45 + 6861: 76,-23 + 6862: 80,-25 + 6863: 76,-25 + 6888: 76,-23 + 6889: 58,-27 + 6890: 58,-26 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 2969: -25,34 - 2970: -25,35 - 2971: -30,35 - 2972: -30,34 - 2998: -23,38 - 2999: -10,38 - 3000: -9,38 - 3051: 78,-8 - 3052: 79,-8 + 2948: -25,34 + 2949: -25,35 + 2950: -30,35 + 2951: -30,34 + 2977: -23,38 + 2978: -10,38 + 2979: -9,38 + 3030: 78,-8 + 3031: 79,-8 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 6579: 91,-19 - 6580: 91,-18 - 6581: 92,-18 - 6582: 92,-19 - 6583: 87,-19 - 6584: 88,-19 - 6585: 88,-18 - 6586: 87,-18 + 6550: 91,-19 + 6551: 91,-18 + 6552: 92,-18 + 6553: 92,-19 + 6554: 87,-19 + 6555: 88,-19 + 6556: 88,-18 + 6557: 87,-18 - node: color: '#52B4E996' id: BotGreyscale decals: - 6322: 55,8 - 6323: 55,8 - 6324: 56,8 - 6325: 56,8 - 6339: 57,1 - 6340: 57,1 - 6341: 56,1 - 6342: 56,1 - 6343: 55,4 - 6344: 55,4 - 6345: 56,4 - 6346: 56,4 - 6347: 57,4 - 6348: 57,4 + 6293: 55,8 + 6294: 55,8 + 6295: 56,8 + 6296: 56,8 + 6310: 57,1 + 6311: 57,1 + 6312: 56,1 + 6313: 56,1 + 6314: 55,4 + 6315: 55,4 + 6316: 56,4 + 6317: 56,4 + 6318: 57,4 + 6319: 57,4 - node: cleanable: True color: '#D4D4D428' id: BotGreyscale decals: - 3021: 76,-28 - 3022: 80,-28 - 3023: 78,-30 - 3024: 78,-26 + 3002: 78,-30 - node: cleanable: True color: '#EFB341FF' id: BotLeft decals: - 6120: 6,-14 - 6122: 6,-14 + 6091: 6,-14 + 6093: 6,-14 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1869: 74,-13 - 1870: 74,-12 - 1961: 23,-39 - 1962: 24,-39 - 1963: 25,-39 - 2150: 12,-39 - 6541: -3,33 + 1867: 74,-13 + 1868: 74,-12 + 1959: 23,-39 + 1960: 24,-39 + 1961: 25,-39 + 2129: 12,-39 + 6512: -3,33 - node: cleanable: True color: '#FFFFFFFF' id: BotLeft decals: - 6117: 6,-14 + 6088: 6,-14 + - node: + color: '#D4D4D496' + id: BotLeftGreyscale + decals: + 6880: 77,-30 + 6881: 76,-30 - node: angle: -6.283185307179586 rad color: '#EFB34196' id: BotLeftGreyscale decals: - 6621: -1,-20 - 6622: -1,-21 + 6592: -1,-20 + 6593: -1,-21 - node: cleanable: True color: '#EFB341FF' id: BotLeftGreyscale decals: - 6121: 6,-14 + 6092: 6,-14 - node: angle: -6.283185307179586 rad color: '#EFB34196' id: BotRight decals: - 6623: -2,-21 - 6624: -2,-20 + 6594: -2,-21 + 6595: -2,-20 - node: cleanable: True color: '#EFB341FF' id: BotRight decals: - 6123: 6,-15 + 6094: 6,-15 - node: color: '#FFFFFFFF' id: BotRight decals: - 1867: 73,-12 - 1868: 73,-13 - 1964: 23,-36 - 1965: 24,-36 - 1966: 25,-36 - 2151: 12,-40 - 6542: -3,34 + 1865: 73,-12 + 1866: 73,-13 + 1962: 23,-36 + 1963: 24,-36 + 1964: 25,-36 + 2130: 12,-40 + 6513: -3,34 - node: cleanable: True color: '#FFFFFFFF' id: BotRight decals: - 6118: 6,-15 + 6089: 6,-15 + - node: + color: '#D4D4D496' + id: BotRightGreyscale + decals: + 6876: 79,-30 + 6877: 80,-30 - node: cleanable: True color: '#EFB341FF' id: BotRightGreyscale decals: - 6119: 6,-15 + 6090: 6,-15 - node: color: '#FFFFFFFF' id: Box decals: - 1088: 33,0 - 1089: 34,0 - 1118: -57,-24 - 1119: -56,-24 - 1994: 19,-37 - 1995: 19,-36 - 6606: 92,-20 + 1086: 33,0 + 1087: 34,0 + 1116: -57,-24 + 1117: -56,-24 + 1992: 19,-37 + 1993: 19,-36 + 6577: 92,-20 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 795: -31,-36 1067: 28,-29 - 1432: 58,-34 - 1884: 69,-29 - 2101: 22,-53 - 6875: 9,-48 + 1430: 58,-34 + 1882: 69,-29 + 2099: 22,-53 + 6846: 9,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -937,10 +956,10 @@ entities: 128: 0,-21 794: -33,-36 1065: 24,-29 - 1429: 56,-34 - 1883: 70,-29 - 2104: 15,-53 - 6874: 7,-48 + 1427: 56,-34 + 1881: 70,-29 + 2102: 15,-53 + 6845: 7,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe @@ -948,11 +967,11 @@ entities: 793: -31,-38 994: 46,-34 1066: 28,-34 - 1430: 58,-36 - 1886: 69,-30 - 2079: 17,-53 - 2103: 22,-60 - 6873: 9,-49 + 1428: 58,-36 + 1884: 69,-30 + 2077: 17,-53 + 2101: 22,-60 + 6844: 9,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw @@ -960,26 +979,26 @@ entities: 792: -33,-38 993: 34,-34 1068: 24,-34 - 1431: 56,-36 - 1885: 70,-30 - 2080: 20,-53 - 2102: 15,-60 - 6872: 7,-49 + 1429: 56,-36 + 1883: 70,-30 + 2078: 20,-53 + 2100: 15,-60 + 6843: 7,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 119: -4,-16 629: -39,-16 - 1154: -4,21 - 1424: 56,-36 - 1808: 70,-11 - 1863: 74,-17 - 1866: 74,-14 - 2095: 15,-60 - 2100: 22,-53 - 2107: 21,-53 - 2108: 22,-54 + 1152: -4,21 + 1422: 56,-36 + 1806: 70,-11 + 1861: 74,-17 + 1864: 74,-14 + 2093: 15,-60 + 2098: 22,-53 + 2105: 21,-53 + 2106: 22,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -987,35 +1006,35 @@ entities: 46: -12,-19 81: -5,-15 231: 0,-22 - 1153: -1,21 - 1423: 58,-36 - 1807: 68,-11 - 2096: 22,-60 - 2099: 15,-53 - 2105: 16,-53 - 2106: 15,-54 + 1151: -1,21 + 1421: 58,-36 + 1805: 68,-11 + 2094: 22,-60 + 2097: 15,-53 + 2103: 16,-53 + 2104: 15,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 628: -39,-13 - 1159: -4,27 - 1422: 56,-34 - 1864: 74,-15 - 1865: 74,-19 - 2094: 15,-53 - 2097: 22,-60 - 2109: 21,-60 + 1157: -4,27 + 1420: 56,-34 + 1862: 74,-15 + 1863: 74,-19 + 2092: 15,-53 + 2095: 22,-60 + 2107: 21,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: 45: -12,-14 478: -25,-1 - 1421: 58,-34 - 2093: 22,-53 - 2098: 15,-60 - 2110: 16,-60 + 1419: 58,-34 + 2091: 22,-53 + 2096: 15,-60 + 2108: 16,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -1088,37 +1107,37 @@ entities: 1052: 28,-32 1053: 28,-31 1058: 28,-30 - 1149: -4,23 - 1150: -4,24 - 1151: -4,24 - 1152: -4,25 - 1171: -3,36 - 1172: -3,37 - 1173: -3,38 - 1244: 0,45 - 1245: 0,46 - 1246: 0,47 - 1257: 0,48 - 1418: 56,-35 - 1425: 58,-35 - 1879: 69,-30 - 1880: 69,-29 - 1957: 22,-39 - 1958: 22,-38 - 1959: 22,-37 - 2000: 27,-47 - 2001: 27,-46 - 2002: 27,-45 - 2003: 27,-44 - 2004: 27,-43 - 2005: 27,-42 - 2089: 15,-58 - 2090: 15,-57 - 2091: 15,-55 - 2092: 15,-54 - 2115: 16,-60 - 6420: 53,12 - 6421: 53,11 + 1147: -4,23 + 1148: -4,24 + 1149: -4,24 + 1150: -4,25 + 1169: -3,36 + 1170: -3,37 + 1171: -3,38 + 1242: 0,45 + 1243: 0,46 + 1244: 0,47 + 1255: 0,48 + 1416: 56,-35 + 1423: 58,-35 + 1877: 69,-30 + 1878: 69,-29 + 1955: 22,-39 + 1956: 22,-38 + 1957: 22,-37 + 1998: 27,-47 + 1999: 27,-46 + 2000: 27,-45 + 2001: 27,-44 + 2002: 27,-43 + 2003: 27,-42 + 2087: 15,-58 + 2088: 15,-57 + 2089: 15,-55 + 2090: 15,-54 + 2113: 16,-60 + 6391: 53,12 + 6392: 53,11 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1177,52 +1196,52 @@ entities: 1081: 30,-2 1082: 31,-2 1083: 32,-2 - 1100: -46,-16 - 1101: -45,-16 - 1102: -44,-16 - 1155: -2,21 - 1156: -3,21 - 1247: -3,51 - 1248: -2,51 - 1249: 1,51 - 1250: 2,51 - 1420: 57,-36 - 1427: 57,-34 - 1503: -52,-49 - 1504: -51,-49 - 1505: -50,-49 + 1098: -46,-16 + 1099: -45,-16 + 1100: -44,-16 + 1153: -2,21 + 1154: -3,21 + 1245: -3,51 + 1246: -2,51 + 1247: 1,51 + 1248: 2,51 + 1418: 57,-36 + 1425: 57,-34 + 1501: -52,-49 + 1502: -51,-49 + 1503: -50,-49 + 1504: -48,-49 + 1505: -49,-49 1506: -48,-49 - 1507: -49,-49 - 1508: -48,-49 - 1509: -48,-49 - 1510: -47,-49 - 1511: -46,-49 - 1512: -45,-49 - 1513: -44,-49 - 1805: 67,-11 - 1806: 71,-11 - 1889: 71,-29 - 1890: 68,-29 - 2014: 28,-43 - 2015: 29,-43 - 2083: 16,-60 - 2084: 21,-60 - 2111: 15,-57 - 2112: 22,-57 - 6107: -14,-23 - 6108: -15,-23 - 6109: -16,-23 - 6594: 87,-20 - 6595: 88,-20 - 6596: 89,-20 - 6597: 90,-20 - 6598: 91,-20 - 6599: 92,-20 - 6861: 33,-2 - 6862: 34,-2 - 6869: 7,-48 - 6870: 8,-48 - 6871: 9,-48 + 1507: -48,-49 + 1508: -47,-49 + 1509: -46,-49 + 1510: -45,-49 + 1511: -44,-49 + 1803: 67,-11 + 1804: 71,-11 + 1887: 71,-29 + 1888: 68,-29 + 2012: 28,-43 + 2013: 29,-43 + 2081: 16,-60 + 2082: 21,-60 + 2109: 15,-57 + 2110: 22,-57 + 6078: -14,-23 + 6079: -15,-23 + 6080: -16,-23 + 6565: 87,-20 + 6566: 88,-20 + 6567: 89,-20 + 6568: 90,-20 + 6569: 91,-20 + 6570: 92,-20 + 6832: 33,-2 + 6833: 34,-2 + 6840: 7,-48 + 6841: 8,-48 + 6842: 9,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1282,66 +1301,65 @@ entities: 1059: 25,-34 1060: 26,-34 1061: 27,-34 - 1120: -57,-27 - 1121: -56,-27 - 1122: -55,-27 - 1123: -54,-27 - 1157: -3,27 - 1158: -2,27 - 1419: 57,-34 - 1428: 57,-36 - 1514: -56,-54 - 1515: -55,-54 - 1516: -54,-54 - 1517: -41,-54 - 1518: -40,-54 - 1887: 68,-30 - 1888: 71,-30 - 2016: 28,-46 - 2017: 29,-46 - 2081: 16,-53 - 2082: 21,-53 - 2113: 22,-55 - 2114: 15,-55 - 2157: 10,-40 - 2158: 11,-40 - 2222: -42,-54 - 6104: -14,-25 - 6105: -15,-25 - 6106: -16,-25 - 6189: -3,43 - 6190: -2,43 - 6191: -1,43 - 6222: 45,14 - 6223: 47,14 - 6224: 46,14 - 6394: 49,-11 - 6395: 52,-11 - 6558: -29,-17 - 6600: 87,-21 - 6601: 89,-21 - 6602: 88,-21 - 6603: 90,-21 - 6604: 91,-21 - 6605: 92,-21 - 6866: 7,-49 - 6867: 8,-49 - 6868: 9,-49 + 1118: -57,-27 + 1119: -56,-27 + 1120: -55,-27 + 1121: -54,-27 + 1155: -3,27 + 1156: -2,27 + 1417: 57,-34 + 1426: 57,-36 + 1512: -56,-54 + 1513: -55,-54 + 1514: -54,-54 + 1515: -41,-54 + 1516: -40,-54 + 1885: 68,-30 + 1886: 71,-30 + 2014: 28,-46 + 2015: 29,-46 + 2079: 16,-53 + 2080: 21,-53 + 2111: 22,-55 + 2112: 15,-55 + 2136: 10,-40 + 2137: 11,-40 + 2201: -42,-54 + 6075: -14,-25 + 6076: -15,-25 + 6077: -16,-25 + 6160: -3,43 + 6161: -2,43 + 6162: -1,43 + 6193: 45,14 + 6194: 47,14 + 6195: 46,14 + 6365: 49,-11 + 6366: 52,-11 + 6529: -29,-17 + 6571: 87,-21 + 6572: 89,-21 + 6573: 88,-21 + 6574: 90,-21 + 6575: 91,-21 + 6576: 92,-21 + 6837: 7,-49 + 6838: 8,-49 + 6839: 9,-49 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2973: -30,36 - 2974: -29,36 - 2975: -28,36 - 2976: -27,36 - 2977: -26,36 - 2997: -30,36 - 3017: 76,-25 - 3018: 77,-25 - 3019: 78,-25 - 3020: 79,-25 + 2952: -30,36 + 2953: -29,36 + 2954: -28,36 + 2955: -27,36 + 2956: -26,36 + 2976: -30,36 + 2997: 77,-25 + 2998: 78,-25 + 2999: 79,-25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1413,60 +1431,60 @@ entities: 1055: 24,-32 1056: 24,-31 1057: 24,-30 - 1146: -1,23 - 1147: -1,24 - 1148: -1,25 - 1168: -1,36 - 1169: -1,37 - 1170: -1,38 - 1241: -4,45 - 1242: -4,46 - 1243: -4,47 - 1287: 26,6 - 1288: 26,7 - 1289: 26,8 - 1417: 58,-35 - 1426: 56,-35 - 1881: 70,-30 - 1882: 70,-29 - 2085: 22,-58 - 2086: 22,-57 - 2087: 22,-55 - 2088: 22,-54 - 2116: 21,-60 + 1144: -1,23 + 1145: -1,24 + 1146: -1,25 + 1166: -1,36 + 1167: -1,37 + 1168: -1,38 + 1239: -4,45 + 1240: -4,46 + 1241: -4,47 + 1285: 26,6 + 1286: 26,7 + 1287: 26,8 + 1415: 58,-35 + 1424: 56,-35 + 1879: 70,-30 + 1880: 70,-29 + 2083: 22,-58 + 2084: 22,-57 + 2085: 22,-55 + 2086: 22,-54 + 2114: 21,-60 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: 213: 7,-19 - 1160: -6,28 + 1158: -6,28 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: 703: -39,-34 - 1950: 57,-21 - 6703: -33,-12 + 1948: 57,-21 + 6674: -33,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: 702: -30,-34 - 1949: 54,-21 - 6702: -33,-12 + 1947: 54,-21 + 6673: -33,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: 701: -39,-25 - 1951: 57,-23 + 1949: 57,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: 700: -30,-25 - 1416: 44,5 - 1952: 54,-23 + 1414: 44,5 + 1950: 54,-23 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -1494,13 +1512,13 @@ entities: 754: -39,-26 804: -52,0 805: -52,2 - 1166: -6,27 - 1167: -6,26 - 1858: 74,-15 - 1859: 74,-14 - 1860: 74,-17 - 1861: 74,-18 - 1862: 74,-19 + 1164: -6,27 + 1165: -6,26 + 1856: 74,-15 + 1857: 74,-14 + 1858: 74,-17 + 1859: 74,-18 + 1860: 74,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1526,27 +1544,27 @@ entities: 1075: 38,-4 1076: 39,-4 1077: 36,-4 - 1161: -7,28 - 1162: -8,28 - 1163: -9,28 - 1164: -10,28 - 1165: -11,28 - 1877: 69,-28 - 1878: 70,-28 - 2117: 0,-37 - 2118: 1,-37 - 2123: 2,-37 - 2869: -27,27 - 2870: -26,27 - 2871: -25,27 - 6700: -34,-12 - 6701: -32,-12 + 1159: -7,28 + 1160: -8,28 + 1161: -9,28 + 1162: -10,28 + 1163: -11,28 + 1875: 69,-28 + 1876: 70,-28 + 2115: 0,-37 + 2116: 1,-37 + 2121: 2,-37 + 2848: -27,27 + 2849: -26,27 + 2850: -25,27 + 6671: -34,-12 + 6672: -32,-12 - node: cleanable: True color: '#FFFFFF35' id: BrickTileSteelLineS decals: - 6125: 83,-35 + 6096: 83,-35 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1569,25 +1587,25 @@ entities: 1072: 37,-1 1073: 39,-1 1078: 38,-1 - 1103: -48,-16 - 1104: -49,-16 - 1105: -50,-16 - 1106: -51,-16 - 1413: 40,5 - 1414: 42,5 - 1415: 43,5 - 1478: 41,5 - 3056: 51,22 - 3057: 50,22 - 3058: 52,22 - 6556: -34,-17 - 6557: -33,-17 + 1101: -48,-16 + 1102: -49,-16 + 1103: -50,-16 + 1104: -51,-16 + 1411: 40,5 + 1412: 42,5 + 1413: 43,5 + 1476: 41,5 + 3035: 51,22 + 3036: 50,22 + 3037: 52,22 + 6527: -34,-17 + 6528: -33,-17 - node: cleanable: True color: '#FFFFFF35' id: BrickTileSteelLineW decals: - 6124: 81,-34 + 6095: 81,-34 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1608,114 +1626,114 @@ entities: 756: -30,-33 806: -43,0 807: -43,2 - 1124: 3,23 - 1125: 3,24 - 1126: 3,25 - 1131: -6,33 - 1132: -6,34 - 1410: 44,1 - 1411: 44,2 - 1412: 44,3 - 1448: 44,4 + 1122: 3,23 + 1123: 3,24 + 1124: 3,25 + 1129: -6,33 + 1130: -6,34 + 1408: 44,1 + 1409: 44,2 + 1410: 44,3 + 1446: 44,4 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: - 1351: 28,15 - 1384: 28,8 - 1401: 36,22 - 1402: 27,14 + 1349: 28,15 + 1382: 28,8 + 1399: 36,22 + 1400: 27,14 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 1793: 60,-13 - 1815: 70,-12 + 1791: 60,-13 + 1813: 70,-12 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 6690: 52,-26 + 6661: 52,-26 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2846: -4,14 + 2825: -4,14 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2982: -25,38 + 2961: -25,38 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: - 1400: 33,22 - 1405: 26,14 + 1398: 33,22 + 1403: 26,14 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1794: 58,-13 - 1818: 68,-12 + 1792: 58,-13 + 1816: 68,-12 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 6689: 51,-26 + 6660: 51,-26 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2202: -54,9 - 2845: -2,14 + 2181: -54,9 + 2824: -2,14 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2981: -30,38 + 2960: -30,38 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 1350: 28,10 - 1383: 28,6 - 1399: 36,17 - 1403: 27,11 + 1348: 28,10 + 1381: 28,6 + 1397: 36,17 + 1401: 27,11 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 1795: 60,-14 - 1816: 70,-14 + 1793: 60,-14 + 1814: 70,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 6688: 52,-27 + 6659: 52,-27 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 1404: 26,11 + 1402: 26,11 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 1796: 58,-14 - 1817: 68,-14 + 1794: 58,-14 + 1815: 68,-14 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 6691: 51,-27 + 6662: 51,-27 - node: color: '#EFB34196' id: BrickTileWhiteEndE decals: - 2868: 63,9 + 2847: 63,9 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe @@ -1727,25 +1745,25 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 1480: 41,5 - 1758: 57,-7 - 6368: 48,-1 - 6385: 49,-7 + 1478: 41,5 + 1756: 57,-7 + 6339: 48,-1 + 6356: 49,-7 - node: color: '#A4610696' id: BrickTileWhiteInnerNe decals: - 1386: 26,8 + 1384: 26,8 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1327: -18,27 + 1325: -18,27 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 1463: 41,11 + 1461: 41,11 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw @@ -1755,14 +1773,14 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1479: 45,5 - 6367: 52,-1 - 6384: 51,-7 + 1477: 45,5 + 6338: 52,-1 + 6355: 51,-7 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 1462: 47,11 + 1460: 47,11 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe @@ -1772,55 +1790,55 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 1482: 45,4 - 6366: 48,-8 - 6383: 49,-2 - 6387: 50,-8 + 1480: 45,4 + 6337: 48,-8 + 6354: 49,-2 + 6358: 50,-8 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 1381: 31,23 - 1385: 26,6 + 1379: 31,23 + 1383: 26,6 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1213: -15,26 - 1214: -11,26 - 1215: -7,26 - 1256: -4,45 - 1326: -18,29 + 1211: -15,26 + 1212: -11,26 + 1213: -7,26 + 1254: -4,45 + 1324: -18,29 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1461: 41,13 + 1459: 41,13 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 6365: 52,-8 - 6382: 51,-2 - 6386: 50,-8 + 6336: 52,-8 + 6353: 51,-2 + 6357: 50,-8 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 1382: 30,17 + 1380: 30,17 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1211: -13,26 - 1212: -9,26 - 1255: 0,45 + 1209: -13,26 + 1210: -9,26 + 1253: 0,45 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: 183: 5,-24 - 1460: 47,13 + 1458: 47,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -1833,114 +1851,114 @@ entities: color: '#52B4E93E' id: BrickTileWhiteLineE decals: - 6843: 51,6 - 6844: 51,6 - 6845: 51,6 + 6814: 51,6 + 6815: 51,6 + 6816: 51,6 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 1755: 57,-6 - 1756: 57,-5 - 1757: 57,-4 - 6271: 42,9 - 6272: 42,7 - 6278: 47,9 - 6279: 47,8 - 6280: 47,7 - 6296: 51,1 - 6297: 51,2 - 6298: 51,3 - 6299: 51,4 - 6300: 51,7 - 6301: 51,8 - 6302: 51,9 - 6303: 51,10 - 6304: 51,11 - 6305: 51,12 - 6306: 51,13 - 6307: 51,14 - 6308: 51,15 - 6313: 56,10 - 6314: 56,11 - 6315: 56,12 - 6319: 56,6 - 6320: 56,7 - 6321: 56,8 - 6357: 52,-1 - 6358: 52,-2 - 6359: 52,-3 - 6360: 52,-4 - 6361: 52,-5 - 6362: 52,-6 - 6363: 52,-7 - 6364: 52,-8 - 6378: 49,-6 - 6379: 49,-5 - 6380: 49,-4 - 6381: 49,-3 + 1753: 57,-6 + 1754: 57,-5 + 1755: 57,-4 + 6242: 42,9 + 6243: 42,7 + 6249: 47,9 + 6250: 47,8 + 6251: 47,7 + 6267: 51,1 + 6268: 51,2 + 6269: 51,3 + 6270: 51,4 + 6271: 51,7 + 6272: 51,8 + 6273: 51,9 + 6274: 51,10 + 6275: 51,11 + 6276: 51,12 + 6277: 51,13 + 6278: 51,14 + 6279: 51,15 + 6284: 56,10 + 6285: 56,11 + 6286: 56,12 + 6290: 56,6 + 6291: 56,7 + 6292: 56,8 + 6328: 52,-1 + 6329: 52,-2 + 6330: 52,-3 + 6331: 52,-4 + 6332: 52,-5 + 6333: 52,-6 + 6334: 52,-7 + 6335: 52,-8 + 6349: 49,-6 + 6350: 49,-5 + 6351: 49,-4 + 6352: 49,-3 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1738: 61,17 - 1739: 61,16 - 1740: 61,15 - 1741: 61,14 + 1736: 61,17 + 1737: 61,16 + 1738: 61,15 + 1739: 61,14 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 1334: 28,7 - 1343: 28,14 - 1344: 28,13 - 1345: 28,12 - 1346: 28,11 - 1363: 31,22 - 1364: 31,21 - 1365: 31,20 - 1366: 31,19 - 1367: 31,18 - 1368: 31,17 - 1369: 31,16 - 1370: 31,15 - 1371: 31,14 - 1372: 31,13 - 1373: 31,12 - 1389: 36,19 - 1390: 36,20 - 1391: 36,21 - 1396: 36,18 - 1406: 27,13 - 1407: 27,12 + 1332: 28,7 + 1341: 28,14 + 1342: 28,13 + 1343: 28,12 + 1344: 28,11 + 1361: 31,22 + 1362: 31,21 + 1363: 31,20 + 1364: 31,19 + 1365: 31,18 + 1366: 31,17 + 1367: 31,16 + 1368: 31,15 + 1369: 31,14 + 1370: 31,13 + 1371: 31,12 + 1387: 36,19 + 1388: 36,20 + 1389: 36,21 + 1394: 36,18 + 1404: 27,13 + 1405: 27,12 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 1819: 70,-13 - 1823: 65,-21 - 1824: 65,-20 - 1825: 65,-19 - 1826: 65,-18 - 1827: 65,-17 - 1828: 65,-16 - 1829: 65,-15 - 1830: 65,-14 - 1831: 65,-13 - 1832: 65,-12 - 1906: 71,-27 - 1907: 71,-26 + 1817: 70,-13 + 1821: 65,-21 + 1822: 65,-20 + 1823: 65,-19 + 1824: 65,-18 + 1825: 65,-17 + 1826: 65,-16 + 1827: 65,-15 + 1828: 65,-14 + 1829: 65,-13 + 1830: 65,-12 + 1904: 71,-27 + 1905: 71,-26 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1136: -1,23 - 1137: -1,24 - 1144: -1,25 - 1325: -18,28 - 6625: -37,-44 - 6626: -37,-45 - 6639: -37,-46 + 1134: -1,23 + 1135: -1,24 + 1142: -1,25 + 1323: -18,28 + 6596: -37,-44 + 6597: -37,-45 + 6610: -37,-46 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1948,28 +1966,28 @@ entities: 177: 2,-22 235: 10,-23 236: 10,-22 - 1459: 41,12 - 1469: 47,13 - 1470: 47,11 - 2179: -4,-37 - 2180: -4,-35 - 2883: -39,-38 + 1457: 41,12 + 1467: 47,13 + 1468: 47,11 + 2158: -4,-37 + 2159: -4,-35 + 2862: -39,-38 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineE decals: - 2980: -25,37 - 2987: -32,38 - 2988: -32,37 - 2989: -32,36 - 2990: -32,35 - 2991: -32,34 + 2959: -25,37 + 2966: -32,38 + 2967: -32,37 + 2968: -32,36 + 2969: -32,35 + 2970: -32,34 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 1266: 2,40 + 1264: 2,40 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1979,46 +1997,46 @@ entities: 1018: 41,-34 1048: 38,-34 1049: 42,-34 - 1973: 19,-36 - 1974: 20,-36 - 1978: 21,-36 - 2008: 24,-46 + 1971: 19,-36 + 1972: 20,-36 + 1976: 21,-36 + 2006: 24,-46 - node: color: '#474F52A7' id: BrickTileWhiteLineN decals: - 1216: -16,24 - 1217: -15,24 - 1218: -14,24 - 1219: -12,24 - 1220: -11,24 - 1221: -10,24 - 1222: -8,24 - 1223: -7,24 - 1224: -6,24 + 1214: -16,24 + 1215: -15,24 + 1216: -14,24 + 1217: -12,24 + 1218: -11,24 + 1219: -10,24 + 1220: -8,24 + 1221: -7,24 + 1222: -6,24 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1475: 43,5 - 1476: 42,5 - 1477: 44,5 - 1722: 59,4 - 1723: 60,4 - 1751: 58,-7 - 1752: 59,-7 - 1753: 60,-7 - 1754: 61,-7 - 6330: 53,3 - 6331: 54,3 - 6332: 55,3 - 6333: 57,3 - 6369: 51,-1 - 6370: 50,-1 - 6371: 49,-1 - 6391: 49,-10 - 6392: 50,-10 - 6393: 51,-10 + 1473: 43,5 + 1474: 42,5 + 1475: 44,5 + 1720: 59,4 + 1721: 60,4 + 1749: 58,-7 + 1750: 59,-7 + 1751: 60,-7 + 1752: 61,-7 + 6301: 53,3 + 6302: 54,3 + 6303: 55,3 + 6304: 57,3 + 6340: 51,-1 + 6341: 50,-1 + 6342: 49,-1 + 6362: 49,-10 + 6363: 50,-10 + 6364: 51,-10 - node: color: '#79150096' id: BrickTileWhiteLineN @@ -2028,49 +2046,49 @@ entities: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1264: -1,53 - 1265: 0,53 - 2006: 24,-43 + 1262: -1,53 + 1263: 0,53 + 2004: 24,-43 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 1332: 27,8 - 1340: 25,15 - 1341: 26,15 - 1342: 27,15 - 1397: 34,22 - 1398: 35,22 + 1330: 27,8 + 1338: 25,15 + 1339: 26,15 + 1340: 27,15 + 1395: 34,22 + 1396: 35,22 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 1775: 63,-23 - 1776: 64,-23 - 1777: 65,-23 - 1782: 61,-23 - 1783: 62,-23 - 1797: 59,-13 - 1821: 69,-12 - 1844: 77,-13 - 1845: 75,-13 - 1846: 77,-17 - 1847: 75,-17 - 3175: 76,-13 - 3178: 76,-17 + 1773: 63,-23 + 1774: 64,-23 + 1775: 65,-23 + 1780: 61,-23 + 1781: 62,-23 + 1795: 59,-13 + 1819: 69,-12 + 1842: 77,-13 + 1843: 75,-13 + 1844: 77,-17 + 1845: 75,-17 + 3154: 76,-13 + 3157: 76,-17 - node: color: '#D4D4D496' id: BrickTileWhiteLineN decals: - 2007: 25,-43 + 2005: 25,-43 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1205: -3,32 - 1206: -2,32 - 1207: -1,32 - 2009: 25,-46 + 1203: -3,32 + 1204: -2,32 + 1205: -1,32 + 2007: 25,-46 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2087,32 +2105,32 @@ entities: 284: 19,-21 285: 20,-21 286: 21,-21 - 1452: 42,11 - 1453: 43,11 - 1454: 46,11 - 1455: 45,11 - 2176: 0,-35 - 2177: 1,-35 - 2203: -53,9 - 2881: -62,-21 - 2882: -61,-21 + 1450: 42,11 + 1451: 43,11 + 1452: 46,11 + 1453: 45,11 + 2155: 0,-35 + 2156: 1,-35 + 2182: -53,9 + 2860: -62,-21 + 2861: -61,-21 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2983: -29,38 - 2984: -28,38 - 2985: -27,38 - 2986: -26,38 + 2962: -29,38 + 2963: -28,38 + 2964: -27,38 + 2965: -26,38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 2233: 13,25 - 2234: 14,25 - 2235: 15,25 - 6170: 14,22 + 2212: 13,25 + 2213: 14,25 + 2214: 15,25 + 6141: 14,22 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2123,43 +2141,43 @@ entities: 356: 47,-22 357: 48,-22 358: 49,-22 - 1975: 19,-39 - 1976: 20,-39 - 1977: 21,-39 - 6669: 52,-37 - 6670: 51,-37 + 1973: 19,-39 + 1974: 20,-39 + 1975: 21,-39 + 6640: 52,-37 + 6641: 51,-37 - node: color: '#474F52A7' id: BrickTileWhiteLineS decals: - 1225: -12,23 - 1226: -11,23 - 1227: -10,23 - 1228: -14,23 - 1229: -15,23 - 1230: -16,23 - 1231: -8,23 - 1232: -6,23 - 1233: -7,23 + 1223: -12,23 + 1224: -11,23 + 1225: -10,23 + 1226: -14,23 + 1227: -15,23 + 1228: -16,23 + 1229: -8,23 + 1230: -6,23 + 1231: -7,23 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1481: 46,4 - 1720: 60,0 - 1721: 59,0 - 2012: 24,-46 - 6334: 57,2 - 6335: 56,2 - 6336: 55,2 - 6337: 54,2 - 6338: 53,2 - 6372: 49,-8 - 6373: 51,-8 - 6388: 48,-11 - 6389: 51,-11 - 6390: 53,-11 - 6396: 50,-11 + 1479: 46,4 + 1718: 60,0 + 1719: 59,0 + 2010: 24,-46 + 6305: 57,2 + 6306: 56,2 + 6307: 55,2 + 6308: 54,2 + 6309: 53,2 + 6343: 49,-8 + 6344: 51,-8 + 6359: 48,-11 + 6360: 51,-11 + 6361: 53,-11 + 6367: 50,-11 - node: color: '#79150096' id: BrickTileWhiteLineS @@ -2169,59 +2187,59 @@ entities: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1258: -3,50 - 1259: -1,50 - 1260: -2,50 - 1261: 0,50 - 1262: 1,50 - 1263: 2,50 + 1256: -3,50 + 1257: -1,50 + 1258: -2,50 + 1259: 0,50 + 1260: 1,50 + 1261: 2,50 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 1333: 27,6 - 1347: 25,10 - 1348: 26,10 - 1349: 27,10 - 1352: 23,17 - 1353: 24,17 - 1354: 25,17 - 1355: 26,17 - 1356: 27,17 - 1357: 28,17 - 1387: 34,17 - 1388: 35,17 - 2010: 24,-43 + 1331: 27,6 + 1345: 25,10 + 1346: 26,10 + 1347: 27,10 + 1350: 23,17 + 1351: 24,17 + 1352: 25,17 + 1353: 26,17 + 1354: 27,17 + 1355: 28,17 + 1385: 34,17 + 1386: 35,17 + 2008: 24,-43 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 1778: 63,-27 - 1779: 64,-27 - 1780: 65,-27 - 1781: 66,-27 - 1798: 59,-14 - 1799: 58,-15 - 1800: 59,-15 - 1801: 60,-15 - 1820: 69,-14 - 1848: 75,-19 - 1849: 77,-19 - 1850: 75,-15 - 1851: 77,-15 - 2013: 25,-43 - 3176: 76,-15 - 3177: 76,-19 + 1776: 63,-27 + 1777: 64,-27 + 1778: 65,-27 + 1779: 66,-27 + 1796: 59,-14 + 1797: 58,-15 + 1798: 59,-15 + 1799: 60,-15 + 1818: 69,-14 + 1846: 75,-19 + 1847: 77,-19 + 1848: 75,-15 + 1849: 77,-15 + 2011: 25,-43 + 3155: 76,-15 + 3156: 76,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1208: -10,26 - 1209: -14,26 - 1210: -6,26 - 1252: -3,45 - 1253: -2,45 - 1254: -1,45 + 1206: -10,26 + 1207: -14,26 + 1208: -6,26 + 1250: -3,45 + 1251: -2,45 + 1252: -1,45 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -2241,22 +2259,22 @@ entities: 237: 7,-25 282: 21,-23 283: 20,-23 - 1456: 44,13 - 1457: 45,13 - 1458: 46,13 - 2011: 25,-46 - 2149: 9,-41 - 2857: 61,-31 - 2858: 62,-31 - 2859: 63,-31 - 6198: 42,13 + 1454: 44,13 + 1455: 45,13 + 1456: 46,13 + 2009: 25,-46 + 2128: 9,-41 + 2836: 61,-31 + 2837: 62,-31 + 2838: 63,-31 + 6169: 42,13 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1445: 45,4 - 1446: 46,4 - 1447: 44,4 + 1443: 45,4 + 1444: 46,4 + 1445: 44,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -2264,115 +2282,115 @@ entities: 1005: 34,-34 1006: 34,-35 1007: 34,-36 - 1441: 54,-36 - 1442: 54,-35 - 1443: 54,-34 - 1444: 54,-33 + 1439: 54,-36 + 1440: 54,-35 + 1441: 54,-34 + 1442: 54,-33 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 6273: 46,7 - 6274: 46,9 - 6275: 41,9 - 6276: 41,8 - 6277: 41,7 - 6281: 49,1 - 6282: 49,2 - 6283: 49,3 - 6284: 49,4 - 6285: 49,5 - 6286: 49,6 - 6287: 49,7 - 6288: 49,8 - 6289: 49,9 - 6290: 49,10 - 6291: 49,11 - 6292: 49,12 - 6293: 49,13 - 6294: 49,14 - 6295: 49,15 - 6316: 53,6 - 6317: 53,7 - 6318: 53,8 - 6349: 48,-8 - 6350: 48,-7 - 6351: 48,-6 - 6352: 48,-5 - 6353: 48,-4 - 6354: 48,-3 - 6355: 48,-2 - 6356: 48,-1 - 6374: 51,-6 - 6375: 51,-5 - 6376: 51,-4 - 6377: 51,-3 + 6244: 46,7 + 6245: 46,9 + 6246: 41,9 + 6247: 41,8 + 6248: 41,7 + 6252: 49,1 + 6253: 49,2 + 6254: 49,3 + 6255: 49,4 + 6256: 49,5 + 6257: 49,6 + 6258: 49,7 + 6259: 49,8 + 6260: 49,9 + 6261: 49,10 + 6262: 49,11 + 6263: 49,12 + 6264: 49,13 + 6265: 49,14 + 6266: 49,15 + 6287: 53,6 + 6288: 53,7 + 6289: 53,8 + 6320: 48,-8 + 6321: 48,-7 + 6322: 48,-6 + 6323: 48,-5 + 6324: 48,-4 + 6325: 48,-3 + 6326: 48,-2 + 6327: 48,-1 + 6345: 51,-6 + 6346: 51,-5 + 6347: 51,-4 + 6348: 51,-3 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1742: 57,16 - 1743: 57,17 + 1740: 57,16 + 1741: 57,17 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 1335: 30,7 - 1336: 30,8 - 1337: 30,9 - 1338: 30,10 - 1339: 30,6 - 1358: 30,16 - 1359: 30,15 - 1360: 30,14 - 1361: 30,13 - 1362: 30,12 - 1374: 33,15 - 1375: 33,14 - 1376: 33,13 - 1377: 33,12 - 1392: 33,18 - 1393: 33,19 - 1394: 33,20 - 1395: 33,21 - 1408: 26,12 - 1409: 26,13 + 1333: 30,7 + 1334: 30,8 + 1335: 30,9 + 1336: 30,10 + 1337: 30,6 + 1356: 30,16 + 1357: 30,15 + 1358: 30,14 + 1359: 30,13 + 1360: 30,12 + 1372: 33,15 + 1373: 33,14 + 1374: 33,13 + 1375: 33,12 + 1390: 33,18 + 1391: 33,19 + 1392: 33,20 + 1393: 33,21 + 1406: 26,12 + 1407: 26,13 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 1822: 68,-13 - 1833: 63,-21 - 1834: 63,-20 - 1835: 63,-19 - 1836: 63,-17 - 1837: 63,-18 - 1838: 63,-16 - 1839: 63,-15 - 1840: 63,-14 - 1841: 63,-13 - 1842: 63,-12 - 1901: 68,-23 - 1902: 68,-22 - 1903: 68,-21 - 1904: 68,-24 - 1908: 68,-27 - 1909: 68,-26 + 1820: 68,-13 + 1831: 63,-21 + 1832: 63,-20 + 1833: 63,-19 + 1834: 63,-17 + 1835: 63,-18 + 1836: 63,-16 + 1837: 63,-15 + 1838: 63,-14 + 1839: 63,-13 + 1840: 63,-12 + 1899: 68,-23 + 1900: 68,-22 + 1901: 68,-21 + 1902: 68,-24 + 1906: 68,-27 + 1907: 68,-26 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 1134: -4,23 - 1135: -4,24 - 1145: -4,25 + 1132: -4,23 + 1133: -4,24 + 1143: -4,25 - node: color: '#EFB34131' id: BrickTileWhiteLineW decals: - 6816: 14,39 - 6817: 14,40 - 6818: 14,41 - 6819: 14,42 + 6787: 14,39 + 6788: 14,40 + 6789: 14,41 + 6790: 14,42 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -2386,37 +2404,37 @@ entities: 182: 5,-25 216: 4,-19 220: 4,-22 - 1471: 41,11 - 1472: 41,12 - 1473: 41,13 - 2147: 8,-40 - 2148: 8,-39 - 2178: -2,-36 - 2181: -6,-37 - 2182: -6,-36 - 2183: -6,-35 - 2192: 39,-15 - 2193: 39,-17 - 2194: 39,-16 - 2875: -22,34 - 2876: -22,35 + 1469: 41,11 + 1470: 41,12 + 1471: 41,13 + 2126: 8,-40 + 2127: 8,-39 + 2157: -2,-36 + 2160: -6,-37 + 2161: -6,-36 + 2162: -6,-35 + 2171: 39,-15 + 2172: 39,-17 + 2173: 39,-16 + 2854: -22,34 + 2855: -22,35 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineW decals: - 2978: -30,36 - 2979: -30,37 - 2992: -34,34 - 2993: -34,35 - 2994: -34,36 - 2995: -34,37 - 2996: -34,38 + 2957: -30,36 + 2958: -30,37 + 2971: -34,34 + 2972: -34,35 + 2973: -34,36 + 2974: -34,37 + 2975: -34,38 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 1267: -6,40 + 1265: -6,40 - node: color: '#FFFFFFFF' id: BushAOne @@ -2424,9 +2442,9 @@ entities: 559: -24,5 864: -48,4 870: -51,-2 - 1489: -52,-49 - 1728: 59,19 - 1746: 57,18 + 1487: -52,-49 + 1726: 59,19 + 1744: 57,18 - node: color: '#FFFFFFFF' id: BushAThree @@ -2434,12 +2452,17 @@ entities: 526: -39,7 865: -50,-2 928: -49,-30 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 6891: 57.061016,-21.004225 - node: color: '#FFFFFFFF' id: BushCOne decals: 862: -45,4 - 1931: 56,-21 + 1929: 56,-21 - node: color: '#FFFFFFFF' id: BushCThree @@ -2447,9 +2470,9 @@ entities: 320: 26,-24 527: -40,6 866: -48,-2 - 1107: 42,-30 - 1485: -49,-49 - 2247: 24,1 + 1105: 42,-30 + 1483: -49,-49 + 2226: 24,1 - node: color: '#FFFFFFFF' id: BushCTwo @@ -2457,14 +2480,19 @@ entities: 36: -4,-12 321: 26,-23 525: -38,6 - 1486: -46,-49 - 1932: 56,-22 + 1484: -46,-49 + 1930: 56,-22 - node: cleanable: True color: '#FFFFFFFF' id: BushCTwo decals: - 3027: 81,-8 + 3006: 81,-8 + - node: + color: '#FFFFFFFF' + id: BushDThree + decals: + 6893: 54.199055,-22.34959 - node: color: '#FFFFFFFF' id: BushDTwo @@ -2476,22 +2504,22 @@ entities: decals: 523: -39,5 925: -48,-28 - 1934: 57,-23 - 1953: 54,-23 + 1932: 57,-23 + 1951: 54,-23 - node: cleanable: True color: '#FFFFFFFF' id: Busha1 decals: - 3028: 82,-6 + 3007: 82,-6 - node: color: '#FFFFFFFF' id: Busha2 decals: 531: -30,7 926: -47,-29 - 1727: 58,19 - 1933: 55,-23 + 1725: 58,19 + 1931: 55,-23 - node: color: '#FFFFFFFF' id: Busha3 @@ -2499,7 +2527,7 @@ entities: 319: 25,-24 529: -30,5 863: -47,4 - 1488: -44,-49 + 1486: -44,-49 - node: color: '#FFFFFFFF' id: Bushb1 @@ -2512,15 +2540,15 @@ entities: color: '#FFFFFFFF' id: Bushb1 decals: - 3025: 81,-7 + 3004: 81,-7 - node: color: '#FFFFFFFF' id: Bushb2 decals: 558: -24,7 916: -47,-8 - 1745: 57,19 - 1929: 54,-21 + 1743: 57,19 + 1927: 54,-21 - node: color: '#FFFFFFFF' id: Bushb3 @@ -2537,27 +2565,27 @@ entities: 530: -29,6 867: -45,-2 929: -49,-27 - 1930: 55,-22 + 1928: 55,-22 - node: cleanable: True color: '#FFFFFFFF' id: Bushc1 decals: - 3026: 82,-7 + 3005: 82,-7 - node: color: '#FFFFFFFF' id: Bushc2 decals: 528: -28,6 - 1487: -47,-49 - 2249: 25,1 + 1485: -47,-49 + 2228: 25,1 - node: color: '#FFFFFFFF' id: Bushc3 decals: 35: -5,-12 - 1484: -51,-49 - 2248: 26,1 + 1482: -51,-49 + 2227: 26,1 - node: color: '#FFFFFFFF' id: Bushd2 @@ -2568,6 +2596,12 @@ entities: id: Bushd4 decals: 872: -44,4 + 6892: 56.804173,-21.505678 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 6894: 56.804173,-21.884827 - node: color: '#FFFFFFFF' id: Bushh1 @@ -2587,14 +2621,15 @@ entities: 560: -24,4 875: -47,-2 930: -48,-29 - 1491: -48,-49 - 1729: 60,19 + 1489: -48,-49 + 1727: 60,19 + 6895: 57.220013,-21.982672 - node: cleanable: True color: '#FFFFFFFF' id: Bushi1 decals: - 3031: 80,-7 + 3010: 80,-7 - node: color: '#FFFFFFFF' id: Bushi2 @@ -2603,22 +2638,22 @@ entities: 876: -51,4 913: -48,-8 914: -51,-9 - 1935: 54,-22 - 1954: 53.45864,-23.10261 - 2250: 24,1 + 1933: 54,-22 + 1952: 53.45864,-23.10261 + 2229: 24,1 - node: color: '#FFFFFFFF' id: Bushi3 decals: 532: -38,5 931: -47,-27 - 1490: -50,-49 + 1488: -50,-49 - node: cleanable: True color: '#FFFFFFFF' id: Bushi3 decals: - 3029: 82,-8 + 3008: 82,-8 - node: color: '#FFFFFFFF' id: Bushi4 @@ -2626,16 +2661,16 @@ entities: 533: -40,7 874: -46,4 915: -46,-7 - 1108: 42,-31 - 1492: -45,-49 - 1936: 56,-23 - 1942: 57.568016,-22.290323 + 1106: 42,-31 + 1490: -45,-49 + 1934: 56,-23 + 1940: 57.568016,-22.290323 - node: cleanable: True color: '#FFFFFFFF' id: Bushi4 decals: - 3030: 81,-6 + 3009: 81,-6 - node: color: '#FFFFFFFF' id: Bushj3 @@ -2655,82 +2690,82 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 1986: 24,-37 - 1990: 23,-37 - 1991: 25,-37 + 1984: 24,-37 + 1988: 23,-37 + 1989: 25,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 1987: 24,-38 - 1988: 23,-38 - 1989: 25,-38 + 1985: 24,-38 + 1986: 23,-38 + 1987: 25,-38 - node: color: '#EFB34196' id: CheckerNESW decals: - 1464: 42,12 - 1465: 43,12 - 1466: 44,12 - 1467: 45,12 - 1468: 46,12 - 6201: 46,15 - 6202: 46,14 + 1462: 42,12 + 1463: 43,12 + 1464: 44,12 + 1465: 45,12 + 1466: 46,12 + 6172: 46,15 + 6173: 46,14 - node: color: '#334E6DC8' id: CheckerNWSE decals: - 1982: 20,-37 - 1983: 21,-37 - 1984: 21,-38 - 1985: 20,-38 + 1980: 20,-37 + 1981: 21,-37 + 1982: 21,-38 + 1983: 20,-38 - node: color: '#474F528F' id: CheckerNWSE decals: - 2225: -17,11 - 2226: -16,11 - 2227: -16,12 - 2228: -17,12 - 2229: -17,13 - 2230: -16,13 - 2231: -16,14 - 2232: -17,14 + 2204: -17,11 + 2205: -16,11 + 2206: -16,12 + 2207: -17,12 + 2208: -17,13 + 2209: -16,13 + 2210: -16,14 + 2211: -17,14 - node: color: '#52B4E996' id: CheckerNWSE decals: - 1761: 55,-5 - 1762: 55,-4 - 1763: 56,-4 - 1764: 56,-5 - 1765: 53,-5 - 1766: 53,-4 + 1759: 55,-5 + 1760: 55,-4 + 1761: 56,-4 + 1762: 56,-5 + 1763: 53,-5 + 1764: 53,-4 - node: color: '#D381C996' id: CheckerNWSE decals: - 1843: 66,-21 + 1841: 66,-21 - node: color: '#DE3A3A41' id: CheckerNWSE decals: - 6627: -36,-46 - 6628: -36,-45 - 6629: -36,-44 - 6630: -35,-44 - 6631: -35,-45 - 6632: -35,-46 + 6598: -36,-46 + 6599: -36,-45 + 6600: -36,-44 + 6601: -35,-44 + 6602: -35,-45 + 6603: -35,-46 - node: color: '#EFB34131' id: CheckerNWSE decals: - 6767: 13,40 - 6768: 13,39 - 6769: 13,41 - 6770: 13,42 - 6815: 15,40 + 6738: 13,40 + 6739: 13,39 + 6740: 13,41 + 6741: 13,42 + 6786: 15,40 - node: color: '#EFB34196' id: CheckerNWSE @@ -2741,90 +2776,90 @@ entities: 149: -2,-27 150: -3,-27 151: -3,-28 - 2187: 37,-15 - 2188: 37,-16 - 2189: 37,-17 - 2190: 38,-16 - 2191: 38,-15 - 2195: 38,-17 - 2196: 38,6 - 2197: 38,7 - 2198: -54,10 - 2199: -53,10 - 2200: -55,10 - 2201: -55,9 - 2841: -4,15 - 2842: -3,15 - 2843: -2,15 - 2844: -3,14 - 2847: -38,-54 - 2848: -38,-53 - 2849: -37,-53 - 2850: -37,-54 - 2851: 61,-32 - 2852: 62,-32 - 2853: 63,-32 - 2854: 63,-33 - 2855: 62,-33 - 2856: 61,-33 - 2860: 63,10 - 2861: 64,10 - 2862: 65,10 - 2863: 65,9 - 2864: 65,8 - 2865: 64,8 - 2866: 63,8 - 2867: 64,9 - 2873: -23,34 - 2874: -23,35 - 2877: 14,-39 - 2878: 15,-39 - 2879: -61,-20 - 2880: -62,-20 - 2884: -38,-38 - 6680: 51,-30 - 6681: 51,-29 - 6682: 52,-29 - 6683: 52,-30 + 2166: 37,-15 + 2167: 37,-16 + 2168: 37,-17 + 2169: 38,-16 + 2170: 38,-15 + 2174: 38,-17 + 2175: 38,6 + 2176: 38,7 + 2177: -54,10 + 2178: -53,10 + 2179: -55,10 + 2180: -55,9 + 2820: -4,15 + 2821: -3,15 + 2822: -2,15 + 2823: -3,14 + 2826: -38,-54 + 2827: -38,-53 + 2828: -37,-53 + 2829: -37,-54 + 2830: 61,-32 + 2831: 62,-32 + 2832: 63,-32 + 2833: 63,-33 + 2834: 62,-33 + 2835: 61,-33 + 2839: 63,10 + 2840: 64,10 + 2841: 65,10 + 2842: 65,9 + 2843: 65,8 + 2844: 64,8 + 2845: 63,8 + 2846: 64,9 + 2852: -23,34 + 2853: -23,35 + 2856: 14,-39 + 2857: 15,-39 + 2858: -61,-20 + 2859: -62,-20 + 2863: -38,-38 + 6651: 51,-30 + 6652: 51,-29 + 6653: 52,-29 + 6654: 52,-30 - node: color: '#D4D4D496' id: Delivery decals: - 6563: 0,30 - 6564: 0,31 + 6534: 0,30 + 6535: 0,31 - node: color: '#DE3A3A41' id: Delivery decals: - 6635: -38,-46 - 6636: -38,-46 - 6637: -38,-44 - 6638: -38,-44 + 6606: -38,-46 + 6607: -38,-46 + 6608: -38,-44 + 6609: -38,-44 - node: color: '#DE3A3A96' id: Delivery decals: - 1138: -3,25 - 1139: -2,25 - 1201: 4,31 - 1202: 5,31 - 1203: 2,31 - 1204: 2,30 + 1136: -3,25 + 1137: -2,25 + 1199: 4,31 + 1200: 5,31 + 1201: 2,31 + 1202: 2,30 - node: color: '#EFB34131' id: Delivery decals: - 6811: 15,41 - 6812: 15,41 - 6813: 15,41 - 6814: 15,41 + 6782: 15,41 + 6783: 15,41 + 6784: 15,41 + 6785: 15,41 - node: color: '#EFB34196' id: Delivery decals: 60: -7,-20 - 6213: 47,16 - 6214: 47,16 + 6184: 47,16 + 6185: 47,16 - node: color: '#EFB341FF' id: Delivery @@ -2863,3561 +2898,3559 @@ entities: 409: -23,-28 410: -23,-27 411: -23,-26 - 1270: 23,14 - 1272: 24,12 - 1284: 25,6 - 1285: 24,6 - 1286: 23,6 - 1304: 24,21 - 1305: 25,21 - 1306: 26,21 - 1307: 28,21 - 1308: 29,21 - 1309: 30,21 - 1449: 46,3 - 1450: 46,3 - 1770: 60,-12 - 1992: 26,-37 - 1993: 26,-38 - 1996: 31,-37 - 1997: 31,-38 - 2159: 8,-41 - 3069: 3,20 - 3070: -9,19 - 3071: -9,20 - 3072: -9,21 - 3073: -17,21 - 3074: -17,20 - 3075: -17,19 - 3076: 3,21 - 3077: 3,19 - 3078: 17,19 - 3079: 17,20 - 3080: 17,21 - 3081: 19,17 - 3082: 21,17 - 3083: 20,17 - 3084: 21,6 - 3085: 20,6 - 3086: 19,6 - 3087: 29,2 - 3088: 29,4 - 3089: 29,3 - 3090: 39,2 - 3091: 39,3 - 3092: 39,4 - 3093: 43,0 - 3094: 42,0 - 3095: 41,0 - 3096: 43,-14 - 3097: 42,-14 - 3098: 41,-14 - 3099: 46,-21 - 3100: 46,-19 - 3101: 46,-20 - 3102: 38,-19 - 3103: 38,-21 - 3104: 38,-20 - 3105: 30,-21 - 3106: 30,-20 - 3107: 30,-19 - 3108: 30,-20 - 3109: 21,-28 - 3110: 20,-28 - 3111: 19,-28 - 3112: 18,-32 - 3113: 18,-33 - 3114: 18,-34 - 3115: 10,-34 - 3116: 10,-33 - 3117: 10,-32 - 3118: 4,-32 - 3119: 4,-31 - 3120: 4,-30 - 3121: -9,-32 - 3122: -9,-31 - 3123: -9,-30 - 3124: -20,-32 - 3125: -20,-30 - 3126: -20,-31 - 3127: -24,-22 - 3128: -25,-22 - 3129: -26,-22 - 3130: -42,-29 - 3131: -42,-28 - 3132: -27,-29 - 3133: -27,-28 - 3134: -26,-12 - 3135: -25,-12 - 3136: -24,-12 - 3137: -23,-6 - 3138: -24,-6 - 3139: -25,-6 - 3140: -25,10 - 3141: -26,10 - 3142: -27,10 - 3143: -42,0 - 3144: -42,1 - 3145: -42,2 - 3146: -53,-5 - 3147: -54,-5 - 3148: -55,-5 - 3149: -55,-19 - 3150: -54,-19 - 3151: -53,-19 - 3152: -49,-34 - 3153: -47,-34 - 3154: -48,-34 - 3155: -47,-45 - 3156: -48,-45 - 3157: -49,-45 - 3158: -41,-49 - 3159: -42,-49 - 3160: -40,-49 - 3161: -54,-49 - 3162: -55,-49 - 3163: -56,-49 - 3164: -56,-55 - 3165: -55,-55 - 3166: -54,-55 - 3167: -42,-55 - 3168: -41,-55 - 3169: -40,-55 - 6565: 60,-24 - 6566: 60,-23 - 6665: 32,21 + 1268: 23,14 + 1270: 24,12 + 1282: 25,6 + 1283: 24,6 + 1284: 23,6 + 1302: 24,21 + 1303: 25,21 + 1304: 26,21 + 1305: 28,21 + 1306: 29,21 + 1307: 30,21 + 1447: 46,3 + 1448: 46,3 + 1768: 60,-12 + 1990: 26,-37 + 1991: 26,-38 + 1994: 31,-37 + 1995: 31,-38 + 2138: 8,-41 + 3048: 3,20 + 3049: -9,19 + 3050: -9,20 + 3051: -9,21 + 3052: -17,21 + 3053: -17,20 + 3054: -17,19 + 3055: 3,21 + 3056: 3,19 + 3057: 17,19 + 3058: 17,20 + 3059: 17,21 + 3060: 19,17 + 3061: 21,17 + 3062: 20,17 + 3063: 21,6 + 3064: 20,6 + 3065: 19,6 + 3066: 29,2 + 3067: 29,4 + 3068: 29,3 + 3069: 39,2 + 3070: 39,3 + 3071: 39,4 + 3072: 43,0 + 3073: 42,0 + 3074: 41,0 + 3075: 43,-14 + 3076: 42,-14 + 3077: 41,-14 + 3078: 46,-21 + 3079: 46,-19 + 3080: 46,-20 + 3081: 38,-19 + 3082: 38,-21 + 3083: 38,-20 + 3084: 30,-21 + 3085: 30,-20 + 3086: 30,-19 + 3087: 30,-20 + 3088: 21,-28 + 3089: 20,-28 + 3090: 19,-28 + 3091: 18,-32 + 3092: 18,-33 + 3093: 18,-34 + 3094: 10,-34 + 3095: 10,-33 + 3096: 10,-32 + 3097: 4,-32 + 3098: 4,-31 + 3099: 4,-30 + 3100: -9,-32 + 3101: -9,-31 + 3102: -9,-30 + 3103: -20,-32 + 3104: -20,-30 + 3105: -20,-31 + 3106: -24,-22 + 3107: -25,-22 + 3108: -26,-22 + 3109: -42,-29 + 3110: -42,-28 + 3111: -27,-29 + 3112: -27,-28 + 3113: -26,-12 + 3114: -25,-12 + 3115: -24,-12 + 3116: -23,-6 + 3117: -24,-6 + 3118: -25,-6 + 3119: -25,10 + 3120: -26,10 + 3121: -27,10 + 3122: -42,0 + 3123: -42,1 + 3124: -42,2 + 3125: -53,-5 + 3126: -54,-5 + 3127: -55,-5 + 3128: -55,-19 + 3129: -54,-19 + 3130: -53,-19 + 3131: -49,-34 + 3132: -47,-34 + 3133: -48,-34 + 3134: -47,-45 + 3135: -48,-45 + 3136: -49,-45 + 3137: -41,-49 + 3138: -42,-49 + 3139: -40,-49 + 3140: -54,-49 + 3141: -55,-49 + 3142: -56,-49 + 3143: -56,-55 + 3144: -55,-55 + 3145: -54,-55 + 3146: -42,-55 + 3147: -41,-55 + 3148: -40,-55 + 6536: 60,-24 + 6537: 60,-23 + 6636: 32,21 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 3002: 24,5 - 3003: 25,5 - 3004: 26,5 - 3005: 14,1 - 3006: 14,-12 - 3007: 0,14 - 3008: -6,14 + 2981: 24,5 + 2982: 25,5 + 2983: 26,5 + 2984: 14,1 + 2985: 14,-12 + 2986: 0,14 + 2987: -6,14 - node: color: '#52B4E996' id: DeliveryGreyscale decals: - 1759: 59,-5 - 1760: 61,-5 - 6326: 48,2 - 6327: 48,2 - 6328: 48,1 - 6329: 48,1 - 6559: 50,-5 - 6560: 50,-5 + 1757: 59,-5 + 1758: 61,-5 + 6297: 48,2 + 6298: 48,2 + 6299: 48,1 + 6300: 48,1 + 6530: 50,-5 + 6531: 50,-5 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 1199: 4,31 - 1200: 5,31 + 1197: 4,31 + 1198: 5,31 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2236: 9,23 - 2237: 9,24 + 2215: 9,23 + 2216: 9,24 - node: cleanable: True color: '#835432FF' id: Dirt decals: - 2887: -37,28 - 2888: -36,27 - 2889: -37,27 - 2890: -37,25 - 2891: -37,24 + 2866: -37,28 + 2867: -36,27 + 2868: -37,27 + 2869: -37,25 + 2870: -37,24 + 2871: -36,25 + 2872: -36,24 + 2873: -36,25 + 2874: -38,28 + 2875: -39,29 + 2876: -40,28 + 2877: -38,28 + 2878: -37,27 + 2879: -37,28 + 2880: -37,27 + 2881: -36,25 + 2882: -36,24 + 2883: -34,24 + 2884: -34,23 + 2885: -34,22 + 2886: -36,22 + 2887: -37,22 + 2888: -36,24 + 2889: -37,24 + 2890: -36,23 + 2891: -37,25 2892: -36,25 - 2893: -36,24 - 2894: -36,25 + 2893: -37,26 + 2894: -38,27 2895: -38,28 - 2896: -39,29 - 2897: -40,28 - 2898: -38,28 - 2899: -37,27 - 2900: -37,28 - 2901: -37,27 - 2902: -36,25 - 2903: -36,24 - 2904: -34,24 - 2905: -34,23 - 2906: -34,22 - 2907: -36,22 - 2908: -37,22 - 2909: -36,24 - 2910: -37,24 - 2911: -36,23 - 2912: -37,25 - 2913: -36,25 - 2914: -37,26 - 2915: -38,27 - 2916: -38,28 - 2917: -39,27 - 2918: -39,26 - 2919: -39,26 + 2896: -39,27 + 2897: -39,26 + 2898: -39,26 - node: cleanable: True color: '#A4610696' id: Dirt decals: - 5458: -34,-26 - 5459: -37,-25 - 5460: -39,-28 - 5461: -40,-28 - 5462: -40,-31 - 5463: -39,-33 - 5464: -37,-33 - 5465: -32,-33 - 5466: -29,-33 - 5467: -29,-31 - 5468: -30,-28 - 5469: -29,-27 - 5470: -25,-30 - 5471: -25,-27 - 5472: -25,-26 - 5473: -25,-23 - 5474: -24,-21 - 5475: -25,-18 - 5476: -29,-20 - 5477: -29,-19 - 5478: -33,-19 - 5479: -33,-20 - 5480: -31,-14 - 5481: -29,-15 - 5482: -33,-16 - 5483: -29,-13 - 5484: -29,-11 - 5485: -38,-11 - 5486: -37,-15 - 5487: -36,-16 - 5488: -40,-10 - 5489: -38,-17 - 5490: -47,-8 - 5491: -45,0 - 5492: -47,0 - 5493: -44,2 - 5494: -48,-2 - 5495: -47,-1 - 5496: -49,3 - 5497: -50,-1 - 5498: -45,1 - 5499: -53,4 - 5500: -48,5 - 5501: -50,6 - 5502: -47,1 - 5503: -38,-1 - 5504: -36,1 - 5505: -35,-1 - 5506: -32,-1 - 5507: -33,0 - 5508: -33,-3 - 5509: -24,-2 - 5510: -28,3 - 5511: -26,3 - 5512: -26,8 - 5513: -27,13 - 5514: -26,14 - 5515: -26,18 - 5516: -33,13 - 5517: -32,15 - 5518: -32,14 - 5519: -22,13 - 5520: -20,12 - 5521: -22,13 - 5522: -24,19 - 5523: -20,20 - 5524: -18,19 - 5525: -16,20 - 5526: -13,19 - 5527: -15,24 - 5528: -14,24 - 5529: -13,27 - 5530: -14,28 - 5531: -13,27 - 5532: -5,28 - 5533: -20,28 - 5534: -18,25 - 5535: -13,31 - 5536: -15,32 - 5537: -14,34 - 5538: -17,32 - 5539: -8,32 - 5540: -8,32 - 5541: -6,33 - 5542: -6,27 - 5543: -3,28 - 5544: -1,30 - 5545: -2,33 - 5546: -2,33 - 5547: -2,36 - 5548: -2,43 - 5549: -7,42 - 5550: -5,45 - 5551: -3,47 - 5552: 0,45 - 5553: -2,47 - 5554: -1,47 - 5555: -2,51 - 5556: 1,51 - 5557: -1,52 - 5558: 1,52 - 5559: 2,45 - 5560: 2,47 - 5561: 2,42 - 5562: 1,40 - 5563: 6,41 - 5564: 8,39 - 5565: 6,41 - 5566: 5,31 - 5567: 3,31 - 5568: 5,30 - 5569: 4,30 - 5570: 3,26 - 5571: 2,27 - 5572: 4,25 - 5573: 3,23 - 5574: 2,24 - 5575: 1,23 - 5576: -2,24 - 5577: 1,21 - 5578: -1,19 - 5579: 4,20 - 5580: 9,20 - 5581: 9,20 - 5582: 15,19 - 5583: 11,24 - 5584: 14,23 - 5585: 14,25 - 5586: 15,24 - 5587: 14,29 - 5588: 14,31 - 5589: 17,25 - 5590: 17,23 - 5591: 16,20 - 5592: 20,20 - 5593: 20,18 - 5594: 20,15 - 5595: 21,15 - 5596: 20,12 - 5597: 22,12 - 5598: 20,11 - 5599: 27,12 - 5600: 27,11 - 5601: 26,14 - 5602: 25,19 - 5603: 30,19 - 5604: 31,16 - 5605: 31,12 - 5606: 35,14 - 5607: 35,14 - 5608: 35,14 - 5609: 32,8 - 5610: 34,9 - 5611: 32,7 - 5612: 26,7 - 5613: 24,7 - 5614: 24,3 - 5615: 24,2 - 5616: 23,2 - 5617: 20,6 - 5618: 20,9 - 5619: 23,3 - 5620: 32,3 - 5621: 34,2 - 5622: 32,-2 - 5623: 32,-2 - 5624: 32,-4 - 5625: 37,-4 - 5626: 36,3 - 5627: 42,2 - 5628: 38,-2 - 5629: 42,-5 - 5630: 42,-2 - 5631: 42,-4 - 5632: 43,6 - 5633: 44,12 - 5634: 43,11 - 5635: 46,12 - 5636: 44,12 - 5637: 52,12 - 5638: 50,14 - 5639: 50,7 - 5640: 53,14 - 5641: 59,15 - 5642: 60,17 - 5643: 55,7 - 5644: 54,7 - 5645: 50,7 - 5646: 49,0 - 5647: 45,-1 - 5648: 46,-5 - 5649: 46,-8 - 5650: 50,-4 - 5651: 50,-7 - 5652: 55,-5 - 5653: 53,-5 - 5654: 58,-6 - 5655: 61,-5 - 5656: 59,-7 - 5657: 59,-7 - 5658: 60,-6 - 5659: 59,-14 - 5660: 60,-14 - 5661: 59,-14 - 5662: 59,-18 - 5663: 59,-20 - 5664: 60,-18 - 5665: 60,-17 - 5666: 64,-13 - 5667: 64,-17 - 5668: 65,-19 - 5669: 64,-19 - 5670: 64,-25 - 5671: 65,-24 - 5672: 63,-26 - 5673: 63,-24 - 5674: 62,-26 - 5675: 64,-26 - 5676: 70,-28 - 5677: 71,-26 - 5678: 69,-27 - 5679: 69,-23 - 5680: 70,-24 - 5681: 69,-22 - 5682: 66,-18 - 5683: 70,-18 - 5684: 71,-17 - 5685: 69,-13 - 5686: 71,-14 - 5687: 69,-12 - 5688: 70,-14 - 5689: 76,-17 - 5690: 77,-18 - 5691: 74,-15 - 5692: 76,-14 - 5693: 74,-14 - 5694: 68,-8 - 5695: 70,-10 - 5696: 76,-6 - 5697: 48,-25 - 5698: 48,-26 - 5699: 48,-27 - 5700: 48,-30 - 5701: 48,-31 - 5702: 47,-31 - 5703: 49,-34 - 5704: 47,-36 - 5705: 46,-36 - 5706: 44,-37 - 5707: 42,-35 - 5708: 42,-36 - 5709: 38,-36 - 5710: 38,-35 - 5711: 37,-37 - 5712: 32,-35 - 5713: 32,-36 - 5714: 32,-33 - 5715: 33,-31 - 5716: 32,-31 - 5717: 33,-27 - 5718: 32,-25 - 5719: 33,-24 - 5720: 35,-26 - 5721: 37,-26 - 5722: 41,-25 - 5723: 40,-26 - 5724: 41,-29 - 5725: 40,-29 - 5726: 40,-31 - 5727: 43,-29 - 5728: 44,-31 - 5729: 45,-30 - 5730: 27,-34 - 5731: 25,-34 - 5732: 24,-32 - 5733: 26,-29 - 5734: 23,-29 - 5735: 23,-31 - 5736: 25,-38 - 5737: 24,-37 - 5738: 22,-38 - 5739: 21,-37 - 5740: 21,-38 - 5741: 29,-39 - 5742: 28,-41 - 5743: 29,-44 - 5744: 28,-42 - 5745: 28,-45 - 5746: 26,-45 - 5747: 27,-44 - 5748: 24,-43 - 5749: 25,-46 - 5750: 27,-45 - 5751: 25,-46 - 5752: 32,-30 - 5753: 33,-28 - 5754: 36,-26 - 5755: 35,-26 - 5756: 36,-23 - 5757: 36,-30 - 5758: 42,-28 - 5759: 43,-29 - 5760: 52,-31 - 5761: 52,-35 - 5762: 55,-29 - 5763: 55,-30 - 5764: 57,-30 - 5765: 55,-34 - 5766: 55,-34 - 5767: 55,-36 - 5768: 57,-34 - 5769: 20,-45 - 5770: 17,-44 - 5771: 18,-45 - 5772: 19,-46 - 5773: 18,-48 - 5774: 19,-49 - 5775: 18,-50 - 5776: 20,-53 - 5777: 18,-54 - 5778: 17,-54 - 5779: 16,-54 - 5780: 16,-58 - 5781: 16,-59 - 5782: 19,-58 - 5783: 21,-58 - 5784: 21,-59 - 5785: 13,-47 - 5786: 14,-47 - 5787: 13,-48 - 5788: 13,-45 - 5789: 12,-45 - 5792: 10,-39 - 5793: 11,-39 - 5794: 0,-37 - 5795: 0,-36 - 5796: 1,-36 - 5797: 2,-38 - 5798: 0,-36 - 5799: -1,-37 - 5800: -2,-36 - 5801: -5,-36 - 5802: -4,-36 - 5803: -6,-36 - 5804: -7,-32 - 5805: -8,-32 - 5806: -7,-30 - 5807: -11,-31 - 5808: -12,-32 - 5809: -15,-32 - 5810: -16,-32 - 5811: -13,-30 - 5812: -16,-30 - 5813: -17,-30 - 5814: -22,-30 - 5815: -23,-30 - 5816: -24,-30 - 5817: -24,-29 - 5818: -24,-28 - 5819: -22,-32 - 5820: -24,-32 - 5821: -25,-32 - 5822: -26,-30 - 5823: -26,-28 - 5824: -26,-26 - 5825: -26,-24 - 5826: -24,-24 - 5827: -24,-22 - 5828: -24,-19 - 5829: -26,-21 - 5830: -26,-18 - 5831: -26,-17 - 5832: -24,-14 - 5833: -25,-15 - 5834: -27,-15 - 5835: -30,-15 - 5836: -30,-15 - 5837: -34,-15 - 5838: -35,-14 - 5839: -37,-15 - 5840: -38,-14 - 5841: -35,-15 - 5842: -34,-14 - 5843: -37,-10 - 5844: -38,-10 - 5845: -36,-9 - 5846: -29,-10 - 5847: -29,-11 - 5848: -33,-20 - 5849: -34,-20 - 5850: -33,-18 - 5851: -32,-20 - 5852: -34,-19 - 5853: -33,-18 - 5854: -29,-19 - 5855: -30,-21 - 5856: -29,-19 - 5857: -30,-20 - 5858: -37,-18 - 5859: -40,-18 - 5860: -39,-20 - 5861: -37,-19 - 5862: -39,-19 - 5863: -32,-26 - 5864: -35,-25 - 5865: -39,-26 - 5866: -39,-26 - 5867: -39,-27 - 5868: -40,-28 - 5869: -38,-30 - 5870: -39,-32 - 5871: -39,-33 - 5872: -37,-33 - 5873: -34,-33 - 5874: -31,-33 - 5875: -34,-34 - 5876: -30,-33 - 5877: -30,-31 - 5878: -31,-28 - 5879: -29,-27 - 5880: -29,-30 - 5881: -43,-30 - 5882: -44,-28 - 5883: -45,-31 - 5884: -46,-27 - 5885: -45,-25 - 5886: -45,-25 - 5887: -47,-25 - 5888: -49,-25 - 5889: -51,-26 - 5890: -50,-29 - 5891: -51,-30 - 5892: -51,-30 - 5893: -50,-32 - 5894: -47,-32 - 5895: -48,-33 - 5896: -44,-31 - 5897: -44,-29 - 5898: -55,-25 - 5899: -56,-25 - 5900: -55,-29 - 5901: -56,-29 - 5902: -55,-29 - 5903: -60,-27 - 5904: -60,-29 - 5905: -62,-27 - 5906: -61,-21 - 5907: -61,-21 - 5908: -54,-21 - 5909: -54,-21 - 5910: -55,-16 - 5911: -53,-14 - 5912: -54,-13 - 5913: -53,-10 - 5914: -54,-7 - 5915: -53,-5 - 5916: -55,-2 - 5917: -54,0 - 5918: -53,1 - 5919: -53,-4 - 5920: -54,-3 - 5921: -54,-4 - 5922: -54,-9 - 5923: -46,-4 - 5924: -47,-4 - 5925: -48,-3 - 5926: -50,0 - 5927: -45,1 - 5928: -47,1 - 5929: -44,1 - 5930: -47,1 - 5931: -46,7 - 5932: -49,7 - 5933: -49,11 - 5934: -46,11 - 5935: -49,10 - 5936: -48,13 - 5937: -45,11 - 5938: -54,10 - 5939: -54,9 - 5940: -53,10 - 5941: -39,1 - 5942: -37,0 - 5943: -39,-1 - 5944: -34,-1 - 5945: -37,-1 - 5946: -36,0 - 5947: -35,2 - 5948: -31,2 - 5949: -31,2 - 5950: -33,1 - 5951: -28,0 - 5952: -30,-1 - 5953: -27,-1 - 5954: -33,-4 - 5955: -27,-5 - 5956: -24,-3 - 5957: -24,1 - 5958: -22,3 - 5959: -23,-2 - 5960: -22,-3 - 5961: -17,-3 - 5962: -19,-3 - 5963: -17,-3 - 5964: -18,-4 - 5965: -14,-4 - 5966: -18,-4 - 5967: -17,-4 - 5968: -17,-4 - 5969: -19,-4 - 5970: -19,-2 - 5971: -19,-2 - 5972: -20,-3 - 5973: -20,-5 - 5974: -16,0 - 5975: -16,1 - 5976: -16,3 - 5977: -15,0 - 5978: -15,6 - 5979: -17,5 - 5980: -15,7 - 5981: -21,5 - 5982: -21,6 - 5983: -20,7 - 5984: -22,8 - 5985: -24,9 - 5986: -21,9 - 5987: -23,8 - 5988: -22,8 - 5989: -23,8 - 5990: -21,13 - 5991: -22,11 - 5992: -20,13 - 5993: -22,14 - 5994: -26,12 - 5995: -26,16 - 5996: -26,17 - 5997: -26,20 - 5998: -19,20 - 5999: -25,20 - 6000: -22,19 - 6001: -24,26 - 6002: -25,26 - 6003: -26,26 - 6004: -25,29 - 6005: -26,29 - 6006: -26,26 - 6007: -26,27 - 6008: -25,29 - 6009: -29,26 - 6010: -29,26 - 6011: -19,26 - 6012: -21,26 - 6013: -19,28 - 6014: -18,26 - 6015: -14,28 - 6016: -14,26 - 6017: -13,28 - 6018: -11,23 - 6019: -7,32 - 6020: -9,32 - 6021: -14,32 - 6022: -15,33 - 6023: -18,32 - 6024: -3,28 - 6025: -4,27 - 6026: -1,29 - 6027: -2,23 - 6028: -1,19 - 6029: -3,14 - 6030: -3,14 - 6031: -2,15 - 6032: -4,15 - 6033: -3,15 - 6034: 2,-14 - 6035: 2,-16 - 6036: -1,-17 - 6037: -2,-14 - 6038: -7,-17 - 6039: -6,-16 - 6040: -7,-19 - 6041: -7,-19 - 6042: -7,-23 - 6043: -1,-24 - 6044: 4,-20 - 6045: 6,-23 - 6046: 6,-20 - 6047: 7,-22 - 6048: 7,-20 - 6049: 11,-18 - 6050: 13,-18 - 6051: 13,-22 - 6052: 13,-22 - 6053: 12,-22 - 6054: 15,-26 - 6055: 12,-26 - 6056: 12,-29 - 6057: 7,-30 - 6058: 8,-32 - 6059: 7,-32 - 6060: 10,-34 - 6061: 13,-33 - 6062: 16,-32 - 6063: 21,-37 - 6064: 20,-38 - 6065: 24,-38 - 6066: 25,-37 - 6067: 28,-34 - 6068: 25,-34 - 6069: 27,-29 - 6070: 24,-29 - 6071: 33,-34 - 6072: 32,-37 - 6073: 35,-37 - 6074: 38,-36 - 6075: 40,-36 - 6076: 39,-30 - 6077: 44,-25 - 6078: 43,-25 - 6079: 42,-20 - 6080: 42,-18 - 6081: 41,-16 - 6082: 38,-16 - 6083: 37,-17 - 6084: 37,-15 - 6085: 37,-17 - 6086: 37,-16 - 6087: 37,-16 - 6088: 37,-16 - 6089: 38,-4 - 6090: 33,-3 - 6091: 33,-3 - 6093: 38,7 - 6094: 36,13 - 6095: 37,13 - 6096: 35,13 - 6097: 34,13 - 6098: 34,14 - 6099: 36,13 - 6100: 36,13 - 6101: 34,14 - 6102: 35,18 - 6103: 36,18 + 5432: -34,-26 + 5433: -37,-25 + 5434: -39,-28 + 5435: -40,-28 + 5436: -40,-31 + 5437: -39,-33 + 5438: -37,-33 + 5439: -32,-33 + 5440: -29,-33 + 5441: -29,-31 + 5442: -30,-28 + 5443: -29,-27 + 5444: -25,-30 + 5445: -25,-27 + 5446: -25,-26 + 5447: -25,-23 + 5448: -24,-21 + 5449: -25,-18 + 5450: -29,-20 + 5451: -29,-19 + 5452: -33,-19 + 5453: -33,-20 + 5454: -31,-14 + 5455: -29,-15 + 5456: -33,-16 + 5457: -29,-13 + 5458: -29,-11 + 5459: -38,-11 + 5460: -37,-15 + 5461: -36,-16 + 5462: -40,-10 + 5463: -38,-17 + 5464: -47,-8 + 5465: -45,0 + 5466: -47,0 + 5467: -44,2 + 5468: -48,-2 + 5469: -47,-1 + 5470: -49,3 + 5471: -50,-1 + 5472: -45,1 + 5473: -53,4 + 5474: -48,5 + 5475: -50,6 + 5476: -47,1 + 5477: -38,-1 + 5478: -36,1 + 5479: -35,-1 + 5480: -32,-1 + 5481: -33,0 + 5482: -33,-3 + 5483: -24,-2 + 5484: -28,3 + 5485: -26,3 + 5486: -26,8 + 5487: -27,13 + 5488: -26,14 + 5489: -26,18 + 5490: -33,13 + 5491: -32,15 + 5492: -32,14 + 5493: -22,13 + 5494: -20,12 + 5495: -22,13 + 5496: -24,19 + 5497: -20,20 + 5498: -18,19 + 5499: -16,20 + 5500: -13,19 + 5501: -15,24 + 5502: -14,24 + 5503: -13,27 + 5504: -14,28 + 5505: -13,27 + 5506: -5,28 + 5507: -20,28 + 5508: -18,25 + 5509: -13,31 + 5510: -15,32 + 5511: -14,34 + 5512: -17,32 + 5513: -8,32 + 5514: -8,32 + 5515: -6,33 + 5516: -6,27 + 5517: -3,28 + 5518: -1,30 + 5519: -2,33 + 5520: -2,33 + 5521: -2,36 + 5522: -2,43 + 5523: -7,42 + 5524: -5,45 + 5525: -3,47 + 5526: 0,45 + 5527: -2,47 + 5528: -1,47 + 5529: -2,51 + 5530: 1,51 + 5531: -1,52 + 5532: 1,52 + 5533: 2,45 + 5534: 2,47 + 5535: 2,42 + 5536: 1,40 + 5537: 6,41 + 5538: 8,39 + 5539: 6,41 + 5540: 5,31 + 5541: 3,31 + 5542: 5,30 + 5543: 4,30 + 5544: 3,26 + 5545: 2,27 + 5546: 4,25 + 5547: 3,23 + 5548: 2,24 + 5549: 1,23 + 5550: -2,24 + 5551: 1,21 + 5552: -1,19 + 5553: 4,20 + 5554: 9,20 + 5555: 9,20 + 5556: 15,19 + 5557: 11,24 + 5558: 14,23 + 5559: 14,25 + 5560: 15,24 + 5561: 14,29 + 5562: 14,31 + 5563: 17,25 + 5564: 17,23 + 5565: 16,20 + 5566: 20,20 + 5567: 20,18 + 5568: 20,15 + 5569: 21,15 + 5570: 20,12 + 5571: 22,12 + 5572: 20,11 + 5573: 27,12 + 5574: 27,11 + 5575: 26,14 + 5576: 25,19 + 5577: 30,19 + 5578: 31,16 + 5579: 31,12 + 5580: 35,14 + 5581: 35,14 + 5582: 35,14 + 5583: 32,8 + 5584: 34,9 + 5585: 32,7 + 5586: 26,7 + 5587: 24,7 + 5588: 24,3 + 5589: 24,2 + 5590: 23,2 + 5591: 20,6 + 5592: 20,9 + 5593: 23,3 + 5594: 32,3 + 5595: 34,2 + 5596: 32,-2 + 5597: 32,-2 + 5598: 32,-4 + 5599: 37,-4 + 5600: 36,3 + 5601: 42,2 + 5602: 38,-2 + 5603: 42,-5 + 5604: 42,-2 + 5605: 42,-4 + 5606: 43,6 + 5607: 44,12 + 5608: 43,11 + 5609: 46,12 + 5610: 44,12 + 5611: 52,12 + 5612: 50,14 + 5613: 50,7 + 5614: 53,14 + 5615: 59,15 + 5616: 60,17 + 5617: 55,7 + 5618: 54,7 + 5619: 50,7 + 5620: 49,0 + 5621: 45,-1 + 5622: 46,-5 + 5623: 46,-8 + 5624: 50,-4 + 5625: 50,-7 + 5626: 55,-5 + 5627: 53,-5 + 5628: 58,-6 + 5629: 61,-5 + 5630: 59,-7 + 5631: 59,-7 + 5632: 60,-6 + 5633: 59,-14 + 5634: 60,-14 + 5635: 59,-14 + 5636: 59,-18 + 5637: 59,-20 + 5638: 60,-18 + 5639: 60,-17 + 5640: 64,-13 + 5641: 64,-17 + 5642: 65,-19 + 5643: 64,-19 + 5644: 64,-25 + 5645: 65,-24 + 5646: 63,-26 + 5647: 63,-24 + 5648: 62,-26 + 5649: 64,-26 + 5650: 70,-28 + 5651: 71,-26 + 5652: 69,-27 + 5653: 69,-23 + 5654: 70,-24 + 5655: 69,-22 + 5656: 66,-18 + 5657: 70,-18 + 5658: 71,-17 + 5659: 69,-13 + 5660: 71,-14 + 5661: 69,-12 + 5662: 70,-14 + 5663: 76,-17 + 5664: 77,-18 + 5665: 74,-15 + 5666: 76,-14 + 5667: 74,-14 + 5668: 68,-8 + 5669: 70,-10 + 5670: 76,-6 + 5671: 48,-25 + 5672: 48,-26 + 5673: 48,-27 + 5674: 48,-30 + 5675: 48,-31 + 5676: 47,-31 + 5677: 49,-34 + 5678: 47,-36 + 5679: 46,-36 + 5680: 44,-37 + 5681: 42,-35 + 5682: 42,-36 + 5683: 38,-36 + 5684: 38,-35 + 5685: 37,-37 + 5686: 32,-35 + 5687: 32,-36 + 5688: 32,-33 + 5689: 33,-31 + 5690: 32,-31 + 5691: 33,-27 + 5692: 32,-25 + 5693: 33,-24 + 5694: 35,-26 + 5695: 37,-26 + 5696: 41,-25 + 5697: 40,-26 + 5698: 41,-29 + 5699: 40,-29 + 5700: 40,-31 + 5701: 43,-29 + 5702: 44,-31 + 5703: 45,-30 + 5704: 27,-34 + 5705: 25,-34 + 5706: 24,-32 + 5707: 26,-29 + 5708: 23,-29 + 5709: 23,-31 + 5710: 25,-38 + 5711: 24,-37 + 5712: 22,-38 + 5713: 21,-37 + 5714: 21,-38 + 5715: 29,-39 + 5716: 28,-41 + 5717: 29,-44 + 5718: 28,-42 + 5719: 28,-45 + 5720: 26,-45 + 5721: 27,-44 + 5722: 24,-43 + 5723: 25,-46 + 5724: 27,-45 + 5725: 25,-46 + 5726: 32,-30 + 5727: 33,-28 + 5728: 36,-26 + 5729: 35,-26 + 5730: 36,-23 + 5731: 36,-30 + 5732: 42,-28 + 5733: 43,-29 + 5734: 52,-31 + 5735: 52,-35 + 5736: 55,-29 + 5737: 55,-30 + 5738: 57,-30 + 5739: 55,-34 + 5740: 55,-34 + 5741: 55,-36 + 5742: 57,-34 + 5743: 20,-45 + 5744: 17,-44 + 5745: 18,-45 + 5746: 19,-46 + 5747: 18,-48 + 5748: 19,-49 + 5749: 18,-50 + 5750: 20,-53 + 5751: 18,-54 + 5752: 17,-54 + 5753: 16,-54 + 5754: 16,-58 + 5755: 16,-59 + 5756: 19,-58 + 5757: 21,-58 + 5758: 21,-59 + 5759: 13,-47 + 5760: 14,-47 + 5761: 13,-48 + 5762: 13,-45 + 5763: 12,-45 + 5764: 10,-39 + 5765: 11,-39 + 5766: 0,-37 + 5767: 0,-36 + 5768: 1,-36 + 5769: 2,-38 + 5770: 0,-36 + 5771: -1,-37 + 5772: -2,-36 + 5773: -5,-36 + 5774: -4,-36 + 5775: -6,-36 + 5776: -7,-32 + 5777: -8,-32 + 5778: -7,-30 + 5779: -11,-31 + 5780: -12,-32 + 5781: -15,-32 + 5782: -16,-32 + 5783: -13,-30 + 5784: -16,-30 + 5785: -17,-30 + 5786: -22,-30 + 5787: -23,-30 + 5788: -24,-30 + 5789: -24,-29 + 5790: -24,-28 + 5791: -22,-32 + 5792: -24,-32 + 5793: -25,-32 + 5794: -26,-30 + 5795: -26,-28 + 5796: -26,-26 + 5797: -26,-24 + 5798: -24,-24 + 5799: -24,-22 + 5800: -24,-19 + 5801: -26,-21 + 5802: -26,-18 + 5803: -26,-17 + 5804: -24,-14 + 5805: -25,-15 + 5806: -27,-15 + 5807: -30,-15 + 5808: -30,-15 + 5809: -34,-15 + 5810: -35,-14 + 5811: -37,-15 + 5812: -38,-14 + 5813: -35,-15 + 5814: -34,-14 + 5815: -37,-10 + 5816: -38,-10 + 5817: -36,-9 + 5818: -29,-10 + 5819: -29,-11 + 5820: -33,-20 + 5821: -34,-20 + 5822: -33,-18 + 5823: -32,-20 + 5824: -34,-19 + 5825: -33,-18 + 5826: -29,-19 + 5827: -30,-21 + 5828: -29,-19 + 5829: -30,-20 + 5830: -37,-18 + 5831: -40,-18 + 5832: -39,-20 + 5833: -37,-19 + 5834: -39,-19 + 5835: -32,-26 + 5836: -35,-25 + 5837: -39,-26 + 5838: -39,-26 + 5839: -39,-27 + 5840: -40,-28 + 5841: -38,-30 + 5842: -39,-32 + 5843: -39,-33 + 5844: -37,-33 + 5845: -34,-33 + 5846: -31,-33 + 5847: -34,-34 + 5848: -30,-33 + 5849: -30,-31 + 5850: -31,-28 + 5851: -29,-27 + 5852: -29,-30 + 5853: -43,-30 + 5854: -44,-28 + 5855: -45,-31 + 5856: -46,-27 + 5857: -45,-25 + 5858: -45,-25 + 5859: -47,-25 + 5860: -49,-25 + 5861: -51,-26 + 5862: -50,-29 + 5863: -51,-30 + 5864: -51,-30 + 5865: -50,-32 + 5866: -47,-32 + 5867: -48,-33 + 5868: -44,-31 + 5869: -44,-29 + 5870: -55,-25 + 5871: -56,-25 + 5872: -55,-29 + 5873: -56,-29 + 5874: -55,-29 + 5875: -60,-27 + 5876: -60,-29 + 5877: -62,-27 + 5878: -61,-21 + 5879: -61,-21 + 5880: -54,-21 + 5881: -54,-21 + 5882: -55,-16 + 5883: -53,-14 + 5884: -54,-13 + 5885: -53,-10 + 5886: -54,-7 + 5887: -53,-5 + 5888: -55,-2 + 5889: -54,0 + 5890: -53,1 + 5891: -53,-4 + 5892: -54,-3 + 5893: -54,-4 + 5894: -54,-9 + 5895: -46,-4 + 5896: -47,-4 + 5897: -48,-3 + 5898: -50,0 + 5899: -45,1 + 5900: -47,1 + 5901: -44,1 + 5902: -47,1 + 5903: -46,7 + 5904: -49,7 + 5905: -49,11 + 5906: -46,11 + 5907: -49,10 + 5908: -48,13 + 5909: -45,11 + 5910: -54,10 + 5911: -54,9 + 5912: -53,10 + 5913: -39,1 + 5914: -37,0 + 5915: -39,-1 + 5916: -34,-1 + 5917: -37,-1 + 5918: -36,0 + 5919: -35,2 + 5920: -31,2 + 5921: -31,2 + 5922: -33,1 + 5923: -28,0 + 5924: -30,-1 + 5925: -27,-1 + 5926: -33,-4 + 5927: -27,-5 + 5928: -24,-3 + 5929: -24,1 + 5930: -22,3 + 5931: -23,-2 + 5932: -22,-3 + 5933: -17,-3 + 5934: -19,-3 + 5935: -17,-3 + 5936: -18,-4 + 5937: -14,-4 + 5938: -18,-4 + 5939: -17,-4 + 5940: -17,-4 + 5941: -19,-4 + 5942: -19,-2 + 5943: -19,-2 + 5944: -20,-3 + 5945: -20,-5 + 5946: -16,0 + 5947: -16,1 + 5948: -16,3 + 5949: -15,0 + 5950: -15,6 + 5951: -17,5 + 5952: -15,7 + 5953: -21,5 + 5954: -21,6 + 5955: -20,7 + 5956: -22,8 + 5957: -24,9 + 5958: -21,9 + 5959: -23,8 + 5960: -22,8 + 5961: -23,8 + 5962: -21,13 + 5963: -22,11 + 5964: -20,13 + 5965: -22,14 + 5966: -26,12 + 5967: -26,16 + 5968: -26,17 + 5969: -26,20 + 5970: -19,20 + 5971: -25,20 + 5972: -22,19 + 5973: -24,26 + 5974: -25,26 + 5975: -26,26 + 5976: -25,29 + 5977: -26,29 + 5978: -26,26 + 5979: -26,27 + 5980: -25,29 + 5981: -29,26 + 5982: -29,26 + 5983: -19,26 + 5984: -21,26 + 5985: -19,28 + 5986: -18,26 + 5987: -14,28 + 5988: -14,26 + 5989: -13,28 + 5990: -11,23 + 5991: -7,32 + 5992: -9,32 + 5993: -14,32 + 5994: -15,33 + 5995: -18,32 + 5996: -3,28 + 5997: -4,27 + 5998: -1,29 + 5999: -2,23 + 6000: -1,19 + 6001: -3,14 + 6002: -3,14 + 6003: -2,15 + 6004: -4,15 + 6005: -3,15 + 6006: 2,-14 + 6007: 2,-16 + 6008: -1,-17 + 6009: -2,-14 + 6010: -7,-17 + 6011: -6,-16 + 6012: -7,-19 + 6013: -7,-19 + 6014: -7,-23 + 6015: -1,-24 + 6016: 4,-20 + 6017: 6,-23 + 6018: 6,-20 + 6019: 7,-22 + 6020: 7,-20 + 6021: 11,-18 + 6022: 13,-18 + 6023: 13,-22 + 6024: 13,-22 + 6025: 12,-22 + 6026: 15,-26 + 6027: 12,-26 + 6028: 12,-29 + 6029: 7,-30 + 6030: 8,-32 + 6031: 7,-32 + 6032: 10,-34 + 6033: 13,-33 + 6034: 16,-32 + 6035: 21,-37 + 6036: 20,-38 + 6037: 24,-38 + 6038: 25,-37 + 6039: 28,-34 + 6040: 25,-34 + 6041: 27,-29 + 6042: 24,-29 + 6043: 33,-34 + 6044: 32,-37 + 6045: 35,-37 + 6046: 38,-36 + 6047: 40,-36 + 6048: 39,-30 + 6049: 44,-25 + 6050: 43,-25 + 6051: 42,-20 + 6052: 42,-18 + 6053: 41,-16 + 6054: 38,-16 + 6055: 37,-17 + 6056: 37,-15 + 6057: 37,-17 + 6058: 37,-16 + 6059: 37,-16 + 6060: 37,-16 + 6061: 38,-4 + 6062: 33,-3 + 6063: 33,-3 + 6064: 38,7 + 6065: 36,13 + 6066: 37,13 + 6067: 35,13 + 6068: 34,13 + 6069: 34,14 + 6070: 36,13 + 6071: 36,13 + 6072: 34,14 + 6073: 35,18 + 6074: 36,18 - node: cleanable: True color: '#D4D4D447' id: Dirt decals: - 6740: 37,-3 - 6741: 37,-2 - 6742: 37,-2 - 6743: 38,-3 - 6744: 39,-2 - 6745: 39,-2 - 6746: 38,-3 - 6747: 38,-2 - 6748: 36,-3 - 6749: 36,-3 - 6750: 36,-2 - 6751: 36,-2 - 6752: 39,-3 - 6753: 37,-3 - 6754: 37,-3 + 6711: 37,-3 + 6712: 37,-2 + 6713: 37,-2 + 6714: 38,-3 + 6715: 39,-2 + 6716: 39,-2 + 6717: 38,-3 + 6718: 38,-2 + 6719: 36,-3 + 6720: 36,-3 + 6721: 36,-2 + 6722: 36,-2 + 6723: 39,-3 + 6724: 37,-3 + 6725: 37,-3 - node: cleanable: True color: '#FFFFFF47' id: Dirt decals: - 6644: 15,-30 - 6645: 15,-30 - 6646: 16,-27 - 6647: 16,-27 + 6615: 15,-30 + 6616: 15,-30 + 6617: 16,-27 + 6618: 16,-27 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 6115: 51,20 - 6116: 50,21 - 6153: 81,-34 - 6154: 83,-35 - 6155: 81,-34 - 6156: 81,-34 - 6157: 83,-35 - 6158: 81,-35 - 6159: 82,-35 - 6160: 82,-35 - 6161: 80,-35 - 6162: 83,-36 - 6167: 82,-34 - 6721: -25,-42 + 6086: 51,20 + 6087: 50,21 + 6124: 81,-34 + 6125: 83,-35 + 6126: 81,-34 + 6127: 81,-34 + 6128: 83,-35 + 6129: 81,-35 + 6130: 82,-35 + 6131: 82,-35 + 6132: 80,-35 + 6133: 83,-36 + 6138: 82,-34 + 6692: -25,-42 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 3013: -44,16 - 3014: -43,17 - 3015: -41,14 + 2992: -44,16 + 2993: -43,17 + 2994: -41,14 - node: cleanable: True color: '#1D1D21FF' id: DirtHeavy decals: - 2938: -39,26 - 2939: -40,29 - 2940: -38,28 - 2941: -36,29 - 2942: -35,27 - 2943: -35,26 - 2944: -35,26 - 2945: -37,26 - 2946: -37,26 - 2947: -37,25 - 2948: -39,26 - 2949: -34,25 - 2950: -34,25 - 2951: -36,24 + 2917: -39,26 + 2918: -40,29 + 2919: -38,28 + 2920: -36,29 + 2921: -35,27 + 2922: -35,26 + 2923: -35,26 + 2924: -37,26 + 2925: -37,26 + 2926: -37,25 + 2927: -39,26 + 2928: -34,25 + 2929: -34,25 + 2930: -36,24 - node: cleanable: True color: '#835432FF' id: DirtHeavy decals: - 2930: -36,26 - 2931: -35,27 - 2932: -37,26 - 2933: -37,27 - 2934: -37,25 - 2935: -39,26 - 2936: -38,27 - 2937: -38,28 + 2909: -36,26 + 2910: -35,27 + 2911: -37,26 + 2912: -37,27 + 2913: -37,25 + 2914: -39,26 + 2915: -38,27 + 2916: -38,28 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 6609: 89,-20 - 6610: 87,-21 - 6611: 92,-21 + 6580: 89,-20 + 6581: 87,-21 + 6582: 92,-21 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 2958: -8,-40 - 2959: -7,-39 - 2960: -5,-40 - 2961: -6,-42 - 2962: -4,-39 - 2963: -6,-40 - 2964: -6,-40 - 2965: -7,-40 - 2966: -7,-39 - 2967: -7,-39 - 2968: -8,-39 - 3650: -60,-66 - 3651: -59,-65 - 3652: -59,-63 - 3653: -59,-61 - 3654: -59,-59 - 3655: -59,-57 - 3656: -60,-57 - 3657: -57,-57 - 3658: -58,-58 - 3659: -56,-57 - 3660: -56,-58 - 3661: -56,-60 - 3662: -56,-62 - 3663: -56,-64 - 3664: -56,-66 - 3665: -58,-66 - 3666: -55,-56 - 3667: -54,-54 - 3668: -54,-52 - 3669: -54,-50 - 3670: -56,-53 - 3671: -56,-52 - 3672: -56,-47 - 3673: -53,-48 - 3674: -52,-46 - 3675: -54,-46 - 3676: -51,-46 - 3677: -50,-48 - 3678: -47,-48 - 3679: -45,-48 - 3680: -43,-46 - 3681: -45,-46 - 3682: -43,-48 - 3683: -42,-48 - 3684: -40,-48 - 3685: -40,-50 - 3686: -40,-52 - 3687: -40,-54 - 3688: -42,-51 - 3689: -42,-53 - 3690: -42,-54 - 3691: -41,-56 - 3692: -39,-57 - 3693: -40,-58 - 3694: -37,-57 - 3695: -37,-58 - 3696: -37,-61 - 3697: -37,-64 - 3698: -37,-65 - 3699: -36,-65 - 3700: -36,-66 - 3701: -39,-66 - 3702: -40,-65 - 3703: -40,-63 - 3704: -40,-60 - 3705: -47,-44 - 3706: -47,-42 - 3707: -47,-39 - 3708: -47,-35 - 3709: -47,-33 - 3710: -49,-33 - 3711: -49,-37 - 3712: -49,-39 - 3713: -49,-41 - 3714: -49,-44 - 3715: -49,-44 - 3716: -49,-43 - 3717: -44,-32 - 3718: -44,-30 - 3719: -43,-31 - 3720: -43,-27 - 3721: -44,-26 - 3722: -43,-26 - 3723: -44,-25 - 3724: -52,-32 - 3725: -52,-30 - 3726: -52,-29 - 3727: -52,-25 - 3728: -52,-22 - 3729: -54,-22 - 3730: -55,-22 - 3731: -52,-20 - 3732: -50,-20 - 3733: -47,-20 - 3734: -46,-20 - 3735: -45,-20 - 3736: -44,-20 - 3737: -44,-22 - 3738: -51,-18 - 3739: -51,-17 - 3740: -49,-17 - 3741: -48,-15 - 3742: -48,-13 - 3743: -50,-13 - 3744: -51,-14 - 3745: -51,-15 - 3746: -44,-15 - 3747: -46,-15 - 3748: -46,-14 - 3749: -54,-24 - 3750: -56,-24 - 3751: -54,-30 - 3752: -56,-29 - 3753: -57,-28 - 3754: -54,-28 - 3755: -61,-29 - 3756: -59,-29 - 3757: -59,-27 - 3758: -59,-25 - 3759: -61,-25 - 3760: -55,-17 - 3761: -55,-15 - 3762: -55,-13 - 3763: -55,-10 - 3764: -53,-17 - 3765: -53,-14 - 3766: -53,-12 - 3767: -53,-11 - 3768: -53,-9 - 3769: -53,-7 - 3770: -53,-6 - 3771: -53,-4 - 3772: -55,-3 - 3773: -55,-7 - 3774: -55,-8 - 3775: -53,0 - 3776: -53,-2 - 3777: -51,-4 - 3778: -49,-4 - 3779: -50,-5 - 3780: -48,-5 - 3789: -53,2 - 3790: -53,4 - 3791: -53,6 - 3792: -53,7 - 3793: -55,7 - 3794: -55,5 - 3795: -55,-1 - 3796: -51,6 - 3797: -50,7 - 3798: -47,7 - 3799: -48,6 - 3800: -46,6 - 3801: -45,7 - 3802: -47,9 - 3803: -45,9 - 3804: -44,9 - 3805: -50,9 - 3806: -50,9 - 3807: -51,11 - 3808: -51,13 - 3809: -50,13 - 3810: -48,13 - 3811: -46,13 - 3812: -48,12 - 3813: -43,11 - 3814: -44,12 - 3815: -43,13 - 3816: -43,12 - 3817: -54,10 - 3818: -53,9 - 3819: -54,9 - 3842: -43,1 - 3843: -40,2 - 3844: -39,1 - 3845: -39,1 - 3846: -40,-1 - 3847: -38,-1 - 3848: -40,-2 - 3849: -39,-2 - 3850: -40,-4 - 3851: -39,-5 - 3852: -38,-5 - 3853: -37,-5 - 3854: -36,-5 - 3855: -38,-4 - 3856: -36,-3 - 3857: -36,-2 - 3858: -36,-4 - 3859: -34,-3 - 3860: -32,-4 - 3861: -34,-1 - 3862: -32,0 - 3863: -35,0 - 3864: -39,3 - 3865: -40,4 - 3866: -38,4 - 3867: -33,1 - 3868: -31,2 - 3869: -31,-1 - 3870: -29,0 - 3871: -32,-2 - 3872: -31,-3 - 3873: -33,-4 - 3874: -32,-5 - 3875: -31,-4 - 3876: -30,-3 - 3877: -28,-3 - 3878: -28,-4 - 3879: -26,-5 - 3880: -27,-2 - 3881: -27,-3 - 3882: -29,0 - 3883: -27,0 - 3884: -27,2 - 3885: -28,3 - 3886: -27,3 - 3887: -27,1 - 3888: -26,-1 - 3889: -32,-1 - 3890: -28,4 - 3891: -26,5 - 3892: -26,6 - 3893: -26,3 - 3894: -26,3 - 3895: -24,2 - 3896: -23,1 - 3897: -25,0 - 3898: -23,-2 - 3899: -25,-3 - 3900: -23,-3 - 3901: -25,-4 - 3902: -23,-5 - 3903: -25,-5 - 3904: -24,-1 - 3905: -25,-1 - 3906: -23,3 - 3907: -15,-1 - 3908: -16,-1 - 3909: -15,0 - 3910: -16,1 - 3911: -16,3 - 3912: -15,3 - 3913: -15,2 - 3914: -15,1 - 3915: -15,1 - 3916: -27,6 - 3917: -27,7 - 3918: -27,9 - 3919: -20,5 - 3920: -21,5 - 3925: -17,5 - 3926: -16,5 - 3927: -16,5 - 3928: -22,11 - 3929: -21,11 - 3930: -22,13 - 3931: -20,14 - 3932: -22,13 - 3933: -22,15 - 3934: -20,14 - 3935: -20,13 - 3936: -20,12 - 3937: -19,11 - 3938: -22,14 - 3939: -23,14 - 3940: -17,11 - 3941: -17,11 - 3942: -17,12 - 3943: -16,11 - 3944: -16,12 - 3945: -17,13 - 3946: -16,14 - 3947: -17,14 - 3948: -16,12 - 3949: -17,12 - 3950: -17,11 - 3953: -34,12 - 3954: -35,12 - 3955: -34,14 - 3956: -35,15 - 3957: -34,16 - 3958: -34,17 - 3959: -33,16 - 3960: -32,15 - 3961: -31,17 - 3962: -32,17 - 3963: -33,16 - 3964: -34,15 - 3965: -34,15 - 3966: -37,14 - 3967: -38,14 - 3968: -39,14 - 3969: -39,12 - 3970: -39,11 - 3971: -38,11 - 3972: -38,11 - 3973: -27,11 - 3974: -27,13 - 3975: -27,16 - 3976: -27,17 - 3977: -27,19 - 3978: -27,20 - 3979: -27,21 - 3980: -25,18 - 3981: -25,16 - 3982: -25,14 - 3983: -25,12 - 3984: -25,11 - 3985: -24,18 - 3986: -22,18 - 3987: -23,17 - 3988: -21,17 - 3989: -20,18 - 3990: -19,17 - 3991: -20,20 - 3992: -22,20 - 3993: -24,20 - 3994: -20,21 - 3995: -17,19 - 3996: -16,19 - 3997: -14,19 - 3998: -17,21 - 3999: -15,21 - 4000: -13,21 - 4001: -11,21 - 4002: -13,19 - 4003: -10,19 - 4004: -8,19 - 4005: -6,19 - 4006: -9,21 - 4007: -7,21 - 4008: -5,21 - 4009: -3,21 - 4010: 0,21 - 4011: -5,19 - 4012: -2,19 - 4013: 0,19 - 4014: 0,21 - 4015: 2,21 - 4016: 5,21 - 4017: 6,21 - 4018: 2,19 - 4019: 4,19 - 4020: 7,19 - 4021: 10,19 - 4022: 8,21 - 4023: 10,21 - 4024: 11,21 - 4025: 13,21 - 4026: 12,19 - 4027: 14,19 - 4028: 15,19 - 4029: 17,19 - 4030: 15,23 - 4031: 14,23 - 4032: 13,24 - 4033: 15,25 - 4034: 15,24 - 4035: 11,23 - 4036: 10,23 - 4037: 11,24 - 4038: 17,23 - 4039: 17,25 - 4040: 17,25 - 4041: 16,23 - 4042: 18,19 - 4043: 19,19 - 4044: 19,21 - 4045: 17,21 - 4046: 16,21 - 4047: 21,20 - 4048: 21,18 - 4049: 21,17 - 4050: 19,18 - 4051: 19,15 - 4052: 19,12 - 4053: 19,11 - 4054: 21,16 - 4055: 21,13 - 4056: 21,12 - 4057: 21,10 - 4058: 21,8 - 4059: 21,7 - 4060: 19,9 - 4061: 19,7 - 4062: 19,6 - 4063: 23,10 - 4064: 24,10 - 4065: 26,10 - 4066: 27,10 - 4067: 28,7 - 4068: 27,8 - 4069: 27,6 - 4070: 28,6 - 4071: 30,6 - 4072: 30,8 - 4073: 30,9 - 4074: 30,10 - 4075: 33,10 - 4076: 34,10 - 4077: 31,12 - 4078: 31,13 - 4079: 30,14 - 4080: 31,17 - 4081: 30,17 - 4082: 31,19 - 4083: 31,20 - 4084: 31,22 - 4085: 30,22 - 4086: 28,22 - 4087: 29,23 - 4088: 26,22 - 4089: 24,22 - 4090: 23,22 - 4091: 23,23 - 4092: 23,20 - 4093: 23,18 - 4094: 25,18 - 4095: 25,17 - 4096: 26,18 - 4097: 27,17 - 4098: 26,19 - 4099: 27,20 - 4100: 29,18 - 4101: 27,18 - 4102: 30,17 - 4103: 33,22 - 4104: 35,22 - 4105: 33,19 - 4106: 33,18 - 4107: 35,18 - 4108: 36,17 - 4109: 34,17 - 4110: 35,17 - 4111: 33,13 - 4112: 33,15 - 4113: 33,15 - 4114: 32,13 - 4115: 26,7 - 4116: 23,2 - 4117: 26,2 - 4118: 20,2 - 4119: 21,2 - 4120: 19,4 - 4126: 31,2 - 4127: 33,2 - 4128: 33,4 - 4129: 32,4 - 4130: 35,4 - 4131: 37,4 - 4132: 37,2 - 4133: 40,2 - 4134: 41,2 - 4135: 41,1 - 4136: 38,2 - 4137: 39,-4 - 4138: 37,-4 - 4139: 39,-5 - 4140: 33,-1 - 4141: 31,-1 - 4142: 31,0 - 4143: 33,0 - 4144: 32,1 - 4145: 38,7 - 4146: 46,11 - 4147: 47,13 - 4148: 44,11 - 4149: 44,13 - 4150: 42,12 - 4151: 42,11 - 4152: 44,12 - 4153: 54,14 - 4154: 58,14 - 4155: 59,14 - 4156: 60,14 - 4157: 58,16 - 4158: 55,10 - 4159: 55,12 - 4160: 54,12 - 4161: 54,6 - 4162: 59,3 - 4163: 60,4 - 4164: 59,0 - 4165: 55,-5 - 4166: 56,-4 - 4167: 57,-5 - 4168: 58,-7 - 4169: 59,-8 - 4170: 60,-7 - 4171: 41,-1 - 4172: 41,-3 - 4173: 41,-5 - 4174: 41,-7 - 4175: 41,-10 - 4176: 41,-11 - 4177: 43,-12 - 4178: 43,-14 - 4179: 43,-16 - 4180: 43,-17 - 4181: 41,-15 - 4182: 41,-16 - 4183: 41,-17 - 4184: 41,-19 - 4185: 40,-19 - 4186: 40,-21 - 4187: 42,-21 - 4188: 43,-21 - 4189: 45,-21 - 4194: 45,-19 - 4195: 47,-19 - 4196: 48,-19 - 4197: 51,-19 - 4198: 47,-21 - 4199: 49,-21 - 4200: 47,-22 - 4201: 51,-21 - 4202: 52,-21 - 4203: 52,-23 - 4204: 53,-24 - 4205: 56,-24 - 4206: 57,-24 - 4207: 58,-24 - 4208: 58,-23 - 4209: 59,-21 - 4210: 60,-21 - 4211: 61,-20 - 4212: 59,-19 - 4213: 61,-19 - 4214: 60,-17 - 4215: 60,-17 - 4216: 58,-18 - 4217: 58,-19 - 4218: 56,-19 - 4219: 55,-19 - 4220: 53,-19 - 4221: 60,-15 - 4222: 58,-15 - 4223: 59,-14 - 4224: 57,-13 - 4225: 57,-12 - 4226: 60,-13 - 4227: 60,-12 - 4228: 60,-14 - 4229: 61,-13 - 4230: 63,-13 - 4231: 64,-12 - 4232: 65,-14 - 4233: 63,-14 - 4234: 63,-16 - 4235: 65,-16 - 4236: 65,-18 - 4237: 65,-20 - 4238: 63,-18 - 4239: 63,-20 - 4240: 63,-21 - 4241: 65,-21 - 4242: 62,-23 - 4243: 61,-24 - 4244: 64,-24 - 4245: 63,-25 - 4246: 64,-26 - 4247: 65,-27 - 4248: 66,-26 - 4249: 65,-24 - 4250: 65,-23 - 4251: 65,-23 - 4255: 68,-21 - 4256: 69,-21 - 4257: 69,-23 - 4258: 69,-24 - 4260: 69,-27 - 4261: 70,-26 - 4262: 70,-26 - 4263: 71,-27 - 4264: 71,-28 - 4265: 70,-28 - 4266: 68,-28 - 4267: 69,-29 - 4268: 70,-30 - 4269: 69,-30 - 4270: 70,-29 - 4271: 70,-29 - 4272: 70,-29 - 4273: 71,-30 - 4274: 71,-17 - 4275: 68,-17 - 4276: 67,-19 - 4277: 70,-17 - 4278: 70,-19 - 4279: 71,-18 - 4280: 68,-18 - 4281: 69,-19 - 4301: 69,-9 - 4302: 68,-9 - 4303: 67,-9 - 4304: 70,-10 - 4305: 77,-18 - 4306: 75,-18 - 4307: 76,-19 - 4308: 77,-18 - 4309: 76,-17 - 4310: 76,-15 - 4311: 75,-15 - 4312: 76,-13 - 4313: 77,-14 - 4314: 74,-14 - 4315: 74,-16 - 4316: 73,-14 - 4317: 74,-17 - 4318: 74,-18 - 4319: 72,-17 - 4320: 73,-19 - 4321: 73,-17 - 4322: 74,-16 - 4323: 73,-15 - 4324: 74,-16 - 4325: 74,-15 - 4326: 76,-18 - 4327: 79,-14 - 4328: 80,-13 - 4329: 81,-14 - 4330: 79,-14 - 4331: 80,-15 - 4332: 81,-13 - 4333: 80,-19 - 4334: 79,-18 - 4335: 80,-18 - 4336: 80,-19 - 4337: 79,-19 - 4338: 80,-19 - 4339: 81,-19 - 4340: 80,-17 - 4341: 80,-18 - 4342: 79,-19 - 4343: 50,-13 - 4344: 51,-14 - 4345: 50,-13 - 4346: 51,-13 - 4347: 50,-14 - 4348: 50,-14 - 4349: 48,-13 - 4350: 48,-14 - 4351: 48,-13 - 4352: 53,-13 - 4353: 53,-14 - 4354: 53,-12 - 4355: 53,-14 - 4356: 53,-13 - 4357: 53,-14 - 4358: 50,-15 - 4359: 51,-15 - 4360: 50,-14 - 4361: 51,-13 - 4362: 50,-12 - 4363: 50,-12 - 4364: 48,-12 - 4365: 50,-12 - 4366: 51,-13 - 4367: 47,-24 - 4368: 49,-25 - 4369: 48,-26 - 4370: 47,-25 - 4371: 49,-25 - 4372: 48,-23 - 4373: 47,-28 - 4374: 49,-29 - 4375: 47,-30 - 4376: 48,-32 - 4377: 49,-31 - 4378: 48,-33 - 4379: 47,-33 - 4380: 49,-33 - 4381: 48,-34 - 4382: 47,-34 - 4383: 43,-36 - 4384: 40,-36 - 4385: 37,-35 - 4386: 36,-35 - 4387: 37,-36 - 4388: 40,-36 - 4389: 43,-35 - 4390: 43,-35 - 4391: 41,-35 - 4392: 43,-35 - 4393: 43,-34 - 4419: 33,-34 - 4420: 31,-34 - 4421: 33,-32 - 4422: 32,-32 - 4423: 32,-31 - 4424: 32,-30 - 4425: 33,-28 - 4426: 31,-29 - 4427: 33,-31 - 4428: 33,-31 - 4429: 35,-30 - 4430: 36,-30 - 4431: 36,-29 - 4432: 33,-25 - 4433: 31,-25 - 4434: 33,-25 - 4435: 31,-25 - 4436: 33,-25 - 4437: 32,-26 - 4438: 31,-25 - 4439: 32,-24 - 4440: 32,-25 - 4441: 31,-24 - 4442: 40,-25 - 4443: 39,-24 - 4444: 40,-26 - 4445: 42,-25 - 4446: 42,-25 - 4447: 44,-24 - 4448: 42,-25 - 4449: 44,-25 - 4450: 45,-25 - 4451: 42,-26 - 4452: 43,-25 - 4453: 43,-25 - 4454: 41,-25 - 4455: 40,-25 - 4456: 40,-25 - 4457: 40,-24 - 4458: 35,-23 - 4459: 37,-23 - 4460: 36,-23 - 4461: 35,-23 - 4462: 38,-21 - 4463: 35,-21 - 4464: 33,-21 - 4465: 33,-22 - 4466: 32,-22 - 4467: 32,-21 - 4468: 37,-19 - 4469: 34,-19 - 4470: 32,-19 - 4471: 31,-19 - 4472: 28,-19 - 4473: 27,-19 - 4474: 27,-20 - 4475: 27,-21 - 4476: 30,-21 - 4477: 29,-21 - 4478: 29,-23 - 4479: 29,-24 - 4480: 29,-25 - 4481: 29,-26 - 4482: 27,-22 - 4483: 27,-24 - 4484: 27,-25 - 4485: 26,-25 - 4486: 25,-25 - 4487: 29,-27 - 4488: 27,-27 - 4489: 25,-27 - 4490: 24,-27 - 4491: 21,-27 - 4492: 21,-25 - 4493: 20,-25 - 4494: 19,-25 - 4495: 19,-26 - 4496: 19,-28 - 4497: 19,-28 - 4498: 19,-30 - 4499: 19,-31 - 4500: 19,-32 - 4501: 21,-30 - 4502: 21,-33 - 4503: 21,-34 - 4504: 21,-34 - 4505: 19,-34 - 4506: 20,-36 - 4507: 20,-37 - 4508: 19,-37 - 4509: 20,-39 - 4510: 21,-38 - 4511: 22,-39 - 4512: 21,-37 - 4513: 24,-37 - 4514: 23,-38 - 4515: 25,-37 - 4516: 25,-38 - 4517: 24,-38 - 4518: 25,-38 - 4519: 17,-34 - 4520: 17,-35 - 4521: 16,-34 - 4522: 14,-34 - 4523: 17,-32 - 4524: 15,-32 - 4525: 13,-32 - 4526: 11,-32 - 4527: 10,-32 - 4528: 12,-34 - 4529: 9,-34 - 4530: 8,-34 - 4531: 7,-34 - 4532: 7,-32 - 4533: 7,-32 - 4534: 6,-32 - 4535: 9,-30 - 4536: 8,-29 - 4537: 7,-29 - 4538: 7,-29 - 4539: 6,-28 - 4540: 8,-27 - 4541: 9,-27 - 4542: 7,-28 - 4543: 6,-27 - 4544: 5,-29 - 4545: 7,-30 - 4546: 9,-30 - 4547: 3,-30 - 4548: 1,-30 - 4549: 3,-32 - 4550: 2,-32 - 4551: 2,-33 - 4552: 0,-33 - 4553: -1,-33 - 4554: -1,-32 - 4555: 0,-30 - 4556: -3,-30 - 4557: -4,-30 - 4558: -6,-30 - 4559: -7,-30 - 4560: -9,-30 - 4561: -6,-32 - 4562: -5,-32 - 4563: -3,-32 - 4564: -8,-32 - 4565: -8,-33 - 4566: -9,-32 - 4567: -10,-32 - 4568: -11,-32 - 4569: -13,-32 - 4570: -10,-30 - 4571: -11,-30 - 4572: -13,-30 - 4573: -15,-30 - 4574: -16,-30 - 4575: -12,-29 - 4576: -12,-30 - 4577: -16,-32 - 4578: -17,-33 - 4579: -17,-32 - 4580: -19,-32 - 4581: -18,-30 - 4582: -20,-30 - 4583: -22,-30 - 4584: -23,-30 - 4585: -23,-29 - 4586: -22,-32 - 4587: -24,-32 - 4588: -24,-32 - 4589: -26,-30 - 4590: -26,-29 - 4591: -26,-27 - 4592: -26,-25 - 4593: -24,-27 - 4594: -24,-26 - 4595: -24,-25 - 4596: -24,-24 - 4597: -26,-23 - 4598: -26,-22 - 4599: -26,-20 - 4600: -24,-21 - 4601: -24,-19 - 4602: -24,-18 - 4603: -24,-16 - 4604: -26,-17 - 4605: -26,-16 - 4606: -26,-14 - 4607: -26,-13 - 4608: -26,-12 - 4609: -26,-10 - 4610: -26,-9 - 4611: -25,-9 - 4612: -24,-11 - 4613: -23,-11 - 4614: -23,-10 - 4615: -23,-9 - 4616: -24,-5 - 4617: -24,-4 - 4618: -24,-2 - 4619: -19,-11 - 4620: -19,-10 - 4621: -20,-10 - 4622: -20,-9 - 4623: -19,-9 - 4624: -30,-21 - 4625: -30,-19 - 4626: -29,-19 - 4627: -30,-18 - 4628: -32,-21 - 4629: -32,-19 - 4630: -33,-18 - 4631: -34,-18 - 4632: -36,-15 - 4633: -36,-14 - 4634: -33,-14 - 4635: -33,-14 - 4636: -33,-15 - 4637: -30,-14 - 4638: -36,-10 - 4639: -37,-9 - 4640: -37,-10 - 4641: -29,-10 - 4642: -30,-11 - 4643: -30,-9 - 4644: -28,-10 - 4645: -40,-11 - 4646: -41,-10 - 4647: -41,-9 - 4648: -40,-9 - 4649: -41,-10 - 4650: -41,-10 - 4651: -49,-18 - 4652: -38,-33 - 4653: -36,-33 - 4654: -33,-33 - 4655: -32,-33 - 4656: -31,-33 - 4657: -31,-31 - 4658: -31,-29 - 4659: -31,-28 - 4660: -31,-26 - 4661: -33,-26 - 4662: -35,-26 - 4663: -36,-26 - 4664: -37,-26 - 4665: -38,-26 - 4666: -38,-27 - 4667: -38,-29 - 4668: -38,-30 - 4669: -38,-31 - 4670: -38,-29 - 4671: -38,-26 - 4672: -40,-26 - 4673: -40,-25 - 4674: -41,-25 - 4675: -41,-26 - 4676: -41,-28 - 4677: -41,-29 - 4678: -41,-30 - 4679: -41,-32 - 4680: -41,-33 - 4681: -41,-34 - 4682: -39,-33 - 4683: -40,-34 - 4684: -35,-34 - 4685: -34,-34 - 4686: -32,-34 - 4687: -31,-34 - 4688: -30,-34 - 4689: -30,-33 - 4690: -28,-34 - 4691: -28,-32 - 4692: -28,-31 - 4693: -28,-29 - 4694: -28,-27 - 4695: -28,-26 - 4696: -29,-25 - 4697: -30,-25 - 4698: -30,-26 - 4699: -32,-25 - 4700: -33,-26 - 4701: -35,-25 - 4702: -32,6 - 4703: -32,7 - 4704: -32,6 - 4705: -36,6 - 4706: -36,5 - 4707: -36,7 - 4708: -34,6 - 4709: -34,5 - 4710: -35,6 - 4711: -33,6 - 4712: -35,-4 - 4713: -35,-2 - 4714: -36,-5 - 4715: -35,-2 - 4716: -34,-2 - 4717: -35,-1 - 4729: -25,28 - 4730: -26,28 - 4731: -18,32 - 4732: -17,31 - 4733: -17,33 - 4734: -18,32 - 4735: -15,34 - 4736: -15,32 - 4737: -15,31 - 4738: -13,31 - 4739: -12,31 - 4740: -15,34 - 4741: -15,34 - 4742: -12,39 - 4743: -13,40 - 4744: -14,40 - 4745: -15,40 - 4746: -16,40 - 4747: -16,40 - 4748: -13,40 - 4749: -12,40 - 4750: -12,38 - 4751: -12,40 - 4757: -5,40 - 4758: -6,40 - 4759: -6,42 - 4760: -6,43 - 4761: -5,42 - 4762: -6,43 - 4763: -6,45 - 4764: -6,46 - 4765: -6,47 - 4766: -5,46 - 4767: -4,48 - 4768: -5,46 - 4769: -2,48 - 4770: -4,46 - 4771: -1,47 - 4772: -3,45 - 4773: 0,46 - 4774: -3,47 - 4775: -1,45 - 4776: -3,46 - 4777: 1,45 - 4778: 1,47 - 4779: 0,46 - 4780: 1,48 - 4781: 2,48 - 4782: 3,47 - 4783: 2,45 - 4784: 2,44 - 4785: 2,43 - 4786: 2,42 - 4787: 1,42 - 4788: 3,42 - 4789: -2,43 - 4790: -1,41 - 4791: -3,40 - 4792: -3,40 - 4793: 1,51 - 4794: -2,50 - 4795: -3,50 - 4796: -2,51 - 4797: 0,51 - 4798: -1,52 - 4799: -2,51 - 4800: -2,53 - 4801: 1,53 - 4802: 2,51 - 4803: 2,50 - 4804: 0,50 - 4805: -4,45 - 4806: -4,47 - 4833: 6,42 - 4834: 5,41 - 4835: 5,39 - 4836: 7,39 - 4837: 8,39 - 4838: 9,41 - 4839: 9,40 - 4840: 8,42 - 4841: 8,41 - 4842: 15,37 - 4843: 14,37 - 4844: 14,35 - 4845: 14,34 - 4846: 13,35 - 4847: 13,36 - 4848: 15,34 - 4849: 16,35 - 4850: 15,36 - 4851: 15,34 - 4852: 15,35 - 4853: 15,37 - 4854: 14,37 - 4855: 15,30 - 4856: 14,29 - 4857: 14,29 - 4858: 15,28 - 4859: 14,29 - 4860: 14,32 - 4861: 13,32 - 4862: 15,24 - 4886: 2,24 - 4887: 1,24 - 4888: 1,24 - 4889: 2,23 - 4890: 4,23 - 4891: 4,24 - 4892: 3,26 - 4893: 4,28 - 4894: 2,27 - 4895: 2,27 - 4896: 3,27 - 4897: -2,25 - 4898: -3,25 - 4899: -3,23 - 4900: -2,24 - 4901: -4,23 - 4902: -4,25 - 4938: -14,28 - 4939: -15,28 - 4940: -14,29 - 4941: -13,26 - 4942: -10,26 - 4943: -9,27 - 4944: -10,28 - 4945: -7,28 - 4946: -8,26 - 4947: -5,28 - 4948: -7,24 - 4949: -8,24 - 4950: -7,23 - 4951: -6,24 - 4952: -6,23 - 4953: -7,23 - 4954: -8,23 - 4955: -8,23 - 4956: -12,23 - 4957: -11,24 - 4958: -10,23 - 4959: -10,24 - 4960: -10,24 - 4961: -12,24 - 4962: -12,24 - 4963: -14,24 - 4964: -14,23 - 4965: -16,24 - 4966: -14,24 - 4967: -15,23 - 4968: -16,24 - 4969: -14,25 - 4970: -10,25 - 4971: -7,25 - 4972: -1,28 - 4973: -3,27 - 4974: -1,30 - 4975: -1,33 - 4976: -1,34 - 4977: -1,37 - 4978: -3,37 - 4979: -3,38 - 4980: -1,37 - 4981: -2,37 - 4982: -1,40 - 4983: -3,41 - 4984: -3,43 - 4985: -2,43 - 4986: -20,25 - 4987: -21,25 - 4988: -19,25 - 4989: -21,25 - 4990: -22,17 - 4991: -23,17 - 4992: -22,5 - 4993: -22,5 - 4994: -22,5 - 4995: -19,-28 - 4996: -16,-28 - 4997: -16,-27 - 4998: -15,-28 - 4999: -16,-26 - 5000: -15,-27 - 5001: -15,-28 - 5002: -15,-26 - 5003: -15,-26 - 5004: -14,-26 - 5015: -25,-34 - 5016: -23,-34 - 5017: -22,-34 - 5018: -21,-34 - 5019: -20,-34 - 5020: -20,-37 - 5021: -20,-36 - 5022: -19,-38 - 5023: -19,-36 - 5024: -22,-37 - 5025: -23,-37 - 5026: -23,-38 - 5027: -23,-36 - 5028: -24,-37 - 5029: -26,-37 - 5030: -26,-36 - 5031: -26,-37 - 5032: -28,-40 - 5033: -27,-40 - 5034: -25,-40 - 5035: -24,-40 - 5036: -23,-40 - 5037: -21,-40 - 5038: -19,-40 - 5039: -21,-40 - 5040: -24,-40 - 5041: -26,-40 - 5042: -32,-40 - 5043: -31,-40 - 5044: -33,-39 - 5045: -33,-40 - 5046: -32,-39 - 5047: -31,-39 - 5048: -34,-39 - 5049: -33,-40 - 5050: -39,-38 - 5051: -38,-38 - 5052: -29,-46 - 5053: -30,-45 - 5054: -30,-45 - 5055: -30,-44 - 5056: -29,-45 - 5057: -30,-45 - 5058: -30,-44 - 5059: -29,-45 - 5060: -38,-53 - 5061: -38,-54 - 5062: -37,-53 - 5063: -37,-54 - 5064: -14,-39 - 5065: -13,-38 - 5066: -13,-39 - 5067: -13,-40 - 5068: -13,-41 - 5069: -13,-39 - 5070: -13,-40 - 5071: -13,-41 - 5072: -13,-39 - 5073: -13,-40 - 5074: -13,-39 - 5075: -13,-40 - 5078: -5,-41 - 5079: -5,-40 - 5080: -6,-42 - 5081: -5,-36 - 5082: -6,-36 - 5083: -4,-35 - 5084: -4,-36 - 5085: 0,-36 - 5086: -2,-36 - 5087: 1,-35 - 5088: 1,-37 - 5089: 1,-38 - 5090: 2,-37 - 5091: 2,-38 - 5092: 0,-37 - 5093: 3,-37 - 5094: -1,-36 - 5098: -6,-28 - 5099: -6,-27 - 5100: -5,-27 - 5101: -6,-26 - 5102: -2,-27 - 5103: -3,-26 - 5104: -2,-28 - 5105: -1,-27 - 5106: 0,-27 - 5107: 0,-27 - 5108: -2,-27 - 5109: -2,-27 - 5110: 0,-24 - 5111: -2,-24 - 5112: -2,-23 - 5113: 0,-22 - 5114: 1,-22 - 5115: 1,-21 - 5116: -4,-19 - 5117: -5,-19 - 5118: -7,-19 - 5119: -9,-19 - 5120: -6,-19 - 5121: -7,-17 - 5122: -8,-17 - 5123: -9,-16 - 5124: -9,-16 - 5125: -5,-16 - 5126: -4,-14 - 5127: -5,-15 - 5128: -8,-16 - 5129: -8,-15 - 5130: -14,-14 - 5131: -12,-14 - 5132: -12,-16 - 5133: -13,-18 - 5134: -14,-16 - 5135: -13,-16 - 5136: -13,-19 - 5137: -14,-19 - 5138: -2,-17 - 5139: -2,-15 - 5140: -2,-13 - 5141: -2,-12 - 5142: -1,-15 - 5143: -1,-16 - 5144: -1,-17 - 5145: 1,-17 - 5146: -1,-18 - 5147: 2,-18 - 5148: 2,-16 - 5149: 2,-15 - 5150: 2,-13 - 5151: 1,-12 - 5152: 1,-14 - 5153: -1,-13 - 5154: 0,-14 - 5155: 2,-16 - 5156: -4,-14 - 5157: -7,-24 - 5158: -7,-22 - 5159: -8,-23 - 5160: -10,-23 - 5161: -9,-23 - 5162: -1,-24 - 5163: 8,-23 - 5164: 8,-22 - 5165: 10,-22 - 5166: 9,-23 - 5167: 8,-25 - 5168: 8,-21 - 5169: 8,-19 - 5170: 8,-18 - 5171: 6,-18 - 5172: 5,-18 - 5173: 0,-27 - 5174: 2,-27 - 5175: 10,-23 - 5176: 13,-23 - 5177: 12,-23 - 5178: 13,-21 - 5179: 14,-22 - 5180: 13,-18 - 5181: 14,-18 - 5182: 14,-17 - 5183: 12,-18 - 5184: 11,-18 - 5185: 11,-16 - 5186: 13,-17 - 5187: 11,-30 - 5188: 11,-28 - 5189: 11,-27 - 5190: 11,-26 - 5191: 17,-26 - 5192: 17,-28 - 5193: 17,-28 - 5194: 17,-30 - 5195: 17,-30 - 5196: 18,-23 - 5197: 20,-22 - 5198: 21,-23 - 5199: 19,-22 - 5200: 21,-22 - 5201: 20,-21 - 5202: 24,-22 - 5203: 23,-23 - 5204: 23,-21 - 5205: 23,-23 - 5206: 17,-16 - 5207: 19,-14 - 5208: 18,-13 - 5209: 20,-13 - 5210: 19,-12 - 5211: 22,-11 - 5212: 22,-13 - 5213: 20,-11 - 5214: 24,-13 - 5215: 26,-11 - 5216: 21,-11 - 5217: 20,-11 - 5218: 25,-13 - 5219: 22,-13 - 5220: 23,-12 - 5221: 26,-12 - 5222: 19,-12 - 5223: 23,-13 - 5224: 23,-11 - 5225: 19,-10 - 5226: 26,-11 - 5227: 28,-12 - 5228: 25,-12 - 5229: 23,-16 - 5230: 23,-16 - 5231: 13,-19 - 5232: 23,-34 - 5233: 23,-31 - 5234: 23,-30 - 5235: 23,-29 - 5236: 23,-32 - 5237: 29,-34 - 5238: 29,-33 - 5239: 29,-32 - 5240: 29,-30 - 5241: 29,-29 - 5242: 32,-34 - 5243: 32,-31 - 5244: 32,-30 - 5245: 36,-30 - 5246: 35,-29 - 5247: 33,-26 - 5248: 36,-21 - 5249: 38,-16 - 5250: 37,-15 - 5251: 39,-16 - 5252: 38,-17 - 5253: 38,-15 - 5254: 37,-15 - 5255: 62,-31 - 5256: 62,-33 - 5257: 61,-31 - 5258: 63,-33 - 5259: 63,-33 - 5260: 63,-32 - 5261: 62,-32 - 5262: 62,-32 - 5263: 64,8 - 5264: 63,9 - 5265: 65,9 - 5266: 64,8 - 5267: 64,9 - 5268: 64,10 - 5269: 67,6 - 5270: 68,4 - 5271: 68,6 - 5272: 67,5 - 5273: 68,0 - 5274: 68,1 - 5275: 68,2 - 5276: 67,0 - 5277: 68,-2 - 5278: 67,-3 - 5279: 68,-4 - 5280: 68,-3 - 5281: 68,-3 - 5282: 76,-6 - 5288: 54,-30 - 5289: 52,-31 - 5290: 51,-31 - 5291: 52,-33 - 5292: 52,-34 - 5293: 51,-33 - 5294: 51,-32 - 5295: 52,-35 - 5296: 51,-33 - 5297: 51,-31 - 5298: 52,-35 - 5299: 52,-35 - 5300: 55,-35 - 5301: 54,-34 - 5302: 56,-33 - 5303: 57,-33 - 5304: 55,-34 - 5305: 55,-36 - 5306: 54,-35 - 5307: 55,-34 - 5308: 54,-35 - 5309: 55,-35 - 5310: 55,-34 - 5311: 40,-31 - 5312: 40,-30 - 5313: 40,-30 - 5314: 41,-31 - 5315: 41,-29 - 5316: 42,-29 - 5317: 43,-29 - 5318: 44,-29 - 5319: 44,-31 - 5320: 43,-30 - 5321: 33,-29 - 5322: 15,-39 - 5323: 14,-39 - 5324: 14,-39 - 5325: 9,-40 - 5326: 9,-39 - 5327: 9,-41 - 5328: 8,-40 - 5332: 19,-45 - 5333: 17,-45 - 5334: 16,-44 - 5335: 16,-45 - 5336: 16,-43 - 5337: 19,-45 - 5338: 20,-44 - 5339: 20,-45 - 5340: 18,-44 - 5341: 21,-45 - 5342: 21,-43 - 5343: 15,-48 - 5344: 14,-48 - 5345: 12,-47 - 5346: 12,-48 - 5347: 14,-48 - 5348: 16,-47 - 5349: 14,-48 - 5350: 13,-48 - 5351: 15,-47 - 5358: 21,-54 - 5359: 20,-54 - 5360: 18,-54 - 5361: 16,-54 - 5362: 16,-55 - 5363: 18,-53 - 5364: 19,-53 - 5365: 21,-55 - 5366: 21,-58 - 5367: 21,-59 - 5368: 20,-58 - 5369: 18,-58 - 5370: 17,-58 - 5371: 16,-58 - 5372: 16,-59 - 5373: 19,-59 - 5374: 19,-59 - 5375: 18,-59 - 5376: 27,-46 - 5377: 26,-45 - 5378: 26,-44 - 5379: 27,-45 - 5380: 27,-45 - 5381: 28,-42 - 5382: 29,-42 - 5383: 29,-40 - 5384: 28,-39 - 5385: 28,-39 - 5386: 28,-40 - 5387: 29,-47 - 5388: 28,-47 - 5389: 66,-52 - 5390: 65,-51 - 5391: 66,-52 - 5392: 66,-51 - 5393: 65,-52 - 5394: 66,-51 - 5395: 27,15 - 5396: 28,15 - 5397: 27,14 - 5398: 27,12 - 5399: -23,34 - 5400: -23,35 - 5401: -22,34 - 5402: -27,36 - 5403: -27,34 - 5404: -28,35 - 5405: -27,35 - 5406: -29,36 - 5407: -30,37 - 5408: -30,38 - 5409: -28,35 - 5410: -28,34 - 5411: -29,35 - 5412: -26,36 - 5413: -25,38 - 5414: -26,37 - 5415: -32,36 - 5416: -33,35 - 5417: -33,37 - 5418: -33,35 - 5419: -34,36 - 5420: -33,38 - 5421: -33,35 - 5422: -36,5 - 5423: -42,6 - 5424: -43,4 - 5425: -43,6 - 5426: -42,7 - 5427: -51,9 - 5428: -49,13 - 5429: -42,-5 - 5430: -43,-5 - 5431: -42,-3 - 5432: -45,-4 - 5433: -45,-5 - 5434: -46,-4 - 5435: -43,-3 - 5436: -43,-2 - 5437: -42,-2 - 5438: -60,-29 - 5439: -60,-29 - 5440: -57,-36 - 5441: -58,-36 - 5442: -59,-36 - 5443: -57,-37 - 5444: -58,-35 - 5445: -58,-34 - 5446: -57,-35 - 5447: -59,-34 - 5448: -58,-34 - 5449: -59,-34 - 5450: -60,-34 - 5451: -60,-35 - 5452: -61,-21 - 5453: -62,-21 - 5454: -62,-20 - 5455: -61,-20 - 5456: -61,-20 - 5457: 13,35 - 6111: 52,20 - 6112: 51,21 - 6113: 53,20 - 6114: 53,21 - 6215: 46,14 - 6216: 45,15 - 6217: 46,16 - 6422: 49,-7 - 6423: 48,-6 - 6424: 48,-4 - 6425: 49,-4 - 6426: 52,-7 - 6427: 52,-5 - 6428: 51,-6 - 6429: 52,-2 - 6430: 52,-3 - 6431: 48,-1 - 6432: 48,-2 - 6452: 49,-12 - 6453: 49,-14 - 6454: 49,-15 - 6455: 49,-13 - 6456: 52,-14 - 6457: 52,-13 - 6458: 52,-12 - 6459: 52,-15 - 6460: 52,-15 - 6461: 52,-10 - 6462: 51,1 - 6463: 51,3 - 6464: 51,4 - 6465: 51,8 - 6466: 51,9 - 6467: 51,11 - 6468: 51,13 - 6469: 49,13 - 6470: 49,11 - 6471: 49,9 - 6472: 49,7 - 6473: 49,5 - 6474: 49,3 - 6475: 49,1 - 6488: 42,9 - 6489: 43,9 - 6490: 42,7 - 6491: 43,7 - 6492: 45,7 - 6493: 45,9 - 6494: 46,7 - 6495: 40,4 - 6496: 42,4 - 6497: 43,4 - 6498: 43,2 - 6499: 43,1 - 6500: 43,-2 - 6501: 43,-4 - 6502: 43,-7 - 6503: 43,-6 - 6504: 43,-10 - 6505: 43,-11 - 6506: 45,5 - 6507: 42,5 - 6508: 41,5 - 6587: 90,-18 - 6588: 89,-18 - 6671: 51,-39 - 6672: 52,-39 - 6673: 54,-39 - 6674: 52,-37 - 6684: 51,-30 - 6685: 52,-29 - 6709: -33,-12 - 6710: -33,-10 - 6726: -36,-45 - 6727: -35,-44 - 6728: -35,-46 - 6820: 14,39 - 6821: 13,40 - 6822: 15,42 - 6823: 15,41 - 6824: 16,39 - 6884: 8,-47 + 2937: -8,-40 + 2938: -7,-39 + 2939: -5,-40 + 2940: -6,-42 + 2941: -4,-39 + 2942: -6,-40 + 2943: -6,-40 + 2944: -7,-40 + 2945: -7,-39 + 2946: -7,-39 + 2947: -8,-39 + 3627: -60,-66 + 3628: -59,-65 + 3629: -59,-63 + 3630: -59,-61 + 3631: -59,-59 + 3632: -59,-57 + 3633: -60,-57 + 3634: -57,-57 + 3635: -58,-58 + 3636: -56,-57 + 3637: -56,-58 + 3638: -56,-60 + 3639: -56,-62 + 3640: -56,-64 + 3641: -56,-66 + 3642: -58,-66 + 3643: -55,-56 + 3644: -54,-54 + 3645: -54,-52 + 3646: -54,-50 + 3647: -56,-53 + 3648: -56,-52 + 3649: -56,-47 + 3650: -53,-48 + 3651: -52,-46 + 3652: -54,-46 + 3653: -51,-46 + 3654: -50,-48 + 3655: -47,-48 + 3656: -45,-48 + 3657: -43,-46 + 3658: -45,-46 + 3659: -43,-48 + 3660: -42,-48 + 3661: -40,-48 + 3662: -40,-50 + 3663: -40,-52 + 3664: -40,-54 + 3665: -42,-51 + 3666: -42,-53 + 3667: -42,-54 + 3668: -41,-56 + 3669: -39,-57 + 3670: -40,-58 + 3671: -37,-57 + 3672: -37,-58 + 3673: -37,-61 + 3674: -37,-64 + 3675: -37,-65 + 3676: -36,-65 + 3677: -36,-66 + 3678: -39,-66 + 3679: -40,-65 + 3680: -40,-63 + 3681: -40,-60 + 3682: -47,-44 + 3683: -47,-42 + 3684: -47,-39 + 3685: -47,-35 + 3686: -47,-33 + 3687: -49,-33 + 3688: -49,-37 + 3689: -49,-39 + 3690: -49,-41 + 3691: -49,-44 + 3692: -49,-44 + 3693: -49,-43 + 3694: -44,-32 + 3695: -44,-30 + 3696: -43,-31 + 3697: -43,-27 + 3698: -44,-26 + 3699: -43,-26 + 3700: -44,-25 + 3701: -52,-32 + 3702: -52,-30 + 3703: -52,-29 + 3704: -52,-25 + 3705: -52,-22 + 3706: -54,-22 + 3707: -55,-22 + 3708: -52,-20 + 3709: -50,-20 + 3710: -47,-20 + 3711: -46,-20 + 3712: -45,-20 + 3713: -44,-20 + 3714: -44,-22 + 3715: -51,-18 + 3716: -51,-17 + 3717: -49,-17 + 3718: -48,-15 + 3719: -48,-13 + 3720: -50,-13 + 3721: -51,-14 + 3722: -51,-15 + 3723: -44,-15 + 3724: -46,-15 + 3725: -46,-14 + 3726: -54,-24 + 3727: -56,-24 + 3728: -54,-30 + 3729: -56,-29 + 3730: -57,-28 + 3731: -54,-28 + 3732: -61,-29 + 3733: -59,-29 + 3734: -59,-27 + 3735: -59,-25 + 3736: -61,-25 + 3737: -55,-17 + 3738: -55,-15 + 3739: -55,-13 + 3740: -55,-10 + 3741: -53,-17 + 3742: -53,-14 + 3743: -53,-12 + 3744: -53,-11 + 3745: -53,-9 + 3746: -53,-7 + 3747: -53,-6 + 3748: -53,-4 + 3749: -55,-3 + 3750: -55,-7 + 3751: -55,-8 + 3752: -53,0 + 3753: -53,-2 + 3754: -51,-4 + 3755: -49,-4 + 3756: -50,-5 + 3757: -48,-5 + 3766: -53,2 + 3767: -53,4 + 3768: -53,6 + 3769: -53,7 + 3770: -55,7 + 3771: -55,5 + 3772: -55,-1 + 3773: -51,6 + 3774: -50,7 + 3775: -47,7 + 3776: -48,6 + 3777: -46,6 + 3778: -45,7 + 3779: -47,9 + 3780: -45,9 + 3781: -44,9 + 3782: -50,9 + 3783: -50,9 + 3784: -51,11 + 3785: -51,13 + 3786: -50,13 + 3787: -48,13 + 3788: -46,13 + 3789: -48,12 + 3790: -43,11 + 3791: -44,12 + 3792: -43,13 + 3793: -43,12 + 3794: -54,10 + 3795: -53,9 + 3796: -54,9 + 3819: -43,1 + 3820: -40,2 + 3821: -39,1 + 3822: -39,1 + 3823: -40,-1 + 3824: -38,-1 + 3825: -40,-2 + 3826: -39,-2 + 3827: -40,-4 + 3828: -39,-5 + 3829: -38,-5 + 3830: -37,-5 + 3831: -36,-5 + 3832: -38,-4 + 3833: -36,-3 + 3834: -36,-2 + 3835: -36,-4 + 3836: -34,-3 + 3837: -32,-4 + 3838: -34,-1 + 3839: -32,0 + 3840: -35,0 + 3841: -39,3 + 3842: -40,4 + 3843: -38,4 + 3844: -33,1 + 3845: -31,2 + 3846: -31,-1 + 3847: -29,0 + 3848: -32,-2 + 3849: -31,-3 + 3850: -33,-4 + 3851: -32,-5 + 3852: -31,-4 + 3853: -30,-3 + 3854: -28,-3 + 3855: -28,-4 + 3856: -26,-5 + 3857: -27,-2 + 3858: -27,-3 + 3859: -29,0 + 3860: -27,0 + 3861: -27,2 + 3862: -28,3 + 3863: -27,3 + 3864: -27,1 + 3865: -26,-1 + 3866: -32,-1 + 3867: -28,4 + 3868: -26,5 + 3869: -26,6 + 3870: -26,3 + 3871: -26,3 + 3872: -24,2 + 3873: -23,1 + 3874: -25,0 + 3875: -23,-2 + 3876: -25,-3 + 3877: -23,-3 + 3878: -25,-4 + 3879: -23,-5 + 3880: -25,-5 + 3881: -24,-1 + 3882: -25,-1 + 3883: -23,3 + 3884: -15,-1 + 3885: -16,-1 + 3886: -15,0 + 3887: -16,1 + 3888: -16,3 + 3889: -15,3 + 3890: -15,2 + 3891: -15,1 + 3892: -15,1 + 3893: -27,6 + 3894: -27,7 + 3895: -27,9 + 3896: -20,5 + 3897: -21,5 + 3902: -17,5 + 3903: -16,5 + 3904: -16,5 + 3905: -22,11 + 3906: -21,11 + 3907: -22,13 + 3908: -20,14 + 3909: -22,13 + 3910: -22,15 + 3911: -20,14 + 3912: -20,13 + 3913: -20,12 + 3914: -19,11 + 3915: -22,14 + 3916: -23,14 + 3917: -17,11 + 3918: -17,11 + 3919: -17,12 + 3920: -16,11 + 3921: -16,12 + 3922: -17,13 + 3923: -16,14 + 3924: -17,14 + 3925: -16,12 + 3926: -17,12 + 3927: -17,11 + 3930: -34,12 + 3931: -35,12 + 3932: -34,14 + 3933: -35,15 + 3934: -34,16 + 3935: -34,17 + 3936: -33,16 + 3937: -32,15 + 3938: -31,17 + 3939: -32,17 + 3940: -33,16 + 3941: -34,15 + 3942: -34,15 + 3943: -37,14 + 3944: -38,14 + 3945: -39,14 + 3946: -39,12 + 3947: -39,11 + 3948: -38,11 + 3949: -38,11 + 3950: -27,11 + 3951: -27,13 + 3952: -27,16 + 3953: -27,17 + 3954: -27,19 + 3955: -27,20 + 3956: -27,21 + 3957: -25,18 + 3958: -25,16 + 3959: -25,14 + 3960: -25,12 + 3961: -25,11 + 3962: -24,18 + 3963: -22,18 + 3964: -23,17 + 3965: -21,17 + 3966: -20,18 + 3967: -19,17 + 3968: -20,20 + 3969: -22,20 + 3970: -24,20 + 3971: -20,21 + 3972: -17,19 + 3973: -16,19 + 3974: -14,19 + 3975: -17,21 + 3976: -15,21 + 3977: -13,21 + 3978: -11,21 + 3979: -13,19 + 3980: -10,19 + 3981: -8,19 + 3982: -6,19 + 3983: -9,21 + 3984: -7,21 + 3985: -5,21 + 3986: -3,21 + 3987: 0,21 + 3988: -5,19 + 3989: -2,19 + 3990: 0,19 + 3991: 0,21 + 3992: 2,21 + 3993: 5,21 + 3994: 6,21 + 3995: 2,19 + 3996: 4,19 + 3997: 7,19 + 3998: 10,19 + 3999: 8,21 + 4000: 10,21 + 4001: 11,21 + 4002: 13,21 + 4003: 12,19 + 4004: 14,19 + 4005: 15,19 + 4006: 17,19 + 4007: 15,23 + 4008: 14,23 + 4009: 13,24 + 4010: 15,25 + 4011: 15,24 + 4012: 11,23 + 4013: 10,23 + 4014: 11,24 + 4015: 17,23 + 4016: 17,25 + 4017: 17,25 + 4018: 16,23 + 4019: 18,19 + 4020: 19,19 + 4021: 19,21 + 4022: 17,21 + 4023: 16,21 + 4024: 21,20 + 4025: 21,18 + 4026: 21,17 + 4027: 19,18 + 4028: 19,15 + 4029: 19,12 + 4030: 19,11 + 4031: 21,16 + 4032: 21,13 + 4033: 21,12 + 4034: 21,10 + 4035: 21,8 + 4036: 21,7 + 4037: 19,9 + 4038: 19,7 + 4039: 19,6 + 4040: 23,10 + 4041: 24,10 + 4042: 26,10 + 4043: 27,10 + 4044: 28,7 + 4045: 27,8 + 4046: 27,6 + 4047: 28,6 + 4048: 30,6 + 4049: 30,8 + 4050: 30,9 + 4051: 30,10 + 4052: 33,10 + 4053: 34,10 + 4054: 31,12 + 4055: 31,13 + 4056: 30,14 + 4057: 31,17 + 4058: 30,17 + 4059: 31,19 + 4060: 31,20 + 4061: 31,22 + 4062: 30,22 + 4063: 28,22 + 4064: 29,23 + 4065: 26,22 + 4066: 24,22 + 4067: 23,22 + 4068: 23,23 + 4069: 23,20 + 4070: 23,18 + 4071: 25,18 + 4072: 25,17 + 4073: 26,18 + 4074: 27,17 + 4075: 26,19 + 4076: 27,20 + 4077: 29,18 + 4078: 27,18 + 4079: 30,17 + 4080: 33,22 + 4081: 35,22 + 4082: 33,19 + 4083: 33,18 + 4084: 35,18 + 4085: 36,17 + 4086: 34,17 + 4087: 35,17 + 4088: 33,13 + 4089: 33,15 + 4090: 33,15 + 4091: 32,13 + 4092: 26,7 + 4093: 23,2 + 4094: 26,2 + 4095: 20,2 + 4096: 21,2 + 4097: 19,4 + 4103: 31,2 + 4104: 33,2 + 4105: 33,4 + 4106: 32,4 + 4107: 35,4 + 4108: 37,4 + 4109: 37,2 + 4110: 40,2 + 4111: 41,2 + 4112: 41,1 + 4113: 38,2 + 4114: 39,-4 + 4115: 37,-4 + 4116: 39,-5 + 4117: 33,-1 + 4118: 31,-1 + 4119: 31,0 + 4120: 33,0 + 4121: 32,1 + 4122: 38,7 + 4123: 46,11 + 4124: 47,13 + 4125: 44,11 + 4126: 44,13 + 4127: 42,12 + 4128: 42,11 + 4129: 44,12 + 4130: 54,14 + 4131: 58,14 + 4132: 59,14 + 4133: 60,14 + 4134: 58,16 + 4135: 55,10 + 4136: 55,12 + 4137: 54,12 + 4138: 54,6 + 4139: 59,3 + 4140: 60,4 + 4141: 59,0 + 4142: 55,-5 + 4143: 56,-4 + 4144: 57,-5 + 4145: 58,-7 + 4146: 59,-8 + 4147: 60,-7 + 4148: 41,-1 + 4149: 41,-3 + 4150: 41,-5 + 4151: 41,-7 + 4152: 41,-10 + 4153: 41,-11 + 4154: 43,-12 + 4155: 43,-14 + 4156: 43,-16 + 4157: 43,-17 + 4158: 41,-15 + 4159: 41,-16 + 4160: 41,-17 + 4161: 41,-19 + 4162: 40,-19 + 4163: 40,-21 + 4164: 42,-21 + 4165: 43,-21 + 4166: 45,-21 + 4171: 45,-19 + 4172: 47,-19 + 4173: 48,-19 + 4174: 51,-19 + 4175: 47,-21 + 4176: 49,-21 + 4177: 47,-22 + 4178: 51,-21 + 4179: 52,-21 + 4180: 52,-23 + 4181: 53,-24 + 4182: 56,-24 + 4183: 57,-24 + 4184: 58,-24 + 4185: 58,-23 + 4186: 59,-21 + 4187: 60,-21 + 4188: 61,-20 + 4189: 59,-19 + 4190: 61,-19 + 4191: 60,-17 + 4192: 60,-17 + 4193: 58,-18 + 4194: 58,-19 + 4195: 56,-19 + 4196: 55,-19 + 4197: 53,-19 + 4198: 60,-15 + 4199: 58,-15 + 4200: 59,-14 + 4201: 57,-13 + 4202: 57,-12 + 4203: 60,-13 + 4204: 60,-12 + 4205: 60,-14 + 4206: 61,-13 + 4207: 63,-13 + 4208: 64,-12 + 4209: 65,-14 + 4210: 63,-14 + 4211: 63,-16 + 4212: 65,-16 + 4213: 65,-18 + 4214: 65,-20 + 4215: 63,-18 + 4216: 63,-20 + 4217: 63,-21 + 4218: 65,-21 + 4219: 62,-23 + 4220: 61,-24 + 4221: 64,-24 + 4222: 63,-25 + 4223: 64,-26 + 4224: 65,-27 + 4225: 66,-26 + 4226: 65,-24 + 4227: 65,-23 + 4228: 65,-23 + 4232: 68,-21 + 4233: 69,-21 + 4234: 69,-23 + 4235: 69,-24 + 4237: 69,-27 + 4238: 70,-26 + 4239: 70,-26 + 4240: 71,-27 + 4241: 71,-28 + 4242: 70,-28 + 4243: 68,-28 + 4244: 69,-29 + 4245: 70,-30 + 4246: 69,-30 + 4247: 70,-29 + 4248: 70,-29 + 4249: 70,-29 + 4250: 71,-30 + 4251: 71,-17 + 4252: 68,-17 + 4253: 67,-19 + 4254: 70,-17 + 4255: 70,-19 + 4256: 71,-18 + 4257: 68,-18 + 4258: 69,-19 + 4278: 69,-9 + 4279: 68,-9 + 4280: 67,-9 + 4281: 70,-10 + 4282: 77,-18 + 4283: 75,-18 + 4284: 76,-19 + 4285: 77,-18 + 4286: 76,-17 + 4287: 76,-15 + 4288: 75,-15 + 4289: 76,-13 + 4290: 77,-14 + 4291: 74,-14 + 4292: 74,-16 + 4293: 73,-14 + 4294: 74,-17 + 4295: 74,-18 + 4296: 72,-17 + 4297: 73,-19 + 4298: 73,-17 + 4299: 74,-16 + 4300: 73,-15 + 4301: 74,-16 + 4302: 74,-15 + 4303: 76,-18 + 4304: 79,-14 + 4305: 80,-13 + 4306: 81,-14 + 4307: 79,-14 + 4308: 80,-15 + 4309: 81,-13 + 4310: 80,-19 + 4311: 79,-18 + 4312: 80,-18 + 4313: 80,-19 + 4314: 79,-19 + 4315: 80,-19 + 4316: 81,-19 + 4317: 80,-17 + 4318: 80,-18 + 4319: 79,-19 + 4320: 50,-13 + 4321: 51,-14 + 4322: 50,-13 + 4323: 51,-13 + 4324: 50,-14 + 4325: 50,-14 + 4326: 48,-13 + 4327: 48,-14 + 4328: 48,-13 + 4329: 53,-13 + 4330: 53,-14 + 4331: 53,-12 + 4332: 53,-14 + 4333: 53,-13 + 4334: 53,-14 + 4335: 50,-15 + 4336: 51,-15 + 4337: 50,-14 + 4338: 51,-13 + 4339: 50,-12 + 4340: 50,-12 + 4341: 48,-12 + 4342: 50,-12 + 4343: 51,-13 + 4344: 47,-24 + 4345: 49,-25 + 4346: 48,-26 + 4347: 47,-25 + 4348: 49,-25 + 4349: 48,-23 + 4350: 47,-28 + 4351: 49,-29 + 4352: 47,-30 + 4353: 48,-32 + 4354: 49,-31 + 4355: 48,-33 + 4356: 47,-33 + 4357: 49,-33 + 4358: 48,-34 + 4359: 47,-34 + 4360: 43,-36 + 4361: 40,-36 + 4362: 37,-35 + 4363: 36,-35 + 4364: 37,-36 + 4365: 40,-36 + 4366: 43,-35 + 4367: 43,-35 + 4368: 41,-35 + 4369: 43,-35 + 4370: 43,-34 + 4396: 33,-34 + 4397: 31,-34 + 4398: 33,-32 + 4399: 32,-32 + 4400: 32,-31 + 4401: 32,-30 + 4402: 33,-28 + 4403: 31,-29 + 4404: 33,-31 + 4405: 33,-31 + 4406: 35,-30 + 4407: 36,-30 + 4408: 36,-29 + 4409: 33,-25 + 4410: 31,-25 + 4411: 33,-25 + 4412: 31,-25 + 4413: 33,-25 + 4414: 32,-26 + 4415: 31,-25 + 4416: 32,-24 + 4417: 32,-25 + 4418: 31,-24 + 4419: 40,-25 + 4420: 39,-24 + 4421: 40,-26 + 4422: 42,-25 + 4423: 42,-25 + 4424: 44,-24 + 4425: 42,-25 + 4426: 44,-25 + 4427: 45,-25 + 4428: 42,-26 + 4429: 43,-25 + 4430: 43,-25 + 4431: 41,-25 + 4432: 40,-25 + 4433: 40,-25 + 4434: 40,-24 + 4435: 35,-23 + 4436: 37,-23 + 4437: 36,-23 + 4438: 35,-23 + 4439: 38,-21 + 4440: 35,-21 + 4441: 33,-21 + 4442: 33,-22 + 4443: 32,-22 + 4444: 32,-21 + 4445: 37,-19 + 4446: 34,-19 + 4447: 32,-19 + 4448: 31,-19 + 4449: 28,-19 + 4450: 27,-19 + 4451: 27,-20 + 4452: 27,-21 + 4453: 30,-21 + 4454: 29,-21 + 4455: 29,-23 + 4456: 29,-24 + 4457: 29,-25 + 4458: 29,-26 + 4459: 27,-22 + 4460: 27,-24 + 4461: 27,-25 + 4462: 26,-25 + 4463: 25,-25 + 4464: 29,-27 + 4465: 27,-27 + 4466: 25,-27 + 4467: 24,-27 + 4468: 21,-27 + 4469: 21,-25 + 4470: 20,-25 + 4471: 19,-25 + 4472: 19,-26 + 4473: 19,-28 + 4474: 19,-28 + 4475: 19,-30 + 4476: 19,-31 + 4477: 19,-32 + 4478: 21,-30 + 4479: 21,-33 + 4480: 21,-34 + 4481: 21,-34 + 4482: 19,-34 + 4483: 20,-36 + 4484: 20,-37 + 4485: 19,-37 + 4486: 20,-39 + 4487: 21,-38 + 4488: 22,-39 + 4489: 21,-37 + 4490: 24,-37 + 4491: 23,-38 + 4492: 25,-37 + 4493: 25,-38 + 4494: 24,-38 + 4495: 25,-38 + 4496: 17,-34 + 4497: 17,-35 + 4498: 16,-34 + 4499: 14,-34 + 4500: 17,-32 + 4501: 15,-32 + 4502: 13,-32 + 4503: 11,-32 + 4504: 10,-32 + 4505: 12,-34 + 4506: 9,-34 + 4507: 8,-34 + 4508: 7,-34 + 4509: 7,-32 + 4510: 7,-32 + 4511: 6,-32 + 4512: 9,-30 + 4513: 8,-29 + 4514: 7,-29 + 4515: 7,-29 + 4516: 6,-28 + 4517: 8,-27 + 4518: 9,-27 + 4519: 7,-28 + 4520: 6,-27 + 4521: 5,-29 + 4522: 7,-30 + 4523: 9,-30 + 4524: 3,-30 + 4525: 1,-30 + 4526: 3,-32 + 4527: 2,-32 + 4528: 2,-33 + 4529: 0,-33 + 4530: -1,-33 + 4531: -1,-32 + 4532: 0,-30 + 4533: -3,-30 + 4534: -4,-30 + 4535: -6,-30 + 4536: -7,-30 + 4537: -9,-30 + 4538: -6,-32 + 4539: -5,-32 + 4540: -3,-32 + 4541: -8,-32 + 4542: -8,-33 + 4543: -9,-32 + 4544: -10,-32 + 4545: -11,-32 + 4546: -13,-32 + 4547: -10,-30 + 4548: -11,-30 + 4549: -13,-30 + 4550: -15,-30 + 4551: -16,-30 + 4552: -12,-29 + 4553: -12,-30 + 4554: -16,-32 + 4555: -17,-33 + 4556: -17,-32 + 4557: -19,-32 + 4558: -18,-30 + 4559: -20,-30 + 4560: -22,-30 + 4561: -23,-30 + 4562: -23,-29 + 4563: -22,-32 + 4564: -24,-32 + 4565: -24,-32 + 4566: -26,-30 + 4567: -26,-29 + 4568: -26,-27 + 4569: -26,-25 + 4570: -24,-27 + 4571: -24,-26 + 4572: -24,-25 + 4573: -24,-24 + 4574: -26,-23 + 4575: -26,-22 + 4576: -26,-20 + 4577: -24,-21 + 4578: -24,-19 + 4579: -24,-18 + 4580: -24,-16 + 4581: -26,-17 + 4582: -26,-16 + 4583: -26,-14 + 4584: -26,-13 + 4585: -26,-12 + 4586: -26,-10 + 4587: -26,-9 + 4588: -25,-9 + 4589: -24,-11 + 4590: -23,-11 + 4591: -23,-10 + 4592: -23,-9 + 4593: -24,-5 + 4594: -24,-4 + 4595: -24,-2 + 4596: -19,-11 + 4597: -19,-10 + 4598: -20,-10 + 4599: -20,-9 + 4600: -19,-9 + 4601: -30,-21 + 4602: -30,-19 + 4603: -29,-19 + 4604: -30,-18 + 4605: -32,-21 + 4606: -32,-19 + 4607: -33,-18 + 4608: -34,-18 + 4609: -36,-15 + 4610: -36,-14 + 4611: -33,-14 + 4612: -33,-14 + 4613: -33,-15 + 4614: -30,-14 + 4615: -36,-10 + 4616: -37,-9 + 4617: -37,-10 + 4618: -29,-10 + 4619: -30,-11 + 4620: -30,-9 + 4621: -28,-10 + 4622: -40,-11 + 4623: -41,-10 + 4624: -41,-9 + 4625: -40,-9 + 4626: -41,-10 + 4627: -41,-10 + 4628: -49,-18 + 4629: -38,-33 + 4630: -36,-33 + 4631: -33,-33 + 4632: -32,-33 + 4633: -31,-33 + 4634: -31,-31 + 4635: -31,-29 + 4636: -31,-28 + 4637: -31,-26 + 4638: -33,-26 + 4639: -35,-26 + 4640: -36,-26 + 4641: -37,-26 + 4642: -38,-26 + 4643: -38,-27 + 4644: -38,-29 + 4645: -38,-30 + 4646: -38,-31 + 4647: -38,-29 + 4648: -38,-26 + 4649: -40,-26 + 4650: -40,-25 + 4651: -41,-25 + 4652: -41,-26 + 4653: -41,-28 + 4654: -41,-29 + 4655: -41,-30 + 4656: -41,-32 + 4657: -41,-33 + 4658: -41,-34 + 4659: -39,-33 + 4660: -40,-34 + 4661: -35,-34 + 4662: -34,-34 + 4663: -32,-34 + 4664: -31,-34 + 4665: -30,-34 + 4666: -30,-33 + 4667: -28,-34 + 4668: -28,-32 + 4669: -28,-31 + 4670: -28,-29 + 4671: -28,-27 + 4672: -28,-26 + 4673: -29,-25 + 4674: -30,-25 + 4675: -30,-26 + 4676: -32,-25 + 4677: -33,-26 + 4678: -35,-25 + 4679: -32,6 + 4680: -32,7 + 4681: -32,6 + 4682: -36,6 + 4683: -36,5 + 4684: -36,7 + 4685: -34,6 + 4686: -34,5 + 4687: -35,6 + 4688: -33,6 + 4689: -35,-4 + 4690: -35,-2 + 4691: -36,-5 + 4692: -35,-2 + 4693: -34,-2 + 4694: -35,-1 + 4706: -25,28 + 4707: -26,28 + 4708: -18,32 + 4709: -17,31 + 4710: -17,33 + 4711: -18,32 + 4712: -15,34 + 4713: -15,32 + 4714: -15,31 + 4715: -13,31 + 4716: -12,31 + 4717: -15,34 + 4718: -15,34 + 4719: -12,39 + 4720: -13,40 + 4721: -14,40 + 4722: -15,40 + 4723: -16,40 + 4724: -16,40 + 4725: -13,40 + 4726: -12,40 + 4727: -12,38 + 4728: -12,40 + 4734: -5,40 + 4735: -6,40 + 4736: -6,42 + 4737: -6,43 + 4738: -5,42 + 4739: -6,43 + 4740: -6,45 + 4741: -6,46 + 4742: -6,47 + 4743: -5,46 + 4744: -4,48 + 4745: -5,46 + 4746: -2,48 + 4747: -4,46 + 4748: -1,47 + 4749: -3,45 + 4750: 0,46 + 4751: -3,47 + 4752: -1,45 + 4753: -3,46 + 4754: 1,45 + 4755: 1,47 + 4756: 0,46 + 4757: 1,48 + 4758: 2,48 + 4759: 3,47 + 4760: 2,45 + 4761: 2,44 + 4762: 2,43 + 4763: 2,42 + 4764: 1,42 + 4765: 3,42 + 4766: -2,43 + 4767: -1,41 + 4768: -3,40 + 4769: -3,40 + 4770: 1,51 + 4771: -2,50 + 4772: -3,50 + 4773: -2,51 + 4774: 0,51 + 4775: -1,52 + 4776: -2,51 + 4777: -2,53 + 4778: 1,53 + 4779: 2,51 + 4780: 2,50 + 4781: 0,50 + 4782: -4,45 + 4783: -4,47 + 4810: 6,42 + 4811: 5,41 + 4812: 5,39 + 4813: 7,39 + 4814: 8,39 + 4815: 9,41 + 4816: 9,40 + 4817: 8,42 + 4818: 8,41 + 4819: 15,37 + 4820: 14,37 + 4821: 14,35 + 4822: 14,34 + 4823: 13,35 + 4824: 13,36 + 4825: 15,34 + 4826: 16,35 + 4827: 15,36 + 4828: 15,34 + 4829: 15,35 + 4830: 15,37 + 4831: 14,37 + 4832: 15,30 + 4833: 14,29 + 4834: 14,29 + 4835: 15,28 + 4836: 14,29 + 4837: 14,32 + 4838: 13,32 + 4839: 15,24 + 4863: 2,24 + 4864: 1,24 + 4865: 1,24 + 4866: 2,23 + 4867: 4,23 + 4868: 4,24 + 4869: 3,26 + 4870: 4,28 + 4871: 2,27 + 4872: 2,27 + 4873: 3,27 + 4874: -2,25 + 4875: -3,25 + 4876: -3,23 + 4877: -2,24 + 4878: -4,23 + 4879: -4,25 + 4915: -14,28 + 4916: -15,28 + 4917: -14,29 + 4918: -13,26 + 4919: -10,26 + 4920: -9,27 + 4921: -10,28 + 4922: -7,28 + 4923: -8,26 + 4924: -5,28 + 4925: -7,24 + 4926: -8,24 + 4927: -7,23 + 4928: -6,24 + 4929: -6,23 + 4930: -7,23 + 4931: -8,23 + 4932: -8,23 + 4933: -12,23 + 4934: -11,24 + 4935: -10,23 + 4936: -10,24 + 4937: -10,24 + 4938: -12,24 + 4939: -12,24 + 4940: -14,24 + 4941: -14,23 + 4942: -16,24 + 4943: -14,24 + 4944: -15,23 + 4945: -16,24 + 4946: -14,25 + 4947: -10,25 + 4948: -7,25 + 4949: -1,28 + 4950: -3,27 + 4951: -1,30 + 4952: -1,33 + 4953: -1,34 + 4954: -1,37 + 4955: -3,37 + 4956: -3,38 + 4957: -1,37 + 4958: -2,37 + 4959: -1,40 + 4960: -3,41 + 4961: -3,43 + 4962: -2,43 + 4963: -20,25 + 4964: -21,25 + 4965: -19,25 + 4966: -21,25 + 4967: -22,17 + 4968: -23,17 + 4969: -22,5 + 4970: -22,5 + 4971: -22,5 + 4972: -19,-28 + 4973: -16,-28 + 4974: -16,-27 + 4975: -15,-28 + 4976: -16,-26 + 4977: -15,-27 + 4978: -15,-28 + 4979: -15,-26 + 4980: -15,-26 + 4981: -14,-26 + 4992: -25,-34 + 4993: -23,-34 + 4994: -22,-34 + 4995: -21,-34 + 4996: -20,-34 + 4997: -20,-37 + 4998: -20,-36 + 4999: -19,-38 + 5000: -19,-36 + 5001: -22,-37 + 5002: -23,-37 + 5003: -23,-38 + 5004: -23,-36 + 5005: -24,-37 + 5006: -26,-37 + 5007: -26,-36 + 5008: -26,-37 + 5009: -28,-40 + 5010: -27,-40 + 5011: -25,-40 + 5012: -24,-40 + 5013: -23,-40 + 5014: -21,-40 + 5015: -19,-40 + 5016: -21,-40 + 5017: -24,-40 + 5018: -26,-40 + 5019: -32,-40 + 5020: -31,-40 + 5021: -33,-39 + 5022: -33,-40 + 5023: -32,-39 + 5024: -31,-39 + 5025: -34,-39 + 5026: -33,-40 + 5027: -39,-38 + 5028: -38,-38 + 5029: -29,-46 + 5030: -30,-45 + 5031: -30,-45 + 5032: -30,-44 + 5033: -29,-45 + 5034: -30,-45 + 5035: -30,-44 + 5036: -29,-45 + 5037: -38,-53 + 5038: -38,-54 + 5039: -37,-53 + 5040: -37,-54 + 5041: -14,-39 + 5042: -13,-38 + 5043: -13,-39 + 5044: -13,-40 + 5045: -13,-41 + 5046: -13,-39 + 5047: -13,-40 + 5048: -13,-41 + 5049: -13,-39 + 5050: -13,-40 + 5051: -13,-39 + 5052: -13,-40 + 5055: -5,-41 + 5056: -5,-40 + 5057: -6,-42 + 5058: -5,-36 + 5059: -6,-36 + 5060: -4,-35 + 5061: -4,-36 + 5062: 0,-36 + 5063: -2,-36 + 5064: 1,-35 + 5065: 1,-37 + 5066: 1,-38 + 5067: 2,-37 + 5068: 2,-38 + 5069: 0,-37 + 5070: 3,-37 + 5071: -1,-36 + 5075: -6,-28 + 5076: -6,-27 + 5077: -5,-27 + 5078: -6,-26 + 5079: -2,-27 + 5080: -3,-26 + 5081: -2,-28 + 5082: -1,-27 + 5083: 0,-27 + 5084: 0,-27 + 5085: -2,-27 + 5086: -2,-27 + 5087: 0,-24 + 5088: -2,-24 + 5089: -2,-23 + 5090: 0,-22 + 5091: 1,-22 + 5092: 1,-21 + 5093: -4,-19 + 5094: -5,-19 + 5095: -7,-19 + 5096: -9,-19 + 5097: -6,-19 + 5098: -7,-17 + 5099: -8,-17 + 5100: -9,-16 + 5101: -9,-16 + 5102: -5,-16 + 5103: -4,-14 + 5104: -5,-15 + 5105: -8,-16 + 5106: -8,-15 + 5107: -14,-14 + 5108: -12,-14 + 5109: -12,-16 + 5110: -13,-18 + 5111: -14,-16 + 5112: -13,-16 + 5113: -13,-19 + 5114: -14,-19 + 5115: -2,-17 + 5116: -2,-15 + 5117: -2,-13 + 5118: -2,-12 + 5119: -1,-15 + 5120: -1,-16 + 5121: -1,-17 + 5122: 1,-17 + 5123: -1,-18 + 5124: 2,-18 + 5125: 2,-16 + 5126: 2,-15 + 5127: 2,-13 + 5128: 1,-12 + 5129: 1,-14 + 5130: -1,-13 + 5131: 0,-14 + 5132: 2,-16 + 5133: -4,-14 + 5134: -7,-24 + 5135: -7,-22 + 5136: -8,-23 + 5137: -10,-23 + 5138: -9,-23 + 5139: -1,-24 + 5140: 8,-23 + 5141: 8,-22 + 5142: 10,-22 + 5143: 9,-23 + 5144: 8,-25 + 5145: 8,-21 + 5146: 8,-19 + 5147: 8,-18 + 5148: 6,-18 + 5149: 5,-18 + 5150: 0,-27 + 5151: 2,-27 + 5152: 10,-23 + 5153: 13,-23 + 5154: 12,-23 + 5155: 13,-21 + 5156: 14,-22 + 5157: 13,-18 + 5158: 14,-18 + 5159: 14,-17 + 5160: 12,-18 + 5161: 11,-18 + 5162: 11,-16 + 5163: 13,-17 + 5164: 11,-30 + 5165: 11,-28 + 5166: 11,-27 + 5167: 11,-26 + 5168: 17,-26 + 5169: 17,-28 + 5170: 17,-28 + 5171: 17,-30 + 5172: 17,-30 + 5173: 18,-23 + 5174: 20,-22 + 5175: 21,-23 + 5176: 19,-22 + 5177: 21,-22 + 5178: 20,-21 + 5179: 24,-22 + 5180: 23,-23 + 5181: 23,-21 + 5182: 23,-23 + 5183: 17,-16 + 5184: 19,-14 + 5185: 18,-13 + 5186: 20,-13 + 5187: 19,-12 + 5188: 22,-11 + 5189: 22,-13 + 5190: 20,-11 + 5191: 24,-13 + 5192: 26,-11 + 5193: 21,-11 + 5194: 20,-11 + 5195: 25,-13 + 5196: 22,-13 + 5197: 23,-12 + 5198: 26,-12 + 5199: 19,-12 + 5200: 23,-13 + 5201: 23,-11 + 5202: 19,-10 + 5203: 26,-11 + 5204: 28,-12 + 5205: 25,-12 + 5206: 23,-16 + 5207: 23,-16 + 5208: 13,-19 + 5209: 23,-34 + 5210: 23,-31 + 5211: 23,-30 + 5212: 23,-29 + 5213: 23,-32 + 5214: 29,-34 + 5215: 29,-33 + 5216: 29,-32 + 5217: 29,-30 + 5218: 29,-29 + 5219: 32,-34 + 5220: 32,-31 + 5221: 32,-30 + 5222: 36,-30 + 5223: 35,-29 + 5224: 33,-26 + 5225: 36,-21 + 5226: 38,-16 + 5227: 37,-15 + 5228: 39,-16 + 5229: 38,-17 + 5230: 38,-15 + 5231: 37,-15 + 5232: 62,-31 + 5233: 62,-33 + 5234: 61,-31 + 5235: 63,-33 + 5236: 63,-33 + 5237: 63,-32 + 5238: 62,-32 + 5239: 62,-32 + 5240: 64,8 + 5241: 63,9 + 5242: 65,9 + 5243: 64,8 + 5244: 64,9 + 5245: 64,10 + 5246: 67,6 + 5247: 68,4 + 5248: 68,6 + 5249: 67,5 + 5250: 68,0 + 5251: 68,1 + 5252: 68,2 + 5253: 67,0 + 5254: 68,-2 + 5255: 67,-3 + 5256: 68,-4 + 5257: 68,-3 + 5258: 68,-3 + 5259: 76,-6 + 5265: 54,-30 + 5266: 52,-31 + 5267: 51,-31 + 5268: 52,-33 + 5269: 52,-34 + 5270: 51,-33 + 5271: 51,-32 + 5272: 52,-35 + 5273: 51,-33 + 5274: 51,-31 + 5275: 52,-35 + 5276: 52,-35 + 5277: 55,-35 + 5278: 54,-34 + 5279: 56,-33 + 5280: 57,-33 + 5281: 55,-34 + 5282: 55,-36 + 5283: 54,-35 + 5284: 55,-34 + 5285: 54,-35 + 5286: 55,-35 + 5287: 55,-34 + 5288: 40,-31 + 5289: 40,-30 + 5290: 40,-30 + 5291: 41,-31 + 5292: 41,-29 + 5293: 42,-29 + 5294: 43,-29 + 5295: 44,-29 + 5296: 44,-31 + 5297: 43,-30 + 5298: 33,-29 + 5299: 15,-39 + 5300: 14,-39 + 5301: 14,-39 + 5302: 9,-40 + 5303: 9,-39 + 5304: 9,-41 + 5305: 8,-40 + 5306: 19,-45 + 5307: 17,-45 + 5308: 16,-44 + 5309: 16,-45 + 5310: 16,-43 + 5311: 19,-45 + 5312: 20,-44 + 5313: 20,-45 + 5314: 18,-44 + 5315: 21,-45 + 5316: 21,-43 + 5317: 15,-48 + 5318: 14,-48 + 5319: 12,-47 + 5320: 12,-48 + 5321: 14,-48 + 5322: 16,-47 + 5323: 14,-48 + 5324: 13,-48 + 5325: 15,-47 + 5332: 21,-54 + 5333: 20,-54 + 5334: 18,-54 + 5335: 16,-54 + 5336: 16,-55 + 5337: 18,-53 + 5338: 19,-53 + 5339: 21,-55 + 5340: 21,-58 + 5341: 21,-59 + 5342: 20,-58 + 5343: 18,-58 + 5344: 17,-58 + 5345: 16,-58 + 5346: 16,-59 + 5347: 19,-59 + 5348: 19,-59 + 5349: 18,-59 + 5350: 27,-46 + 5351: 26,-45 + 5352: 26,-44 + 5353: 27,-45 + 5354: 27,-45 + 5355: 28,-42 + 5356: 29,-42 + 5357: 29,-40 + 5358: 28,-39 + 5359: 28,-39 + 5360: 28,-40 + 5361: 29,-47 + 5362: 28,-47 + 5363: 66,-52 + 5364: 65,-51 + 5365: 66,-52 + 5366: 66,-51 + 5367: 65,-52 + 5368: 66,-51 + 5369: 27,15 + 5370: 28,15 + 5371: 27,14 + 5372: 27,12 + 5373: -23,34 + 5374: -23,35 + 5375: -22,34 + 5376: -27,36 + 5377: -27,34 + 5378: -28,35 + 5379: -27,35 + 5380: -29,36 + 5381: -30,37 + 5382: -30,38 + 5383: -28,35 + 5384: -28,34 + 5385: -29,35 + 5386: -26,36 + 5387: -25,38 + 5388: -26,37 + 5389: -32,36 + 5390: -33,35 + 5391: -33,37 + 5392: -33,35 + 5393: -34,36 + 5394: -33,38 + 5395: -33,35 + 5396: -36,5 + 5397: -42,6 + 5398: -43,4 + 5399: -43,6 + 5400: -42,7 + 5401: -51,9 + 5402: -49,13 + 5403: -42,-5 + 5404: -43,-5 + 5405: -42,-3 + 5406: -45,-4 + 5407: -45,-5 + 5408: -46,-4 + 5409: -43,-3 + 5410: -43,-2 + 5411: -42,-2 + 5412: -60,-29 + 5413: -60,-29 + 5414: -57,-36 + 5415: -58,-36 + 5416: -59,-36 + 5417: -57,-37 + 5418: -58,-35 + 5419: -58,-34 + 5420: -57,-35 + 5421: -59,-34 + 5422: -58,-34 + 5423: -59,-34 + 5424: -60,-34 + 5425: -60,-35 + 5426: -61,-21 + 5427: -62,-21 + 5428: -62,-20 + 5429: -61,-20 + 5430: -61,-20 + 5431: 13,35 + 6082: 52,20 + 6083: 51,21 + 6084: 53,20 + 6085: 53,21 + 6186: 46,14 + 6187: 45,15 + 6188: 46,16 + 6393: 49,-7 + 6394: 48,-6 + 6395: 48,-4 + 6396: 49,-4 + 6397: 52,-7 + 6398: 52,-5 + 6399: 51,-6 + 6400: 52,-2 + 6401: 52,-3 + 6402: 48,-1 + 6403: 48,-2 + 6423: 49,-12 + 6424: 49,-14 + 6425: 49,-15 + 6426: 49,-13 + 6427: 52,-14 + 6428: 52,-13 + 6429: 52,-12 + 6430: 52,-15 + 6431: 52,-15 + 6432: 52,-10 + 6433: 51,1 + 6434: 51,3 + 6435: 51,4 + 6436: 51,8 + 6437: 51,9 + 6438: 51,11 + 6439: 51,13 + 6440: 49,13 + 6441: 49,11 + 6442: 49,9 + 6443: 49,7 + 6444: 49,5 + 6445: 49,3 + 6446: 49,1 + 6459: 42,9 + 6460: 43,9 + 6461: 42,7 + 6462: 43,7 + 6463: 45,7 + 6464: 45,9 + 6465: 46,7 + 6466: 40,4 + 6467: 42,4 + 6468: 43,4 + 6469: 43,2 + 6470: 43,1 + 6471: 43,-2 + 6472: 43,-4 + 6473: 43,-7 + 6474: 43,-6 + 6475: 43,-10 + 6476: 43,-11 + 6477: 45,5 + 6478: 42,5 + 6479: 41,5 + 6558: 90,-18 + 6559: 89,-18 + 6642: 51,-39 + 6643: 52,-39 + 6644: 54,-39 + 6645: 52,-37 + 6655: 51,-30 + 6656: 52,-29 + 6680: -33,-12 + 6681: -33,-10 + 6697: -36,-45 + 6698: -35,-44 + 6699: -35,-46 + 6791: 14,39 + 6792: 13,40 + 6793: 15,42 + 6794: 15,41 + 6795: 16,39 + 6855: 8,-47 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 3012: -43,17 + 2991: -43,17 - node: cleanable: True color: '#835432FF' id: DirtHeavyMonotile decals: - 2920: -38,29 - 2921: -36,28 - 2922: -34,26 - 2923: -34,24 - 2924: -36,22 - 2925: -37,25 - 2926: -37,26 - 2927: -37,27 - 2928: -38,27 - 2929: -36,26 + 2899: -38,29 + 2900: -36,28 + 2901: -34,26 + 2902: -34,24 + 2903: -36,22 + 2904: -37,25 + 2905: -37,26 + 2906: -37,27 + 2907: -38,27 + 2908: -36,26 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 6612: 88,-21 - 6613: 88,-20 - 6614: 91,-20 - 6617: 87,-20 - 6620: 88,-19 + 6583: 88,-21 + 6584: 88,-20 + 6585: 91,-20 + 6588: 87,-20 + 6591: 88,-19 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3181: 4,-31 - 3182: 0,-31 - 3183: -4,-31 - 3184: -8,-31 - 3185: -10,-31 - 3186: -13,-31 - 3187: -17,-31 - 3188: -18,-31 - 3189: -21,-31 - 3190: -25,-31 - 3191: -25,-27 - 3192: -25,-24 - 3193: -25,-22 - 3194: -25,-19 - 3195: -25,-18 - 3196: -25,-13 - 3197: -25,-11 - 3198: -24,-10 - 3199: -24,-8 - 3200: -22,-2 - 3201: -22,0 - 3202: -22,3 - 3203: -20,8 - 3204: -22,9 - 3205: -24,8 - 3206: -25,9 - 3207: -26,8 - 3208: -26,12 - 3209: -26,15 - 3210: -26,17 - 3211: -25,20 - 3212: -23,19 - 3213: -20,19 - 3214: -18,20 - 3215: -15,20 - 3216: -12,20 - 3217: -7,20 - 3218: -3,20 - 3219: -1,20 - 3220: 2,20 - 3221: 6,20 - 3222: 9,20 - 3223: 11,20 - 3224: 14,20 - 3225: 17,20 - 3226: 20,19 - 3227: 20,17 - 3228: 20,15 - 3229: 20,11 - 3230: 20,9 - 3231: 20,6 - 3232: 20,3 - 3233: 22,3 - 3234: 25,3 - 3235: 27,3 - 3236: 30,3 - 3237: 33,3 - 3238: 36,3 - 3239: 41,3 - 3240: 42,2 - 3241: 42,0 - 3242: 42,-3 - 3243: 42,-6 - 3244: 42,-9 - 3245: 42,-11 - 3246: 42,-15 - 3247: 42,-18 - 3248: 42,-20 - 3249: 44,-20 - 3250: 42,-13 - 3251: 42,-10 - 3252: 42,-7 - 3253: 42,-5 - 3254: 42,-2 - 3255: 42,1 - 3256: 39,3 - 3257: 37,3 - 3258: 35,3 - 3259: 32,3 - 3260: 31,3 - 3261: 26,3 - 3262: 22,3 - 3263: 20,6 - 3264: 20,9 - 3265: 20,12 - 3266: 20,15 - 3267: 20,19 - 3268: 19,20 - 3269: 12,20 - 3270: 8,20 - 3271: 5,20 - 3272: 2,20 - 3273: -1,20 - 3274: -5,20 - 3275: -9,20 - 3276: -12,20 - 3277: -16,20 - 3279: -19,19 - 3280: -26,20 - 3281: -26,16 - 3282: -26,11 - 3283: -26,8 - 3284: -23,8 - 3285: -22,9 - 3286: -21,8 - 3287: -20,9 - 3288: -22,3 - 3289: -22,0 - 3290: -22,-3 - 3291: -22,-5 - 3292: -23,-7 - 3293: -25,-7 - 3294: -23,-8 - 3295: -25,-10 - 3296: -25,-10 - 3297: -25,-14 - 3298: -25,-18 - 3299: -25,-21 - 3300: -25,-25 - 3301: -25,-28 - 3302: -23,-31 - 3303: -20,-31 - 3304: -15,-31 - 3305: -9,-31 - 3306: -5,-31 - 3307: 1,-31 - 3308: 1,-32 - 3309: 7,-31 - 3310: 5,-31 - 3311: 8,-32 - 3312: 9,-33 - 3313: 12,-33 - 3314: 15,-33 - 3315: 18,-33 - 3316: 19,-33 - 3317: 20,-29 - 3318: 20,-27 - 3319: 21,-26 - 3320: 24,-26 - 3321: 27,-26 - 3322: 28,-26 - 3323: 28,-22 - 3324: 28,-21 - 3325: 28,-20 - 3326: 32,-20 - 3327: 35,-20 - 3328: 39,-20 - 3329: 42,-20 - 3330: 40,-20 - 3331: 42,-17 - 3332: 42,-19 - 3333: 49,-20 - 3334: 52,-20 - 3335: 47,-20 - 3336: 53,-20 - 3337: 53,-22 - 3338: 53,-23 - 3339: 54,-20 - 3340: 56,-20 - 3341: 58,-20 - 3342: 58,-20 - 3343: 58,-22 - 3344: 58,-23 - 3345: 58,-22 - 3346: 49,-20 - 3347: 50,-20 - 3348: 44,-13 - 3349: 41,-13 - 3350: 39,-1 - 3351: 37,-1 - 3352: 36,-1 - 3353: 50,6 - 3354: 50,2 - 3355: 50,14 - 3356: 46,-7 - 3357: 45,-8 - 3358: 46,-4 - 3359: 46,-5 - 3360: 45,-1 - 3361: 46,-2 - 3362: 54,-1 - 3363: 55,-1 - 3364: 55,-7 - 3365: 58,-4 - 3366: 59,-6 - 3367: 60,-5 - 3368: 62,-6 - 3369: 61,-6 - 3370: 55,7 - 3371: 54,7 - 3372: 59,15 - 3373: 58,15 - 3374: 60,16 - 3375: 60,3 - 3376: 60,1 - 3377: 63,1 - 3378: 62,1 - 3379: 62,0 - 3380: 62,3 - 3381: 62,4 - 3382: 28,3 - 3383: 28,3 - 3384: 24,8 - 3385: 24,6 - 3386: 23,8 - 3387: 25,7 - 3388: 24,7 - 3389: 24,6 - 3390: 25,11 - 3391: 25,13 - 3392: 25,14 - 3393: 23,15 - 3394: 22,12 - 3395: 23,12 - 3396: 23,14 - 3397: 23,11 - 3398: 26,19 - 3399: 24,20 - 3400: 25,21 - 3401: 26,19 - 3402: 25,20 - 3403: 29,20 - 3404: 29,19 - 3405: 30,19 - 3406: 29,21 - 3407: -19,26 - 3408: -21,28 - 3409: -20,26 - 3410: -20,28 - 3411: -7,40 - 3412: 3,40 - 3413: -26,19 - 3414: -17,11 - 3415: -16,11 - 3416: -16,13 - 3417: -17,13 - 3418: -33,11 - 3419: -33,13 - 3420: -33,14 - 3421: -32,14 - 3422: -30,14 - 3423: -29,14 - 3424: -31,14 - 3425: -30,3 - 3426: -32,3 - 3427: -37,3 - 3428: -36,2 - 3429: -35,2 - 3430: -37,1 - 3431: -33,1 - 3432: -32,2 - 3433: -32,1 - 3434: -31,2 - 3435: -33,2 - 3436: -38,0 - 3437: -37,0 - 3438: -34,0 - 3439: -33,0 - 3440: -31,0 - 3441: -30,0 - 3442: -55,6 - 3443: -54,6 - 3444: -54,4 - 3445: -54,2 - 3446: -56,5 - 3447: -55,4 - 3448: -53,1 - 3449: -51,1 - 3450: -49,1 - 3451: -47,1 - 3452: -45,1 - 3453: -44,1 - 3454: -43,1 - 3455: -54,1 - 3456: -54,-4 - 3457: -55,-4 - 3458: -54,-8 - 3459: -54,-10 - 3460: -54,-12 - 3461: -54,-14 - 3462: -54,-16 - 3463: -54,-19 - 3464: -53,-21 - 3465: -51,-21 - 3466: -54,-21 - 3467: -54,-20 - 3468: -54,-18 - 3469: -48,-21 - 3470: -48,-23 - 3471: -48,-24 - 3472: -50,-25 - 3473: -47,-25 - 3474: -45,-25 - 3475: -45,-26 - 3476: -45,-29 - 3477: -44,-28 - 3478: -43,-28 - 3479: -45,-31 - 3480: -48,-32 - 3481: -49,-32 - 3482: -51,-32 - 3483: -51,-30 - 3484: -51,-28 - 3485: -51,-26 - 3486: -48,-33 - 3487: -54,-26 - 3488: -56,-25 - 3489: -55,-25 - 3490: -56,-26 - 3491: -57,-26 - 3492: -55,-26 - 3493: -56,-25 - 3494: -48,-36 - 3495: -48,-38 - 3496: -48,-40 - 3497: -48,-42 - 3498: -48,-44 - 3499: -48,-47 - 3500: -49,-47 - 3501: -51,-47 - 3502: -53,-47 - 3503: -54,-47 - 3504: -45,-47 - 3505: -45,-47 - 3506: -43,-47 - 3507: -41,-47 - 3508: -41,-47 - 3509: -41,-50 - 3510: -41,-51 - 3511: -41,-54 - 3512: -36,-58 - 3513: -36,-60 - 3514: -36,-63 - 3515: -36,-64 - 3516: -36,-56 - 3517: -37,-56 - 3518: -41,-61 - 3519: -42,-62 - 3520: -41,-64 - 3521: -41,-64 - 3522: -42,-62 - 3523: -41,-48 - 3524: -53,-47 - 3525: -55,-47 - 3526: -55,-49 - 3527: -55,-52 - 3528: -55,-54 - 3529: -60,-58 - 3530: -60,-60 - 3531: -60,-62 - 3532: -60,-63 - 3533: -60,-64 - 3534: -58,-56 - 3535: -60,-56 - 3536: -55,-64 - 3537: -55,-62 - 3538: -54,-61 - 3539: -54,-63 - 3540: -54,-64 - 3541: -8,-28 - 3542: -7,-26 - 3543: -8,-27 - 3544: -8,-27 - 3545: 7,-22 - 3546: 5,-22 - 3547: 4,-23 - 3548: 4,-20 - 3549: 4,-19 - 3550: 7,-20 - 3551: 7,-21 - 3552: 7,-24 - 3553: 7,-25 - 3554: 10,-16 - 3555: 10,-18 - 3556: 10,-18 - 3557: 12,-29 - 3558: 12,-28 - 3559: 12,-26 - 3560: 13,-25 - 3561: 14,-25 - 3562: 14,-26 - 3563: 15,-25 - 3564: 16,-26 - 3565: 16,-29 - 3566: -4,-36 - 3567: -4,-37 - 3568: -6,-37 - 3571: 34,-3 - 3572: 32,-2 - 3573: 32,-3 - 3574: 31,-2 - 3575: 31,-3 - 3576: 31,-35 - 3577: 33,-35 - 3578: 32,-37 - 3579: 33,-36 - 3580: 33,-38 - 3581: 32,-36 - 3582: 31,-38 - 3583: 47,-36 - 3584: 47,-35 - 3585: 49,-35 - 3586: 49,-37 - 3587: 47,-37 - 3588: 47,-38 - 3589: 49,-38 - 3590: 47,-39 - 3591: 24,-29 - 3592: 26,-29 - 3593: 27,-29 - 3594: 28,-29 - 3595: 25,-34 - 3596: 27,-34 - 3597: 28,-34 - 3598: 26,-34 - 3599: 28,-43 - 3600: 29,-43 - 3601: 28,-45 - 3602: 29,-45 - 3603: 28,-46 - 3604: 29,-46 - 3605: 19,-46 - 3606: 18,-46 - 3607: 18,-47 - 3608: 19,-49 - 3609: 19,-49 - 3610: 18,-50 - 3611: 19,-50 - 3612: 18,-48 - 3613: 16,-48 - 3614: 14,-48 - 3615: 12,-47 - 3616: 10,-40 - 3617: 11,-39 - 3618: 11,-40 - 3619: 11,-40 - 3620: 8,-31 - 3621: 8,-31 - 3622: 5,-14 - 3623: 6,-14 - 3624: 6,-15 - 3625: 5,-15 - 3626: 4,-15 - 3627: 4,-15 - 3628: 25,7 - 3629: 20,16 - 3630: 20,18 - 3631: 15,26 - 3632: 14,26 - 3633: 13,26 - 3634: 13,26 - 3635: -44,10 - 3636: -45,10 - 3637: -46,10 - 3638: -47,10 - 3639: -49,10 - 3640: -50,10 - 3641: -50,12 - 3642: -47,12 - 3643: -48,1 - 3644: -47,1 - 3645: -48,-41 - 3646: -38,-56 - 3647: -38,-56 - 3648: -42,-57 - 3649: -55,-57 - 3781: -50,0 - 3782: -50,2 - 3783: -48,2 - 3784: -46,2 - 3785: -45,2 - 3786: -44,0 - 3787: -46,0 - 3788: -48,0 - 3820: -51,3 - 3821: -49,3 - 3822: -47,3 - 3823: -45,3 - 3824: -44,5 - 3825: -46,5 - 3826: -48,5 - 3827: -50,5 - 3828: -50,-1 - 3829: -49,-1 - 3830: -47,-1 - 3831: -46,-1 - 3832: -44,-1 - 3833: -44,-3 - 3834: -46,-3 - 3835: -47,-3 - 3836: -49,-3 - 3837: -50,-3 - 3838: -48,-3 - 3839: -46,-3 - 3840: -48,3 - 3841: -46,3 - 3921: -21,6 - 3922: -21,7 - 3923: -22,6 - 3924: -21,7 - 4121: 19,1 - 4122: 21,1 - 4123: 22,1 - 4124: 23,1 - 4125: 23,1 - 4190: 40,-22 - 4191: 41,-22 - 4192: 43,-22 - 4193: 44,-22 - 4252: 61,-25 - 4253: 62,-25 - 4254: 62,-26 - 4259: 68,-23 - 4282: 68,-15 - 4283: 68,-13 - 4284: 68,-14 - 4285: 67,-12 - 4286: 70,-12 - 4287: 70,-14 - 4288: 68,-11 - 4289: 71,-12 - 4290: 70,-14 - 4291: 70,-15 - 4292: 71,-13 - 4293: 69,-13 - 4294: 69,-12 - 4295: 68,-10 - 4296: 67,-10 - 4297: 68,-8 - 4298: 69,-8 - 4299: 70,-9 - 4300: 70,-10 - 4394: 39,-34 - 4395: 40,-34 - 4396: 39,-34 - 4397: 42,-34 - 4398: 40,-34 - 4399: 41,-33 - 4400: 34,-36 - 4401: 34,-35 - 4402: 35,-36 - 4403: 38,-37 - 4404: 43,-37 - 4405: 43,-37 - 4406: 46,-37 - 4407: 46,-35 - 4408: 46,-37 - 4409: 47,-37 - 4410: 48,-36 - 4411: 48,-37 - 4412: 46,-39 - 4413: 44,-39 - 4414: 41,-39 - 4415: 37,-39 - 4416: 35,-39 - 4417: 39,-38 - 4418: 33,-38 - 4718: -20,6 - 4719: -20,7 - 4720: -21,6 - 4721: -20,7 - 4722: -20,6 - 4723: -21,12 - 4724: -25,29 - 4725: -25,28 - 4726: -26,30 - 4727: -26,28 - 4728: -26,29 - 4752: -16,40 - 4753: -17,41 - 4754: -15,39 - 4755: -13,41 - 4756: -12,39 - 4807: -2,46 - 4808: -4,46 - 4809: -1,48 - 4810: 0,47 - 4811: -3,50 - 4812: 0,51 - 4813: 2,47 - 4814: 2,45 - 4815: 2,43 - 4816: 2,40 - 4817: -6,40 - 4818: -7,40 - 4819: -7,40 - 4820: -4,46 - 4821: -5,45 - 4822: -6,46 - 4823: 7,41 - 4824: 6,42 - 4825: 9,40 - 4826: 6,39 - 4827: 8,40 - 4828: 6,39 - 4829: 8,39 - 4830: 7,42 - 4831: 7,41 - 4832: 5,41 - 4863: 14,34 - 4864: 13,36 - 4865: 14,37 - 4866: 16,37 - 4867: 14,36 - 4868: 5,30 - 4869: 4,30 - 4870: 3,32 - 4871: 5,32 - 4872: 5,32 - 4873: 4,31 - 4874: 4,31 - 4875: 3,32 - 4876: 3,28 - 4877: 2,27 - 4878: 1,28 - 4879: 3,27 - 4880: 4,26 - 4881: 3,25 - 4882: 4,24 - 4883: 3,23 - 4884: 1,24 - 4885: 2,23 - 4903: -3,25 - 4904: -4,23 - 4905: -2,23 - 4906: -3,24 - 4907: 0,24 - 4908: 0,23 - 4909: -16,29 - 4910: -15,26 - 4911: -15,28 - 4912: -13,28 - 4913: -13,29 - 4914: -9,28 - 4915: -10,26 - 4916: -9,27 - 4917: -11,28 - 4918: -8,29 - 4919: -9,26 - 4920: -6,27 - 4921: -6,26 - 4922: -6,28 - 4923: -3,29 - 4924: -4,27 - 4925: -1,28 - 4926: -3,29 - 4927: -2,30 - 4928: -3,32 - 4929: -2,33 - 4930: -2,34 - 4931: -8,33 - 4932: -7,32 - 4933: -8,32 - 4934: -9,33 - 4935: -6,34 - 4936: -6,33 - 4937: -13,34 - 5005: -17,-28 - 5006: -19,-28 - 5007: -20,-27 - 5008: -20,-26 - 5009: -20,-27 - 5010: -15,-28 - 5011: -14,-28 - 5012: -14,-27 - 5013: -14,-29 - 5014: -17,-29 - 5076: -14,-38 - 5077: -14,-38 - 5095: -6,-37 - 5096: -5,-37 - 5097: -4,-37 - 5283: 78,-28 - 5284: 79,-28 - 5285: 78,-28 - 5286: 78,-27 - 5287: 78,-29 - 5352: 13,-45 - 5353: 12,-45 - 5354: 12,-50 - 5355: 12,-49 - 5356: 16,-49 - 5357: 15,-49 - 6163: 81,-34 - 6164: 82,-35 - 6165: 81,-35 - 6166: 81,-35 - 6192: -2,41 - 6193: -2,42 - 6194: -3,42 - 6195: -3,42 - 6196: -1,43 - 6218: 46,15 - 6219: 47,15 - 6220: 47,15 - 6221: 45,16 - 6433: 49,-1 - 6434: 51,-1 - 6435: 50,-2 - 6436: 49,-3 - 6437: 49,-5 - 6438: 51,-5 - 6439: 51,-3 - 6440: 50,-8 - 6441: 49,-8 - 6442: 48,-7 - 6443: 52,-8 - 6444: 54,-7 - 6445: 49,-10 - 6446: 50,-11 - 6447: 48,-11 - 6448: 51,-10 - 6449: 51,-11 - 6450: 52,-11 - 6451: 53,-11 - 6476: 50,2 - 6477: 50,4 - 6478: 50,9 - 6479: 50,12 - 6480: 50,13 - 6481: 47,9 - 6482: 47,7 - 6483: 41,8 - 6484: 41,7 - 6485: 40,8 - 6486: 40,7 - 6487: 44,8 - 6509: 46,4 - 6510: 45,4 - 6511: 46,2 - 6512: 45,2 - 6513: 45,1 - 6514: 46,5 - 6515: 40,5 - 6516: 44,4 - 6517: 44,7 - 6518: 55,3 - 6519: 54,2 - 6520: 53,3 - 6521: 55,4 - 6522: 57,4 - 6523: 56,2 - 6524: 55,1 - 6525: 55,6 - 6526: 53,7 - 6527: 53,6 - 6528: 55,8 - 6529: 56,10 - 6530: 55,10 - 6531: 53,12 - 6532: 53,11 - 6533: 57,14 - 6543: -1,-23 - 6544: 0,-23 - 6545: -4,-23 - 6546: -5,-23 - 6547: 35,19 - 6548: 34,19 - 6549: 35,20 - 6550: -8,27 - 6551: -12,27 - 6552: -10,27 - 6553: -14,27 - 6554: -15,27 - 6555: -15,27 - 6589: 88,-18 - 6590: 87,-18 - 6591: 91,-19 - 6592: 91,-18 - 6593: 92,-19 - 6675: 51,-36 - 6676: 51,-37 - 6677: 53,-39 - 6678: 54,-40 - 6679: 51,-35 - 6686: 51,-29 - 6692: 51,-26 - 6693: 52,-27 - 6694: 56,-27 - 6695: 56,-29 - 6711: -32,-12 - 6712: -34,-11 - 6713: -32,-10 - 6714: -33,-9 - 6715: -34,-9 - 6719: 61,-21 - 6720: -24,-42 - 6722: -25,-42 - 6723: -22,-42 - 6724: -22,-42 - 6731: -37,-45 - 6732: -38,-44 - 6733: -38,-46 - 6734: -37,-46 - 6825: 13,41 - 6826: 15,39 - 6827: 16,41 - 6863: 33,-2 - 6864: 34,-2 - 6865: 34,-2 - 6883: 7,-47 + 3160: 4,-31 + 3161: 0,-31 + 3162: -4,-31 + 3163: -8,-31 + 3164: -10,-31 + 3165: -13,-31 + 3166: -17,-31 + 3167: -18,-31 + 3168: -21,-31 + 3169: -25,-31 + 3170: -25,-27 + 3171: -25,-24 + 3172: -25,-22 + 3173: -25,-19 + 3174: -25,-18 + 3175: -25,-13 + 3176: -25,-11 + 3177: -24,-10 + 3178: -24,-8 + 3179: -22,-2 + 3180: -22,0 + 3181: -22,3 + 3182: -20,8 + 3183: -22,9 + 3184: -24,8 + 3185: -25,9 + 3186: -26,8 + 3187: -26,12 + 3188: -26,15 + 3189: -26,17 + 3190: -25,20 + 3191: -23,19 + 3192: -20,19 + 3193: -18,20 + 3194: -15,20 + 3195: -12,20 + 3196: -7,20 + 3197: -3,20 + 3198: -1,20 + 3199: 2,20 + 3200: 6,20 + 3201: 9,20 + 3202: 11,20 + 3203: 14,20 + 3204: 17,20 + 3205: 20,19 + 3206: 20,17 + 3207: 20,15 + 3208: 20,11 + 3209: 20,9 + 3210: 20,6 + 3211: 20,3 + 3212: 22,3 + 3213: 25,3 + 3214: 27,3 + 3215: 30,3 + 3216: 33,3 + 3217: 36,3 + 3218: 41,3 + 3219: 42,2 + 3220: 42,0 + 3221: 42,-3 + 3222: 42,-6 + 3223: 42,-9 + 3224: 42,-11 + 3225: 42,-15 + 3226: 42,-18 + 3227: 42,-20 + 3228: 44,-20 + 3229: 42,-13 + 3230: 42,-10 + 3231: 42,-7 + 3232: 42,-5 + 3233: 42,-2 + 3234: 42,1 + 3235: 39,3 + 3236: 37,3 + 3237: 35,3 + 3238: 32,3 + 3239: 31,3 + 3240: 26,3 + 3241: 22,3 + 3242: 20,6 + 3243: 20,9 + 3244: 20,12 + 3245: 20,15 + 3246: 20,19 + 3247: 19,20 + 3248: 12,20 + 3249: 8,20 + 3250: 5,20 + 3251: 2,20 + 3252: -1,20 + 3253: -5,20 + 3254: -9,20 + 3255: -12,20 + 3256: -16,20 + 3258: -19,19 + 3259: -26,20 + 3260: -26,16 + 3261: -26,11 + 3262: -26,8 + 3263: -23,8 + 3264: -22,9 + 3265: -21,8 + 3266: -20,9 + 3267: -22,3 + 3268: -22,0 + 3269: -22,-3 + 3270: -22,-5 + 3271: -23,-7 + 3272: -25,-7 + 3273: -23,-8 + 3274: -25,-10 + 3275: -25,-10 + 3276: -25,-14 + 3277: -25,-18 + 3278: -25,-21 + 3279: -25,-25 + 3280: -25,-28 + 3281: -23,-31 + 3282: -20,-31 + 3283: -15,-31 + 3284: -9,-31 + 3285: -5,-31 + 3286: 1,-31 + 3287: 1,-32 + 3288: 7,-31 + 3289: 5,-31 + 3290: 8,-32 + 3291: 9,-33 + 3292: 12,-33 + 3293: 15,-33 + 3294: 18,-33 + 3295: 19,-33 + 3296: 20,-29 + 3297: 20,-27 + 3298: 21,-26 + 3299: 24,-26 + 3300: 27,-26 + 3301: 28,-26 + 3302: 28,-22 + 3303: 28,-21 + 3304: 28,-20 + 3305: 32,-20 + 3306: 35,-20 + 3307: 39,-20 + 3308: 42,-20 + 3309: 40,-20 + 3310: 42,-17 + 3311: 42,-19 + 3312: 49,-20 + 3313: 52,-20 + 3314: 47,-20 + 3315: 53,-20 + 3316: 53,-22 + 3317: 53,-23 + 3318: 54,-20 + 3319: 56,-20 + 3320: 58,-20 + 3321: 58,-20 + 3322: 58,-22 + 3323: 58,-23 + 3324: 58,-22 + 3325: 49,-20 + 3326: 50,-20 + 3327: 44,-13 + 3328: 41,-13 + 3329: 39,-1 + 3330: 37,-1 + 3331: 36,-1 + 3332: 50,6 + 3333: 50,2 + 3334: 50,14 + 3335: 46,-7 + 3336: 45,-8 + 3337: 46,-4 + 3338: 46,-5 + 3339: 45,-1 + 3340: 46,-2 + 3341: 54,-1 + 3342: 55,-1 + 3343: 55,-7 + 3344: 58,-4 + 3345: 59,-6 + 3346: 60,-5 + 3347: 62,-6 + 3348: 61,-6 + 3349: 55,7 + 3350: 54,7 + 3351: 59,15 + 3352: 58,15 + 3353: 60,16 + 3354: 60,3 + 3355: 60,1 + 3356: 63,1 + 3357: 62,1 + 3358: 62,0 + 3359: 62,3 + 3360: 62,4 + 3361: 28,3 + 3362: 28,3 + 3363: 24,8 + 3364: 24,6 + 3365: 23,8 + 3366: 25,7 + 3367: 24,7 + 3368: 24,6 + 3369: 25,11 + 3370: 25,13 + 3371: 25,14 + 3372: 23,15 + 3373: 22,12 + 3374: 23,12 + 3375: 23,14 + 3376: 23,11 + 3377: 26,19 + 3378: 24,20 + 3379: 25,21 + 3380: 26,19 + 3381: 25,20 + 3382: 29,20 + 3383: 29,19 + 3384: 30,19 + 3385: 29,21 + 3386: -19,26 + 3387: -21,28 + 3388: -20,26 + 3389: -20,28 + 3390: -7,40 + 3391: 3,40 + 3392: -26,19 + 3393: -17,11 + 3394: -16,11 + 3395: -16,13 + 3396: -17,13 + 3397: -33,11 + 3398: -33,13 + 3399: -33,14 + 3400: -32,14 + 3401: -30,14 + 3402: -29,14 + 3403: -31,14 + 3404: -30,3 + 3405: -32,3 + 3406: -37,3 + 3407: -36,2 + 3408: -35,2 + 3409: -37,1 + 3410: -33,1 + 3411: -32,2 + 3412: -32,1 + 3413: -31,2 + 3414: -33,2 + 3415: -38,0 + 3416: -37,0 + 3417: -34,0 + 3418: -33,0 + 3419: -31,0 + 3420: -30,0 + 3421: -55,6 + 3422: -54,6 + 3423: -54,4 + 3424: -54,2 + 3425: -56,5 + 3426: -55,4 + 3427: -53,1 + 3428: -51,1 + 3429: -49,1 + 3430: -47,1 + 3431: -45,1 + 3432: -44,1 + 3433: -43,1 + 3434: -54,1 + 3435: -54,-4 + 3436: -55,-4 + 3437: -54,-8 + 3438: -54,-10 + 3439: -54,-12 + 3440: -54,-14 + 3441: -54,-16 + 3442: -54,-19 + 3443: -53,-21 + 3444: -51,-21 + 3445: -54,-21 + 3446: -54,-20 + 3447: -54,-18 + 3448: -48,-21 + 3449: -48,-23 + 3450: -48,-24 + 3451: -50,-25 + 3452: -47,-25 + 3453: -45,-25 + 3454: -45,-26 + 3455: -45,-29 + 3456: -44,-28 + 3457: -43,-28 + 3458: -45,-31 + 3459: -48,-32 + 3460: -49,-32 + 3461: -51,-32 + 3462: -51,-30 + 3463: -51,-28 + 3464: -51,-26 + 3465: -48,-33 + 3466: -54,-26 + 3467: -56,-25 + 3468: -55,-25 + 3469: -56,-26 + 3470: -57,-26 + 3471: -55,-26 + 3472: -56,-25 + 3473: -48,-36 + 3474: -48,-38 + 3475: -48,-40 + 3476: -48,-42 + 3477: -48,-44 + 3478: -48,-47 + 3479: -49,-47 + 3480: -51,-47 + 3481: -53,-47 + 3482: -54,-47 + 3483: -45,-47 + 3484: -45,-47 + 3485: -43,-47 + 3486: -41,-47 + 3487: -41,-47 + 3488: -41,-50 + 3489: -41,-51 + 3490: -41,-54 + 3491: -36,-58 + 3492: -36,-60 + 3493: -36,-63 + 3494: -36,-64 + 3495: -36,-56 + 3496: -37,-56 + 3497: -41,-61 + 3498: -42,-62 + 3499: -41,-64 + 3500: -41,-64 + 3501: -42,-62 + 3502: -41,-48 + 3503: -53,-47 + 3504: -55,-47 + 3505: -55,-49 + 3506: -55,-52 + 3507: -55,-54 + 3508: -60,-58 + 3509: -60,-60 + 3510: -60,-62 + 3511: -60,-63 + 3512: -60,-64 + 3513: -58,-56 + 3514: -60,-56 + 3515: -55,-64 + 3516: -55,-62 + 3517: -54,-61 + 3518: -54,-63 + 3519: -54,-64 + 3520: -8,-28 + 3521: -7,-26 + 3522: -8,-27 + 3523: -8,-27 + 3524: 7,-22 + 3525: 5,-22 + 3526: 4,-23 + 3527: 4,-20 + 3528: 4,-19 + 3529: 7,-20 + 3530: 7,-21 + 3531: 7,-24 + 3532: 7,-25 + 3533: 10,-16 + 3534: 10,-18 + 3535: 10,-18 + 3536: 12,-29 + 3537: 12,-28 + 3538: 12,-26 + 3539: 13,-25 + 3540: 14,-25 + 3541: 14,-26 + 3542: 15,-25 + 3543: 16,-26 + 3544: 16,-29 + 3545: -4,-36 + 3546: -4,-37 + 3547: -6,-37 + 3548: 34,-3 + 3549: 32,-2 + 3550: 32,-3 + 3551: 31,-2 + 3552: 31,-3 + 3553: 31,-35 + 3554: 33,-35 + 3555: 32,-37 + 3556: 33,-36 + 3557: 33,-38 + 3558: 32,-36 + 3559: 31,-38 + 3560: 47,-36 + 3561: 47,-35 + 3562: 49,-35 + 3563: 49,-37 + 3564: 47,-37 + 3565: 47,-38 + 3566: 49,-38 + 3567: 47,-39 + 3568: 24,-29 + 3569: 26,-29 + 3570: 27,-29 + 3571: 28,-29 + 3572: 25,-34 + 3573: 27,-34 + 3574: 28,-34 + 3575: 26,-34 + 3576: 28,-43 + 3577: 29,-43 + 3578: 28,-45 + 3579: 29,-45 + 3580: 28,-46 + 3581: 29,-46 + 3582: 19,-46 + 3583: 18,-46 + 3584: 18,-47 + 3585: 19,-49 + 3586: 19,-49 + 3587: 18,-50 + 3588: 19,-50 + 3589: 18,-48 + 3590: 16,-48 + 3591: 14,-48 + 3592: 12,-47 + 3593: 10,-40 + 3594: 11,-39 + 3595: 11,-40 + 3596: 11,-40 + 3597: 8,-31 + 3598: 8,-31 + 3599: 5,-14 + 3600: 6,-14 + 3601: 6,-15 + 3602: 5,-15 + 3603: 4,-15 + 3604: 4,-15 + 3605: 25,7 + 3606: 20,16 + 3607: 20,18 + 3608: 15,26 + 3609: 14,26 + 3610: 13,26 + 3611: 13,26 + 3612: -44,10 + 3613: -45,10 + 3614: -46,10 + 3615: -47,10 + 3616: -49,10 + 3617: -50,10 + 3618: -50,12 + 3619: -47,12 + 3620: -48,1 + 3621: -47,1 + 3622: -48,-41 + 3623: -38,-56 + 3624: -38,-56 + 3625: -42,-57 + 3626: -55,-57 + 3758: -50,0 + 3759: -50,2 + 3760: -48,2 + 3761: -46,2 + 3762: -45,2 + 3763: -44,0 + 3764: -46,0 + 3765: -48,0 + 3797: -51,3 + 3798: -49,3 + 3799: -47,3 + 3800: -45,3 + 3801: -44,5 + 3802: -46,5 + 3803: -48,5 + 3804: -50,5 + 3805: -50,-1 + 3806: -49,-1 + 3807: -47,-1 + 3808: -46,-1 + 3809: -44,-1 + 3810: -44,-3 + 3811: -46,-3 + 3812: -47,-3 + 3813: -49,-3 + 3814: -50,-3 + 3815: -48,-3 + 3816: -46,-3 + 3817: -48,3 + 3818: -46,3 + 3898: -21,6 + 3899: -21,7 + 3900: -22,6 + 3901: -21,7 + 4098: 19,1 + 4099: 21,1 + 4100: 22,1 + 4101: 23,1 + 4102: 23,1 + 4167: 40,-22 + 4168: 41,-22 + 4169: 43,-22 + 4170: 44,-22 + 4229: 61,-25 + 4230: 62,-25 + 4231: 62,-26 + 4236: 68,-23 + 4259: 68,-15 + 4260: 68,-13 + 4261: 68,-14 + 4262: 67,-12 + 4263: 70,-12 + 4264: 70,-14 + 4265: 68,-11 + 4266: 71,-12 + 4267: 70,-14 + 4268: 70,-15 + 4269: 71,-13 + 4270: 69,-13 + 4271: 69,-12 + 4272: 68,-10 + 4273: 67,-10 + 4274: 68,-8 + 4275: 69,-8 + 4276: 70,-9 + 4277: 70,-10 + 4371: 39,-34 + 4372: 40,-34 + 4373: 39,-34 + 4374: 42,-34 + 4375: 40,-34 + 4376: 41,-33 + 4377: 34,-36 + 4378: 34,-35 + 4379: 35,-36 + 4380: 38,-37 + 4381: 43,-37 + 4382: 43,-37 + 4383: 46,-37 + 4384: 46,-35 + 4385: 46,-37 + 4386: 47,-37 + 4387: 48,-36 + 4388: 48,-37 + 4389: 46,-39 + 4390: 44,-39 + 4391: 41,-39 + 4392: 37,-39 + 4393: 35,-39 + 4394: 39,-38 + 4395: 33,-38 + 4695: -20,6 + 4696: -20,7 + 4697: -21,6 + 4698: -20,7 + 4699: -20,6 + 4700: -21,12 + 4701: -25,29 + 4702: -25,28 + 4703: -26,30 + 4704: -26,28 + 4705: -26,29 + 4729: -16,40 + 4730: -17,41 + 4731: -15,39 + 4732: -13,41 + 4733: -12,39 + 4784: -2,46 + 4785: -4,46 + 4786: -1,48 + 4787: 0,47 + 4788: -3,50 + 4789: 0,51 + 4790: 2,47 + 4791: 2,45 + 4792: 2,43 + 4793: 2,40 + 4794: -6,40 + 4795: -7,40 + 4796: -7,40 + 4797: -4,46 + 4798: -5,45 + 4799: -6,46 + 4800: 7,41 + 4801: 6,42 + 4802: 9,40 + 4803: 6,39 + 4804: 8,40 + 4805: 6,39 + 4806: 8,39 + 4807: 7,42 + 4808: 7,41 + 4809: 5,41 + 4840: 14,34 + 4841: 13,36 + 4842: 14,37 + 4843: 16,37 + 4844: 14,36 + 4845: 5,30 + 4846: 4,30 + 4847: 3,32 + 4848: 5,32 + 4849: 5,32 + 4850: 4,31 + 4851: 4,31 + 4852: 3,32 + 4853: 3,28 + 4854: 2,27 + 4855: 1,28 + 4856: 3,27 + 4857: 4,26 + 4858: 3,25 + 4859: 4,24 + 4860: 3,23 + 4861: 1,24 + 4862: 2,23 + 4880: -3,25 + 4881: -4,23 + 4882: -2,23 + 4883: -3,24 + 4884: 0,24 + 4885: 0,23 + 4886: -16,29 + 4887: -15,26 + 4888: -15,28 + 4889: -13,28 + 4890: -13,29 + 4891: -9,28 + 4892: -10,26 + 4893: -9,27 + 4894: -11,28 + 4895: -8,29 + 4896: -9,26 + 4897: -6,27 + 4898: -6,26 + 4899: -6,28 + 4900: -3,29 + 4901: -4,27 + 4902: -1,28 + 4903: -3,29 + 4904: -2,30 + 4905: -3,32 + 4906: -2,33 + 4907: -2,34 + 4908: -8,33 + 4909: -7,32 + 4910: -8,32 + 4911: -9,33 + 4912: -6,34 + 4913: -6,33 + 4914: -13,34 + 4982: -17,-28 + 4983: -19,-28 + 4984: -20,-27 + 4985: -20,-26 + 4986: -20,-27 + 4987: -15,-28 + 4988: -14,-28 + 4989: -14,-27 + 4990: -14,-29 + 4991: -17,-29 + 5053: -14,-38 + 5054: -14,-38 + 5072: -6,-37 + 5073: -5,-37 + 5074: -4,-37 + 5260: 78,-28 + 5261: 79,-28 + 5262: 78,-28 + 5263: 78,-27 + 5264: 78,-29 + 5326: 13,-45 + 5327: 12,-45 + 5328: 12,-50 + 5329: 12,-49 + 5330: 16,-49 + 5331: 15,-49 + 6134: 81,-34 + 6135: 82,-35 + 6136: 81,-35 + 6137: 81,-35 + 6163: -2,41 + 6164: -2,42 + 6165: -3,42 + 6166: -3,42 + 6167: -1,43 + 6189: 46,15 + 6190: 47,15 + 6191: 47,15 + 6192: 45,16 + 6404: 49,-1 + 6405: 51,-1 + 6406: 50,-2 + 6407: 49,-3 + 6408: 49,-5 + 6409: 51,-5 + 6410: 51,-3 + 6411: 50,-8 + 6412: 49,-8 + 6413: 48,-7 + 6414: 52,-8 + 6415: 54,-7 + 6416: 49,-10 + 6417: 50,-11 + 6418: 48,-11 + 6419: 51,-10 + 6420: 51,-11 + 6421: 52,-11 + 6422: 53,-11 + 6447: 50,2 + 6448: 50,4 + 6449: 50,9 + 6450: 50,12 + 6451: 50,13 + 6452: 47,9 + 6453: 47,7 + 6454: 41,8 + 6455: 41,7 + 6456: 40,8 + 6457: 40,7 + 6458: 44,8 + 6480: 46,4 + 6481: 45,4 + 6482: 46,2 + 6483: 45,2 + 6484: 45,1 + 6485: 46,5 + 6486: 40,5 + 6487: 44,4 + 6488: 44,7 + 6489: 55,3 + 6490: 54,2 + 6491: 53,3 + 6492: 55,4 + 6493: 57,4 + 6494: 56,2 + 6495: 55,1 + 6496: 55,6 + 6497: 53,7 + 6498: 53,6 + 6499: 55,8 + 6500: 56,10 + 6501: 55,10 + 6502: 53,12 + 6503: 53,11 + 6504: 57,14 + 6514: -1,-23 + 6515: 0,-23 + 6516: -4,-23 + 6517: -5,-23 + 6518: 35,19 + 6519: 34,19 + 6520: 35,20 + 6521: -8,27 + 6522: -12,27 + 6523: -10,27 + 6524: -14,27 + 6525: -15,27 + 6526: -15,27 + 6560: 88,-18 + 6561: 87,-18 + 6562: 91,-19 + 6563: 91,-18 + 6564: 92,-19 + 6646: 51,-36 + 6647: 51,-37 + 6648: 53,-39 + 6649: 54,-40 + 6650: 51,-35 + 6657: 51,-29 + 6663: 51,-26 + 6664: 52,-27 + 6682: -32,-12 + 6683: -34,-11 + 6684: -32,-10 + 6685: -33,-9 + 6686: -34,-9 + 6690: 61,-21 + 6691: -24,-42 + 6693: -25,-42 + 6694: -22,-42 + 6695: -22,-42 + 6702: -37,-45 + 6703: -38,-44 + 6704: -38,-46 + 6705: -37,-46 + 6796: 13,41 + 6797: 15,39 + 6798: 16,41 + 6834: 33,-2 + 6835: 34,-2 + 6836: 34,-2 + 6854: 7,-47 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 3011: -44,17 - 6640: 13,-30 - 6641: 16,-30 - 6642: 12,-30 - 6643: 12,-30 + 2990: -44,17 + 6611: 13,-30 + 6612: 16,-30 + 6613: 12,-30 + 6614: 12,-30 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtLight decals: - 6615: 89,-21 - 6616: 90,-20 + 6586: 89,-21 + 6587: 90,-20 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 6534: 57,4 - 6535: 57,2 - 6536: 54,3 - 6537: 56,1 - 6538: 49,-15 - 6539: 52,-15 - 6540: 43,4 - 6730: -36,-44 - 6828: 14,42 - 6829: 14,40 - 6830: 16,42 + 6505: 57,4 + 6506: 57,2 + 6507: 54,3 + 6508: 56,1 + 6509: 49,-15 + 6510: 52,-15 + 6511: 43,4 + 6701: -36,-44 + 6799: 14,42 + 6800: 14,40 + 6801: 16,42 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 3010: -44,16 + 2989: -44,16 - node: cleanable: True color: '#FFFFFF47' id: DirtMedium decals: - 6648: 11,-29 - 6649: 11,-29 + 6619: 11,-29 + 6620: 11,-29 - node: cleanable: True angle: -6.283185307179586 rad color: '#FFFFFFFF' id: DirtMedium decals: - 6618: 91,-21 - 6619: 90,-21 + 6589: 91,-21 + 6590: 90,-21 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 3951: -16,11 - 3952: -17,12 - 6687: 52,-30 - 6716: -32,-9 - 6717: -34,-12 - 6729: -36,-46 - 6831: 13,39 - 6832: 13,42 - 6833: 16,40 - 6834: 13,38 - 6835: 13,38 - 6885: 9,-47 + 3928: -16,11 + 3929: -17,12 + 6658: 52,-30 + 6687: -32,-9 + 6688: -34,-12 + 6700: -36,-46 + 6802: 13,39 + 6803: 13,42 + 6804: 16,40 + 6805: 13,38 + 6806: 13,38 + 6856: 9,-47 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtMedium decals: - 3009: -44,15 + 2988: -44,15 - node: color: '#FFFFFFFF' id: FlowersBROne decals: 880: -47,-2 907: -50,-7 - 1938: 56,-22 + 1936: 56,-22 - node: color: '#FFFFFFFF' id: FlowersBRThree @@ -6428,7 +6461,7 @@ entities: color: '#FFFFFFFF' id: FlowersBRThree decals: - 3043: 80.70172,-6.173584 + 3022: 80.70172,-6.173584 - node: color: '#FFFFFFFF' id: FlowersBRTwo @@ -6441,25 +6474,26 @@ entities: decals: 911: -45,-7 932: -49,-29 - 1500: -51,-49 + 1498: -51,-49 + 6898: 57.036556,-21.73806 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1110: 42,-31 + 1108: 42,-31 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 879: -49,-2 912: -51,-7 - 1501: -49,-49 + 1499: -49,-49 - node: cleanable: True color: '#FFFFFFFF' id: Flowerspv1 decals: - 3044: 80.04127,-7.0725327 + 3023: 80.04127,-7.0725327 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -6467,13 +6501,13 @@ entities: 540: -39,6 561: -24,4 909: -48,-9 - 1109: 42,-30 - 1747: 57,18 + 1107: 42,-30 + 1745: 57,18 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 1937: 55,-23 + 1935: 55,-23 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -6481,37 +6515,37 @@ entities: 539: -38,5 910: -45,-9 933: -48,-30 - 1502: -46,-49 + 1500: -46,-49 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy2 decals: - 3045: 81.08699,-7.6962934 + 3024: 81.08699,-7.6962934 - node: color: '#FFFFFFFF' id: Flowersy3 decals: 877: -50,4 908: -47,-7 - 2253: 25,1 + 2232: 25,1 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 542: -28,7 - 1730: 59,19 + 1728: 59,19 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 6197: 43,13 + 6168: 43,13 - node: cleanable: True color: '#FFFFFFFF' id: Grassa2 decals: - 3033: 80,-6 + 3012: 80,-6 - node: color: '#FFFFFFFF' id: Grassa3 @@ -6521,21 +6555,21 @@ entities: color: '#FFFFFFFF' id: Grassa4 decals: - 1494: -47,-49 - 1944: 53.52114,-21.634073 + 1492: -47,-49 + 1942: 53.52114,-21.634073 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 3032: 80,-8 + 3011: 80,-8 - node: color: '#FFFFFFFF' id: Grassa5 decals: 898: -49,-7 - 1495: -45,-49 - 1945: 57.536766,-22.899698 + 1493: -45,-49 + 1943: 57.536766,-22.899698 - node: color: '#FFFFFFFF' id: Grassb1 @@ -6546,7 +6580,7 @@ entities: id: Grassb2 decals: 937: -49,-28 - 1731: 60,19 + 1729: 60,19 - node: color: '#FFFFFFFF' id: Grassb3 @@ -6558,13 +6592,14 @@ entities: id: Grassb4 decals: 897: -48,-9 - 1493: -50,-49 - 1943: 54.661766,-23.446573 + 1491: -50,-49 + 1941: 54.661766,-23.446573 - node: color: '#FFFFFFFF' id: Grassb5 decals: 903: -50,-9 + 6896: 56.88979,-22.312899 - node: color: '#FFFFFFFF' id: Grassc1 @@ -6575,7 +6610,7 @@ entities: color: '#FFFFFFFF' id: Grassc1 decals: - 3035: 79.637665,-6.118546 + 3014: 79.637665,-6.118546 - node: color: '#FFFFFFFF' id: Grassc2 @@ -6586,7 +6621,7 @@ entities: color: '#FFFFFFFF' id: Grassc2 decals: - 3036: 81.362175,-7.1642623 + 3015: 81.362175,-7.1642623 - node: color: '#FFFFFFFF' id: Grassc4 @@ -6598,7 +6633,7 @@ entities: color: '#FFFFFFFF' id: Grassc4 decals: - 3034: 79.56428,-7.366067 + 3013: 79.56428,-7.366067 - node: color: '#FFFFFFFF' id: Grassd1 @@ -6610,27 +6645,28 @@ entities: color: '#FFFFFFFF' id: Grassd1 decals: - 3037: 79.14232,-8.063211 + 3016: 79.14232,-8.063211 - node: color: '#FFFFFFFF' id: Grassd2 decals: 891: -45,-9 - 1947: 53.52114,-22.368448 + 1945: 53.52114,-22.368448 + 6897: 57.379013,-21.12653 - node: color: '#FFFFFFFF' id: Grassd3 decals: 890: -48,-7 935: -48,-27 - 1948: 57.73989,-21.884073 + 1946: 57.73989,-21.884073 - node: cleanable: True color: '#FFFFFFFF' id: Grassd3 decals: - 3038: 79.05059,-6.320351 - 3039: 80.53661,-6.6872687 + 3017: 79.05059,-6.320351 + 3018: 80.53661,-6.6872687 - node: color: '#FFFFFFFF' id: Grasse1 @@ -6642,32 +6678,32 @@ entities: color: '#FFFFFFFF' id: Grasse1 decals: - 3042: 81.784134,-6.4304266 + 3021: 81.784134,-6.4304266 - node: cleanable: True color: '#FFFFFFFF' id: Grasse2 decals: - 3040: 80.518265,-8.02652 + 3019: 80.518265,-8.02652 - node: color: '#FFFFFFFF' id: Grasse3 decals: 887: -50,-7 934: -47,-30 - 1748: 57,19 - 1946: 55.95864,-23.352823 + 1746: 57,19 + 1944: 55.95864,-23.352823 - node: cleanable: True color: '#FFFFFFFF' id: Grasse3 decals: - 3041: 80.72007,-6.0451627 + 3020: 80.72007,-6.0451627 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 6267: 44,7 + 6238: 44,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -6679,8 +6715,8 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1189: 4,30 - 1190: 5,30 + 1187: 4,30 + 1188: 5,30 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -6714,7 +6750,7 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 6268: 44,9 + 6239: 44,9 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -6725,8 +6761,8 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 1191: 4,32 - 1192: 5,32 + 1189: 4,32 + 1190: 5,32 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -6738,12 +6774,12 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 6269: 45,8 + 6240: 45,8 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 1188: 6,31 + 1186: 6,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -6753,7 +6789,7 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 6270: 43,8 + 6241: 43,8 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -6768,7 +6804,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 1187: 3,31 + 1185: 3,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -6799,70 +6835,70 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 6607: 89,-20 - 6608: 90,-20 + 6578: 89,-20 + 6579: 90,-20 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1791: 58,-24 - 1792: 58,-23 - 2186: -4,-36 - 2204: -56,-59 - 2205: -56,-66 + 1789: 58,-24 + 1790: 58,-23 + 2165: -4,-36 + 2183: -56,-59 + 2184: -56,-66 - node: color: '#FFFFFFFF' id: LoadingArea decals: 352: 39,-22 - 3171: 25,22 - 3172: 29,22 - 6176: -44,24 + 3150: 25,22 + 3151: 29,22 + 6147: -44,24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2220: -40,-59 - 2221: -40,-66 - 6177: -45,23 + 2199: -40,-59 + 2200: -40,-66 + 6148: -45,23 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: 351: 45,-22 - 1772: 63,-26 - 6178: -44,22 + 1770: 63,-26 + 6149: -44,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1273: 23,12 - 6179: -43,23 + 1271: 23,12 + 6150: -43,23 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 2238: 13,25 - 2239: 14,25 - 2240: 15,25 - 2241: 15,24 - 2242: 15,23 - 2243: 14,23 - 2244: 14,24 - 2245: 13,24 - 2246: 13,23 + 2217: 13,25 + 2218: 14,25 + 2219: 15,25 + 2220: 15,24 + 2221: 15,23 + 2222: 14,23 + 2223: 14,24 + 2224: 13,24 + 2225: 13,23 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 6759: 9,39 - 6760: 9,40 - 6761: 9,41 - 6762: 9,42 + 6730: 9,39 + 6731: 9,40 + 6732: 9,41 + 6733: 9,42 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN @@ -6877,7 +6913,7 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3278: -19,20 + 3257: -19,20 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS @@ -6892,649 +6928,649 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 6763: 5,39 - 6764: 5,40 - 6765: 5,41 - 6766: 5,42 + 6734: 5,39 + 6735: 5,40 + 6736: 5,41 + 6737: 5,42 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerNe decals: - 2424: -43,-25 - 2510: -40,-46 + 2403: -43,-25 + 2489: -40,-46 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerNw decals: - 2324: -26,-9 - 2368: -55,7 - 2509: -56,-46 - 2610: 27,-19 - 2820: -27,21 + 2303: -26,-9 + 2347: -55,7 + 2488: -56,-46 + 2589: 27,-19 + 2799: -27,21 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerSe decals: - 2312: -23,-11 - 2436: -46,-33 - 2440: -43,-32 + 2291: -23,-11 + 2415: -46,-33 + 2419: -43,-32 - node: color: '#9D9D97FF' id: MiniTileWhiteCornerSw decals: - 2432: -52,-32 - 2435: -50,-33 - 2586: 7,-34 - 2690: 40,1 - 2719: 19,2 + 2411: -52,-32 + 2414: -50,-33 + 2565: 7,-34 + 2669: 40,1 + 2698: 19,2 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerNe decals: - 2287: -23,-30 - 2336: -25,9 - 2425: -44,-25 - 2555: -28,-30 - 2838: 77,-19 - 2839: 77,-15 + 2266: -23,-30 + 2315: -25,9 + 2404: -44,-25 + 2534: -28,-30 + 2817: 77,-19 + 2818: 77,-15 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerNw decals: - 2325: -25,-9 - 2554: -41,-30 - 2602: 27,-25 - 2654: 57,-19 + 2304: -25,-9 + 2533: -41,-30 + 2581: 27,-25 + 2633: 57,-19 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerSe decals: - 2311: -24,-11 - 2437: -46,-32 - 2443: -47,-33 - 2508: -54,-48 - 2553: -28,-27 - 2658: 59,-21 - 2836: 77,-13 - 2837: 77,-17 + 2290: -24,-11 + 2416: -46,-32 + 2422: -47,-33 + 2487: -54,-48 + 2532: -28,-27 + 2637: 59,-21 + 2815: 77,-13 + 2816: 77,-17 - node: color: '#9D9D97FF' id: MiniTileWhiteInnerSw decals: - 2434: -50,-32 - 2444: -49,-33 - 2507: -42,-48 - 2552: -41,-27 - 2584: 7,-32 - 2663: 52,-21 - 2689: 41,1 - 2691: 40,2 - 2759: 19,19 + 2413: -50,-32 + 2423: -49,-33 + 2486: -42,-48 + 2531: -41,-27 + 2563: 7,-32 + 2642: 52,-21 + 2668: 41,1 + 2670: 40,2 + 2738: 19,19 - node: color: '#9D9D97FF' id: MiniTileWhiteLineE decals: - 2288: -23,-29 - 2289: -24,-25 - 2290: -24,-24 - 2291: -24,-23 - 2292: -24,-23 - 2293: -24,-20 - 2294: -24,-20 - 2295: -24,-20 - 2296: -24,-21 - 2297: -24,-21 - 2298: -24,-20 - 2299: -24,-19 - 2300: -24,-19 - 2301: -24,-19 - 2302: -24,-17 - 2303: -24,-17 - 2304: -24,-16 - 2305: -24,-16 - 2306: -24,-16 - 2307: -24,-15 - 2308: -24,-14 - 2309: -24,-14 - 2310: -24,-13 - 2313: -23,-10 - 2314: -23,-9 - 2315: -23,-8 - 2326: -25,4 - 2327: -25,5 - 2328: -25,6 - 2329: -25,7 - 2341: -43,0 - 2342: -43,1 - 2343: -43,2 - 2344: -43,3 - 2345: -43,-1 - 2384: -53,-6 - 2385: -53,-7 - 2386: -53,-7 - 2387: -53,-8 - 2388: -53,-9 - 2389: -53,-9 - 2390: -53,-10 - 2391: -53,-12 - 2399: -53,-13 - 2400: -53,-13 - 2401: -53,-15 - 2402: -53,-15 - 2403: -53,-15 - 2405: -53,-14 - 2406: -53,-16 - 2407: -53,-17 - 2408: -53,-18 - 2414: -44,-20 - 2415: -44,-21 - 2416: -44,-22 - 2417: -44,-22 - 2418: -44,-23 - 2419: -44,-23 - 2420: -44,-24 - 2421: -43,-25 - 2422: -43,-26 - 2423: -43,-27 - 2441: -43,-31 - 2442: -43,-30 - 2447: -47,-35 - 2448: -47,-36 - 2449: -47,-36 - 2450: -47,-38 - 2451: -47,-39 - 2452: -47,-40 - 2463: -47,-41 - 2464: -47,-42 - 2465: -47,-42 - 2466: -47,-43 - 2467: -47,-44 - 2468: -47,-44 - 2519: -40,-47 - 2520: -40,-48 - 2521: -40,-50 - 2522: -40,-50 - 2523: -40,-51 - 2524: -40,-51 - 2525: -40,-51 - 2526: -40,-52 - 2527: -40,-53 - 2528: -40,-53 - 2529: -40,-53 - 2530: -40,-54 - 2531: -54,-51 - 2532: -54,-51 - 2533: -54,-52 - 2534: -54,-52 - 2535: -54,-53 - 2536: -54,-53 - 2537: -54,-54 - 2548: -28,-29 - 2549: -28,-28 - 2659: 59,-22 - 2664: 43,-17 - 2665: 43,-16 - 2666: 43,-15 - 2667: 43,-15 - 2673: 43,-12 - 2674: 43,-11 - 2739: 21,10 - 2740: 21,11 - 2741: 21,11 - 2742: 21,12 - 2743: 21,12 - 2744: 21,12 - 2745: 21,13 - 2746: 21,14 - 2747: 21,15 - 2834: 77,-14 - 2835: 77,-18 - 3170: -54,-50 - 6848: -24,-18 + 2267: -23,-29 + 2268: -24,-25 + 2269: -24,-24 + 2270: -24,-23 + 2271: -24,-23 + 2272: -24,-20 + 2273: -24,-20 + 2274: -24,-20 + 2275: -24,-21 + 2276: -24,-21 + 2277: -24,-20 + 2278: -24,-19 + 2279: -24,-19 + 2280: -24,-19 + 2281: -24,-17 + 2282: -24,-17 + 2283: -24,-16 + 2284: -24,-16 + 2285: -24,-16 + 2286: -24,-15 + 2287: -24,-14 + 2288: -24,-14 + 2289: -24,-13 + 2292: -23,-10 + 2293: -23,-9 + 2294: -23,-8 + 2305: -25,4 + 2306: -25,5 + 2307: -25,6 + 2308: -25,7 + 2320: -43,0 + 2321: -43,1 + 2322: -43,2 + 2323: -43,3 + 2324: -43,-1 + 2363: -53,-6 + 2364: -53,-7 + 2365: -53,-7 + 2366: -53,-8 + 2367: -53,-9 + 2368: -53,-9 + 2369: -53,-10 + 2370: -53,-12 + 2378: -53,-13 + 2379: -53,-13 + 2380: -53,-15 + 2381: -53,-15 + 2382: -53,-15 + 2384: -53,-14 + 2385: -53,-16 + 2386: -53,-17 + 2387: -53,-18 + 2393: -44,-20 + 2394: -44,-21 + 2395: -44,-22 + 2396: -44,-22 + 2397: -44,-23 + 2398: -44,-23 + 2399: -44,-24 + 2400: -43,-25 + 2401: -43,-26 + 2402: -43,-27 + 2420: -43,-31 + 2421: -43,-30 + 2426: -47,-35 + 2427: -47,-36 + 2428: -47,-36 + 2429: -47,-38 + 2430: -47,-39 + 2431: -47,-40 + 2442: -47,-41 + 2443: -47,-42 + 2444: -47,-42 + 2445: -47,-43 + 2446: -47,-44 + 2447: -47,-44 + 2498: -40,-47 + 2499: -40,-48 + 2500: -40,-50 + 2501: -40,-50 + 2502: -40,-51 + 2503: -40,-51 + 2504: -40,-51 + 2505: -40,-52 + 2506: -40,-53 + 2507: -40,-53 + 2508: -40,-53 + 2509: -40,-54 + 2510: -54,-51 + 2511: -54,-51 + 2512: -54,-52 + 2513: -54,-52 + 2514: -54,-53 + 2515: -54,-53 + 2516: -54,-54 + 2527: -28,-29 + 2528: -28,-28 + 2638: 59,-22 + 2643: 43,-17 + 2644: 43,-16 + 2645: 43,-15 + 2646: 43,-15 + 2652: 43,-12 + 2653: 43,-11 + 2718: 21,10 + 2719: 21,11 + 2720: 21,11 + 2721: 21,12 + 2722: 21,12 + 2723: 21,12 + 2724: 21,13 + 2725: 21,14 + 2726: 21,15 + 2813: 77,-14 + 2814: 77,-18 + 3149: -54,-50 + 6819: -24,-18 - node: color: '#9D9D97FF' id: MiniTileWhiteLineN decals: - 2281: -22,-30 - 2282: -21,-30 - 2283: -20,-30 - 2284: -20,-30 - 2285: -18,-30 - 2286: -19,-30 - 2330: -19,9 - 2331: -20,9 - 2332: -21,9 - 2333: -22,9 - 2334: -24,9 - 2335: -23,9 - 2355: -51,7 - 2356: -50,7 - 2357: -49,7 - 2358: -48,7 - 2359: -47,7 - 2360: -47,7 - 2361: -46,7 - 2362: -45,7 - 2363: -42,7 - 2364: -43,7 - 2365: -54,7 - 2366: -55,7 - 2367: -53,7 - 2469: -54,-46 - 2470: -51,-46 - 2471: -50,-46 - 2472: -50,-46 - 2473: -51,-46 - 2474: -53,-46 - 2475: -54,-46 - 2476: -54,-46 - 2477: -53,-46 - 2478: -52,-46 - 2479: -54,-46 - 2480: -55,-46 - 2481: -46,-46 - 2482: -45,-46 - 2483: -45,-46 - 2484: -44,-46 - 2485: -44,-46 - 2486: -43,-46 - 2487: -43,-46 - 2488: -42,-46 - 2489: -42,-46 - 2490: -41,-46 - 2574: -11,-30 - 2575: -10,-30 - 2576: -10,-30 - 2600: 25,-25 - 2601: 26,-25 - 2611: 28,-19 - 2612: 29,-19 - 2613: 29,-19 - 2614: 31,-19 - 2615: 31,-19 - 2616: 32,-19 - 2617: 32,-19 - 2618: 32,-19 - 2619: 34,-19 - 2620: 34,-19 - 2621: 34,-19 - 2622: 33,-19 - 2623: 35,-19 - 2624: 35,-19 - 2625: 36,-19 - 2626: 36,-19 - 2627: 37,-19 - 2628: 37,-19 - 2629: 39,-19 - 2630: 39,-19 - 2631: 40,-19 - 2632: 40,-19 - 2633: 40,-19 - 2634: 41,-19 - 2635: 42,-19 - 2636: 42,-19 - 2637: 43,-19 - 2638: 44,-19 - 2639: 44,-19 - 2640: 45,-19 - 2641: 47,-19 - 2642: 47,-19 - 2643: 48,-19 - 2644: 49,-19 - 2645: 49,-19 - 2646: 50,-19 - 2647: 51,-19 - 2648: 52,-19 - 2649: 52,-19 - 2650: 54,-19 - 2651: 55,-19 - 2652: 56,-19 - 2653: 53,-19 - 2696: 37,4 - 2697: 35,4 - 2698: 34,4 - 2699: 33,4 - 2700: 32,4 - 2701: 32,4 - 2702: 31,4 - 2762: 20,21 - 2763: 19,21 - 2764: 19,21 - 2765: 18,21 - 2766: 16,21 - 2767: 16,21 - 2768: 16,21 - 2769: 16,21 - 2770: 15,21 - 2771: 13,21 - 2772: 13,21 - 2773: 12,21 - 2774: 11,21 - 2775: 10,21 - 2776: 10,21 - 2777: 9,21 - 2778: 8,21 - 2817: -26,21 - 2827: 66,-17 - 2828: 68,-17 - 2829: 67,-17 - 2830: 69,-17 - 2831: 70,-17 - 2832: 70,-17 - 2833: 71,-17 + 2260: -22,-30 + 2261: -21,-30 + 2262: -20,-30 + 2263: -20,-30 + 2264: -18,-30 + 2265: -19,-30 + 2309: -19,9 + 2310: -20,9 + 2311: -21,9 + 2312: -22,9 + 2313: -24,9 + 2314: -23,9 + 2334: -51,7 + 2335: -50,7 + 2336: -49,7 + 2337: -48,7 + 2338: -47,7 + 2339: -47,7 + 2340: -46,7 + 2341: -45,7 + 2342: -42,7 + 2343: -43,7 + 2344: -54,7 + 2345: -55,7 + 2346: -53,7 + 2448: -54,-46 + 2449: -51,-46 + 2450: -50,-46 + 2451: -50,-46 + 2452: -51,-46 + 2453: -53,-46 + 2454: -54,-46 + 2455: -54,-46 + 2456: -53,-46 + 2457: -52,-46 + 2458: -54,-46 + 2459: -55,-46 + 2460: -46,-46 + 2461: -45,-46 + 2462: -45,-46 + 2463: -44,-46 + 2464: -44,-46 + 2465: -43,-46 + 2466: -43,-46 + 2467: -42,-46 + 2468: -42,-46 + 2469: -41,-46 + 2553: -11,-30 + 2554: -10,-30 + 2555: -10,-30 + 2579: 25,-25 + 2580: 26,-25 + 2590: 28,-19 + 2591: 29,-19 + 2592: 29,-19 + 2593: 31,-19 + 2594: 31,-19 + 2595: 32,-19 + 2596: 32,-19 + 2597: 32,-19 + 2598: 34,-19 + 2599: 34,-19 + 2600: 34,-19 + 2601: 33,-19 + 2602: 35,-19 + 2603: 35,-19 + 2604: 36,-19 + 2605: 36,-19 + 2606: 37,-19 + 2607: 37,-19 + 2608: 39,-19 + 2609: 39,-19 + 2610: 40,-19 + 2611: 40,-19 + 2612: 40,-19 + 2613: 41,-19 + 2614: 42,-19 + 2615: 42,-19 + 2616: 43,-19 + 2617: 44,-19 + 2618: 44,-19 + 2619: 45,-19 + 2620: 47,-19 + 2621: 47,-19 + 2622: 48,-19 + 2623: 49,-19 + 2624: 49,-19 + 2625: 50,-19 + 2626: 51,-19 + 2627: 52,-19 + 2628: 52,-19 + 2629: 54,-19 + 2630: 55,-19 + 2631: 56,-19 + 2632: 53,-19 + 2675: 37,4 + 2676: 35,4 + 2677: 34,4 + 2678: 33,4 + 2679: 32,4 + 2680: 32,4 + 2681: 31,4 + 2741: 20,21 + 2742: 19,21 + 2743: 19,21 + 2744: 18,21 + 2745: 16,21 + 2746: 16,21 + 2747: 16,21 + 2748: 16,21 + 2749: 15,21 + 2750: 13,21 + 2751: 13,21 + 2752: 12,21 + 2753: 11,21 + 2754: 10,21 + 2755: 10,21 + 2756: 9,21 + 2757: 8,21 + 2796: -26,21 + 2806: 66,-17 + 2807: 68,-17 + 2808: 67,-17 + 2809: 69,-17 + 2810: 70,-17 + 2811: 70,-17 + 2812: 71,-17 - node: color: '#9D9D97FF' id: MiniTileWhiteLineS decals: - 2271: -25,-32 - 2272: -23,-32 - 2273: -24,-32 - 2274: -22,-32 - 2275: -22,-32 - 2276: -21,-32 - 2277: -19,-32 - 2278: -19,-32 - 2279: -18,-32 - 2280: -18,-32 - 2346: -45,-5 - 2347: -46,-5 - 2348: -47,-5 - 2349: -48,-5 - 2350: -48,-5 - 2351: -50,-5 - 2352: -50,-5 - 2353: -49,-5 - 2354: -51,-5 - 2433: -51,-32 - 2438: -45,-32 - 2439: -44,-32 - 2491: -53,-48 - 2492: -52,-48 - 2493: -51,-48 - 2494: -50,-48 - 2495: -50,-48 - 2496: -49,-48 - 2497: -50,-48 - 2498: -50,-48 - 2499: -48,-48 - 2500: -48,-48 - 2501: -47,-48 - 2502: -47,-48 - 2503: -46,-48 - 2504: -45,-48 - 2505: -44,-48 - 2506: -43,-48 - 2556: -16,-32 - 2557: -14,-32 - 2558: -14,-32 - 2559: -14,-32 - 2560: -15,-32 - 2561: -14,-32 - 2562: -14,-32 - 2563: -13,-32 - 2564: -12,-32 - 2565: -12,-32 - 2566: -11,-32 - 2567: -11,-32 - 2568: -10,-32 - 2569: -10,-32 - 2570: -7,-32 - 2571: -6,-32 - 2572: -5,-32 - 2573: -5,-32 - 2577: -4,-32 - 2578: -3,-32 - 2579: -3,-32 - 2580: -3,-32 - 2581: -2,-32 - 2582: 3,-32 - 2583: 6,-32 - 2587: 8,-34 - 2588: 9,-34 - 2589: 9,-34 - 2590: 11,-34 - 2591: 11,-34 - 2592: 12,-34 - 2593: 12,-34 - 2594: 13,-34 - 2595: 13,-34 - 2596: 14,-34 - 2597: 15,-34 - 2598: 15,-34 - 2599: 16,-34 - 2657: 60,-21 - 2692: 38,2 - 2693: 36,2 - 2694: 37,2 - 2695: 38,2 - 2703: 34,2 - 2704: 33,2 - 2705: 32,2 - 2706: 31,2 - 2707: 31,2 - 2708: 27,2 - 2709: 26,2 - 2710: 26,2 - 2711: 25,2 - 2712: 24,2 - 2713: 23,2 - 2714: 23,2 - 2715: 21,2 - 2716: 21,2 - 2717: 22,2 - 2718: 20,2 - 2760: 18,19 - 2761: 16,19 - 2779: 14,19 - 2780: 13,19 - 2781: 12,19 - 2782: 11,19 - 2783: 10,19 - 2784: 10,19 - 2785: 9,19 - 2786: 9,19 - 2787: 8,19 - 2788: 6,19 - 2789: 6,19 - 2790: 7,19 - 2791: 5,19 - 2792: 0,19 - 2793: 0,19 - 2794: -1,19 - 2795: -1,19 - 2796: -2,19 - 2797: -3,19 - 2798: -3,19 - 2799: -4,19 - 2800: -5,19 - 2801: -6,19 - 2802: -6,19 - 2803: -7,19 - 2804: -7,19 - 2805: -8,19 - 2806: -8,19 - 2807: -8,19 - 2808: -11,19 - 2809: -11,19 - 2810: -13,19 - 2811: -13,19 - 2812: -14,19 - 2813: -12,19 - 2814: -16,19 - 2815: -16,19 - 2816: -18,19 - 2821: 66,-19 - 2822: 67,-19 - 2823: 68,-19 - 2824: 69,-19 - 2825: 70,-19 - 2826: 71,-19 - 3067: 1,19 - 3068: 2,19 + 2250: -25,-32 + 2251: -23,-32 + 2252: -24,-32 + 2253: -22,-32 + 2254: -22,-32 + 2255: -21,-32 + 2256: -19,-32 + 2257: -19,-32 + 2258: -18,-32 + 2259: -18,-32 + 2325: -45,-5 + 2326: -46,-5 + 2327: -47,-5 + 2328: -48,-5 + 2329: -48,-5 + 2330: -50,-5 + 2331: -50,-5 + 2332: -49,-5 + 2333: -51,-5 + 2412: -51,-32 + 2417: -45,-32 + 2418: -44,-32 + 2470: -53,-48 + 2471: -52,-48 + 2472: -51,-48 + 2473: -50,-48 + 2474: -50,-48 + 2475: -49,-48 + 2476: -50,-48 + 2477: -50,-48 + 2478: -48,-48 + 2479: -48,-48 + 2480: -47,-48 + 2481: -47,-48 + 2482: -46,-48 + 2483: -45,-48 + 2484: -44,-48 + 2485: -43,-48 + 2535: -16,-32 + 2536: -14,-32 + 2537: -14,-32 + 2538: -14,-32 + 2539: -15,-32 + 2540: -14,-32 + 2541: -14,-32 + 2542: -13,-32 + 2543: -12,-32 + 2544: -12,-32 + 2545: -11,-32 + 2546: -11,-32 + 2547: -10,-32 + 2548: -10,-32 + 2549: -7,-32 + 2550: -6,-32 + 2551: -5,-32 + 2552: -5,-32 + 2556: -4,-32 + 2557: -3,-32 + 2558: -3,-32 + 2559: -3,-32 + 2560: -2,-32 + 2561: 3,-32 + 2562: 6,-32 + 2566: 8,-34 + 2567: 9,-34 + 2568: 9,-34 + 2569: 11,-34 + 2570: 11,-34 + 2571: 12,-34 + 2572: 12,-34 + 2573: 13,-34 + 2574: 13,-34 + 2575: 14,-34 + 2576: 15,-34 + 2577: 15,-34 + 2578: 16,-34 + 2636: 60,-21 + 2671: 38,2 + 2672: 36,2 + 2673: 37,2 + 2674: 38,2 + 2682: 34,2 + 2683: 33,2 + 2684: 32,2 + 2685: 31,2 + 2686: 31,2 + 2687: 27,2 + 2688: 26,2 + 2689: 26,2 + 2690: 25,2 + 2691: 24,2 + 2692: 23,2 + 2693: 23,2 + 2694: 21,2 + 2695: 21,2 + 2696: 22,2 + 2697: 20,2 + 2739: 18,19 + 2740: 16,19 + 2758: 14,19 + 2759: 13,19 + 2760: 12,19 + 2761: 11,19 + 2762: 10,19 + 2763: 10,19 + 2764: 9,19 + 2765: 9,19 + 2766: 8,19 + 2767: 6,19 + 2768: 6,19 + 2769: 7,19 + 2770: 5,19 + 2771: 0,19 + 2772: 0,19 + 2773: -1,19 + 2774: -1,19 + 2775: -2,19 + 2776: -3,19 + 2777: -3,19 + 2778: -4,19 + 2779: -5,19 + 2780: -6,19 + 2781: -6,19 + 2782: -7,19 + 2783: -7,19 + 2784: -8,19 + 2785: -8,19 + 2786: -8,19 + 2787: -11,19 + 2788: -11,19 + 2789: -13,19 + 2790: -13,19 + 2791: -14,19 + 2792: -12,19 + 2793: -16,19 + 2794: -16,19 + 2795: -18,19 + 2800: 66,-19 + 2801: 67,-19 + 2802: 68,-19 + 2803: 69,-19 + 2804: 70,-19 + 2805: 71,-19 + 3046: 1,19 + 3047: 2,19 - node: color: '#9D9D97FF' id: MiniTileWhiteLineW decals: - 2254: -26,-21 - 2255: -26,-20 - 2256: -26,-18 - 2257: -26,-19 - 2258: -26,-17 - 2263: -26,-25 - 2264: -26,-24 - 2265: -26,-27 - 2266: -26,-26 - 2267: -26,-28 - 2268: -26,-29 - 2269: -26,-30 - 2270: -26,-31 - 2316: -25,-8 - 2317: -26,-10 - 2318: -26,-11 - 2319: -26,-16 - 2320: -26,-15 - 2321: -26,-15 - 2322: -26,-14 - 2323: -26,-13 - 2337: -27,7 - 2338: -27,8 - 2339: -27,6 - 2340: -27,5 - 2369: -55,5 - 2370: -55,3 - 2371: -55,2 - 2372: -55,1 - 2373: -55,0 - 2374: -55,-1 - 2375: -55,-3 - 2376: -55,-6 - 2377: -55,-6 - 2378: -55,-7 - 2379: -55,-7 - 2380: -55,-8 - 2381: -55,-9 - 2382: -55,-9 - 2383: -55,-11 - 2392: -55,-10 - 2393: -55,-11 - 2394: -55,-12 - 2395: -55,-13 - 2396: -55,-13 - 2397: -55,-15 - 2398: -55,-15 - 2404: -55,-14 - 2409: -55,-16 - 2410: -55,-17 - 2411: -55,-18 - 2412: -55,-20 - 2413: -55,-21 - 2426: -52,-28 - 2427: -52,-29 - 2428: -52,-30 - 2429: -52,-30 - 2430: -52,-31 - 2431: -52,-32 - 2445: -49,-35 - 2446: -49,-36 - 2453: -49,-38 - 2454: -49,-38 - 2455: -49,-39 - 2456: -49,-40 - 2457: -49,-40 - 2458: -49,-41 - 2459: -49,-42 - 2460: -49,-43 - 2461: -49,-43 - 2462: -49,-44 - 2511: -42,-50 - 2512: -42,-50 - 2513: -42,-51 - 2514: -42,-51 - 2515: -42,-52 - 2516: -42,-52 - 2517: -42,-53 - 2518: -42,-54 - 2538: -56,-54 - 2539: -56,-53 - 2540: -56,-52 - 2541: -56,-52 - 2542: -56,-51 - 2543: -56,-51 - 2544: -56,-48 - 2545: -56,-48 - 2546: -56,-47 - 2547: -56,-50 - 2550: -41,-29 - 2551: -41,-28 - 2585: 7,-33 - 2603: 27,-23 - 2604: 27,-23 - 2605: 27,-23 - 2606: 27,-22 - 2607: 27,-24 - 2608: 27,-21 - 2609: 27,-20 - 2655: 57,-18 - 2656: 57,-17 - 2660: 52,-24 - 2661: 52,-23 - 2662: 52,-22 - 2668: 41,-17 - 2669: 41,-16 - 2670: 41,-15 - 2671: 41,-12 - 2672: 41,-11 - 2675: 41,-9 - 2676: 41,-8 - 2677: 41,-7 - 2678: 41,-7 - 2679: 41,-6 - 2680: 41,-5 - 2681: 41,-5 - 2682: 41,-4 - 2683: 41,-3 - 2684: 41,-3 - 2685: 41,-1 - 2686: 41,-1 - 2687: 41,-1 - 2688: 41,-2 - 2720: 19,3 - 2721: 19,4 - 2722: 19,4 - 2723: 19,4 - 2724: 19,5 - 2725: 19,5 - 2726: 19,7 - 2727: 19,8 - 2728: 19,8 - 2729: 19,8 - 2730: 19,10 - 2731: 19,10 - 2732: 19,11 - 2733: 19,10 - 2734: 19,10 - 2735: 19,12 - 2736: 19,10 - 2737: 19,9 - 2738: 19,9 - 2748: 19,13 - 2749: 19,14 - 2750: 19,14 - 2751: 19,14 - 2752: 19,15 - 2753: 19,15 - 2754: 19,15 - 2755: 19,16 - 2756: 19,16 - 2757: 19,18 - 2758: 19,18 - 2818: -27,20 - 2819: -27,18 + 2233: -26,-21 + 2234: -26,-20 + 2235: -26,-18 + 2236: -26,-19 + 2237: -26,-17 + 2242: -26,-25 + 2243: -26,-24 + 2244: -26,-27 + 2245: -26,-26 + 2246: -26,-28 + 2247: -26,-29 + 2248: -26,-30 + 2249: -26,-31 + 2295: -25,-8 + 2296: -26,-10 + 2297: -26,-11 + 2298: -26,-16 + 2299: -26,-15 + 2300: -26,-15 + 2301: -26,-14 + 2302: -26,-13 + 2316: -27,7 + 2317: -27,8 + 2318: -27,6 + 2319: -27,5 + 2348: -55,5 + 2349: -55,3 + 2350: -55,2 + 2351: -55,1 + 2352: -55,0 + 2353: -55,-1 + 2354: -55,-3 + 2355: -55,-6 + 2356: -55,-6 + 2357: -55,-7 + 2358: -55,-7 + 2359: -55,-8 + 2360: -55,-9 + 2361: -55,-9 + 2362: -55,-11 + 2371: -55,-10 + 2372: -55,-11 + 2373: -55,-12 + 2374: -55,-13 + 2375: -55,-13 + 2376: -55,-15 + 2377: -55,-15 + 2383: -55,-14 + 2388: -55,-16 + 2389: -55,-17 + 2390: -55,-18 + 2391: -55,-20 + 2392: -55,-21 + 2405: -52,-28 + 2406: -52,-29 + 2407: -52,-30 + 2408: -52,-30 + 2409: -52,-31 + 2410: -52,-32 + 2424: -49,-35 + 2425: -49,-36 + 2432: -49,-38 + 2433: -49,-38 + 2434: -49,-39 + 2435: -49,-40 + 2436: -49,-40 + 2437: -49,-41 + 2438: -49,-42 + 2439: -49,-43 + 2440: -49,-43 + 2441: -49,-44 + 2490: -42,-50 + 2491: -42,-50 + 2492: -42,-51 + 2493: -42,-51 + 2494: -42,-52 + 2495: -42,-52 + 2496: -42,-53 + 2497: -42,-54 + 2517: -56,-54 + 2518: -56,-53 + 2519: -56,-52 + 2520: -56,-52 + 2521: -56,-51 + 2522: -56,-51 + 2523: -56,-48 + 2524: -56,-48 + 2525: -56,-47 + 2526: -56,-50 + 2529: -41,-29 + 2530: -41,-28 + 2564: 7,-33 + 2582: 27,-23 + 2583: 27,-23 + 2584: 27,-23 + 2585: 27,-22 + 2586: 27,-24 + 2587: 27,-21 + 2588: 27,-20 + 2634: 57,-18 + 2635: 57,-17 + 2639: 52,-24 + 2640: 52,-23 + 2641: 52,-22 + 2647: 41,-17 + 2648: 41,-16 + 2649: 41,-15 + 2650: 41,-12 + 2651: 41,-11 + 2654: 41,-9 + 2655: 41,-8 + 2656: 41,-7 + 2657: 41,-7 + 2658: 41,-6 + 2659: 41,-5 + 2660: 41,-5 + 2661: 41,-4 + 2662: 41,-3 + 2663: 41,-3 + 2664: 41,-1 + 2665: 41,-1 + 2666: 41,-1 + 2667: 41,-2 + 2699: 19,3 + 2700: 19,4 + 2701: 19,4 + 2702: 19,4 + 2703: 19,5 + 2704: 19,5 + 2705: 19,7 + 2706: 19,8 + 2707: 19,8 + 2708: 19,8 + 2709: 19,10 + 2710: 19,10 + 2711: 19,11 + 2712: 19,10 + 2713: 19,10 + 2714: 19,12 + 2715: 19,10 + 2716: 19,9 + 2717: 19,9 + 2727: 19,13 + 2728: 19,14 + 2729: 19,14 + 2730: 19,14 + 2731: 19,15 + 2732: 19,15 + 2733: 19,15 + 2734: 19,16 + 2735: 19,16 + 2736: 19,18 + 2737: 19,18 + 2797: -27,20 + 2798: -27,18 - node: color: '#52B4E996' id: MonoOverlay decals: - 6262: 44,8 + 6233: 44,8 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -7544,147 +7580,147 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 6264: 43,9 + 6235: 43,9 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 1525: -27,11 - 1526: -27,15 - 1527: -27,16 - 1528: -27,12 - 1529: -27,13 - 1530: -27,14 - 1636: -52,-26 - 1637: -52,-27 - 1638: -52,-25 - 1639: -52,-24 + 1523: -27,11 + 1524: -27,15 + 1525: -27,16 + 1526: -27,12 + 1527: -27,13 + 1528: -27,14 + 1634: -52,-26 + 1635: -52,-27 + 1636: -52,-25 + 1637: -52,-24 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1550: -17,-30 - 1551: -16,-30 - 1552: -15,-30 - 1553: -14,-30 - 1554: -13,-30 - 1616: 5,-27 - 1617: 5,-28 - 1618: 5,-29 - 1619: 5,-30 - 1620: 3,-30 - 1621: 2,-30 - 1622: 1,-30 - 1623: 0,-30 - 1624: -1,-30 - 1625: -3,-30 - 1626: -2,-30 - 1627: -4,-30 - 1628: -5,-30 - 1629: -6,-30 - 1630: -7,-30 - 1631: -8,-30 - 1668: 6,21 - 1669: 5,21 - 1670: 2,21 - 1671: 1,21 - 1672: 0,21 - 1673: -1,21 - 1674: -4,21 - 1675: -5,21 - 1676: -6,21 - 1677: -7,21 - 1678: -8,21 - 1679: -11,21 - 1680: -12,21 - 1681: -13,21 - 1682: -14,21 - 1683: -15,21 - 1684: -16,21 - 1698: 28,4 - 1699: 27,4 - 1700: 23,4 - 1701: 22,4 - 1917: 57,-17 - 1918: 58,-17 - 1919: 59,-17 - 1920: 60,-17 - 1921: 61,-17 - 2169: -1,-33 - 6243: 38,4 - 6244: 40,4 - 6245: 41,4 - 6246: 42,4 - 6247: 43,4 + 1548: -17,-30 + 1549: -16,-30 + 1550: -15,-30 + 1551: -14,-30 + 1552: -13,-30 + 1614: 5,-27 + 1615: 5,-28 + 1616: 5,-29 + 1617: 5,-30 + 1618: 3,-30 + 1619: 2,-30 + 1620: 1,-30 + 1621: 0,-30 + 1622: -1,-30 + 1623: -3,-30 + 1624: -2,-30 + 1625: -4,-30 + 1626: -5,-30 + 1627: -6,-30 + 1628: -7,-30 + 1629: -8,-30 + 1666: 6,21 + 1667: 5,21 + 1668: 2,21 + 1669: 1,21 + 1670: 0,21 + 1671: -1,21 + 1672: -4,21 + 1673: -5,21 + 1674: -6,21 + 1675: -7,21 + 1676: -8,21 + 1677: -11,21 + 1678: -12,21 + 1679: -13,21 + 1680: -14,21 + 1681: -15,21 + 1682: -16,21 + 1696: 28,4 + 1697: 27,4 + 1698: 23,4 + 1699: 22,4 + 1915: 57,-17 + 1916: 58,-17 + 1917: 59,-17 + 1918: 60,-17 + 1919: 61,-17 + 2148: -1,-33 + 6214: 38,4 + 6215: 40,4 + 6216: 41,4 + 6217: 42,4 + 6218: 43,4 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 1195: 6,30 - 1632: -51,-20 - 1633: -50,-20 - 1634: -49,-20 - 1635: -48,-20 + 1193: 6,30 + 1630: -51,-20 + 1631: -50,-20 + 1632: -49,-20 + 1633: -48,-20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 1574: 12,-32 - 1575: 11,-32 - 1576: 13,-32 - 1577: 14,-32 - 1578: 15,-32 - 1579: 16,-32 - 1580: 17,-32 - 1581: 19,-32 - 1582: 19,-30 - 1583: 19,-29 - 1584: 19,-27 - 1585: 19,-26 - 1586: 19,-25 - 1587: 20,-25 - 1588: 21,-25 - 1589: 22,-25 - 1590: 23,-25 - 1591: 24,-25 - 1603: 19,-31 + 1572: 12,-32 + 1573: 11,-32 + 1574: 13,-32 + 1575: 14,-32 + 1576: 15,-32 + 1577: 16,-32 + 1578: 17,-32 + 1579: 19,-32 + 1580: 19,-30 + 1581: 19,-29 + 1582: 19,-27 + 1583: 19,-26 + 1584: 19,-25 + 1585: 20,-25 + 1586: 21,-25 + 1587: 22,-25 + 1588: 23,-25 + 1589: 24,-25 + 1601: 19,-31 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 1710: 37,-21 - 1711: 50,-21 - 1712: 34,-21 - 1713: 36,-21 - 1714: 35,-21 - 1927: 51,-21 - 2023: 29,-21 - 2024: 29,-22 - 2025: 29,-23 - 2026: 29,-24 - 2027: 29,-25 - 2028: 29,-26 - 2029: 29,-27 - 2030: 28,-27 - 2031: 27,-27 - 2032: 26,-27 - 2033: 25,-27 - 2034: 24,-27 - 2035: 23,-27 - 2036: 21,-27 - 2037: 21,-29 - 2038: 21,-30 - 2039: 21,-31 - 2040: 21,-32 - 2041: 21,-33 - 2042: 21,-34 - 2043: 20,-34 - 2044: 19,-34 + 1708: 37,-21 + 1709: 50,-21 + 1710: 34,-21 + 1711: 36,-21 + 1712: 35,-21 + 1925: 51,-21 + 2021: 29,-21 + 2022: 29,-22 + 2023: 29,-23 + 2024: 29,-24 + 2025: 29,-25 + 2026: 29,-26 + 2027: 29,-27 + 2028: 28,-27 + 2029: 27,-27 + 2030: 26,-27 + 2031: 25,-27 + 2032: 24,-27 + 2033: 23,-27 + 2034: 21,-27 + 2035: 21,-29 + 2036: 21,-30 + 2037: 21,-31 + 2038: 21,-32 + 2039: 21,-33 + 2040: 21,-34 + 2041: 20,-34 + 2042: 19,-34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 6265: 45,7 + 6236: 45,7 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -7694,115 +7730,115 @@ entities: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1538: -25,11 - 1539: -25,12 - 1540: -25,13 - 1541: -25,14 - 1542: -25,15 - 1543: -25,16 - 1544: -25,17 - 1702: 21,5 - 1703: 21,7 - 1704: 21,8 - 1705: 21,9 - 1706: 21,16 - 1707: 21,18 - 1708: 21,19 - 1709: 21,20 - 1922: 61,-17 - 1923: 61,-18 - 1924: 61,-19 - 1925: 61,-20 - 2165: -1,-33 - 2166: 0,-33 - 2167: 1,-33 - 2168: 2,-33 - 6248: 43,4 - 6249: 43,3 - 6250: 43,2 - 6251: 43,1 - 6252: 43,-1 - 6253: 43,-2 - 6254: 43,-3 - 6255: 43,-4 - 6256: 43,-5 - 6257: 43,-6 - 6258: 43,-7 - 6259: 43,-8 - 6260: 43,-9 - 6261: 43,-10 + 1536: -25,11 + 1537: -25,12 + 1538: -25,13 + 1539: -25,14 + 1540: -25,15 + 1541: -25,16 + 1542: -25,17 + 1700: 21,5 + 1701: 21,7 + 1702: 21,8 + 1703: 21,9 + 1704: 21,16 + 1705: 21,18 + 1706: 21,19 + 1707: 21,20 + 1920: 61,-17 + 1921: 61,-18 + 1922: 61,-19 + 1923: 61,-20 + 2144: -1,-33 + 2145: 0,-33 + 2146: 1,-33 + 2147: 2,-33 + 6219: 43,4 + 6220: 43,3 + 6221: 43,2 + 6222: 43,1 + 6223: 43,-1 + 6224: 43,-2 + 6225: 43,-3 + 6226: 43,-4 + 6227: 43,-5 + 6228: 43,-6 + 6229: 43,-7 + 6230: 43,-8 + 6231: 43,-9 + 6232: 43,-10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 1196: 3,32 + 1194: 3,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 1570: 9,-27 - 1571: 9,-29 - 1572: 9,-30 - 1573: 9,-31 + 1568: 9,-27 + 1569: 9,-29 + 1570: 9,-30 + 1571: 9,-31 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1597: 19,-25 - 1598: 19,-26 - 1599: 19,-27 - 1600: 19,-29 - 1601: 19,-30 - 6266: 43,7 + 1595: 19,-25 + 1596: 19,-26 + 1597: 19,-27 + 1598: 19,-29 + 1599: 19,-30 + 6237: 43,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1531: -27,11 - 1532: -27,12 - 1533: -27,13 - 1534: -27,14 - 1535: -27,15 - 1536: -27,16 - 1537: -27,17 - 1602: 19,-31 - 1640: -52,-27 - 1641: -52,-26 - 1642: -52,-25 - 1643: -52,-24 - 1644: -52,-23 - 1715: 34,-21 - 1716: 35,-21 - 1717: 36,-21 - 1718: 37,-21 - 1719: 50,-21 - 1928: 51,-21 - 2045: 19,-34 - 2046: 20,-34 - 2047: 21,-34 - 2054: 23,-27 - 2055: 24,-27 - 2056: 25,-27 - 2057: 26,-27 - 2058: 27,-27 - 2059: 28,-27 - 2060: 29,-27 + 1529: -27,11 + 1530: -27,12 + 1531: -27,13 + 1532: -27,14 + 1533: -27,15 + 1534: -27,16 + 1535: -27,17 + 1600: 19,-31 + 1638: -52,-27 + 1639: -52,-26 + 1640: -52,-25 + 1641: -52,-24 + 1642: -52,-23 + 1713: 34,-21 + 1714: 35,-21 + 1715: 36,-21 + 1716: 37,-21 + 1717: 50,-21 + 1926: 51,-21 + 2043: 19,-34 + 2044: 20,-34 + 2045: 21,-34 + 2052: 23,-27 + 2053: 24,-27 + 2054: 25,-27 + 2055: 26,-27 + 2056: 27,-27 + 2057: 28,-27 + 2058: 29,-27 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 1193: 6,32 + 1191: 6,32 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 1567: 5,-29 - 1568: 5,-28 - 1569: 5,-27 - 2160: -1,-33 - 2161: 1,-33 - 2162: 0,-33 - 2163: 2,-33 + 1565: 5,-29 + 1566: 5,-28 + 1567: 5,-27 + 2139: -1,-33 + 2140: 1,-33 + 2141: 0,-33 + 2142: 2,-33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -7812,162 +7848,162 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 1592: 19,-25 - 1593: 20,-25 - 1594: 21,-25 - 1595: 22,-25 - 1596: 23,-25 - 6225: 40,4 - 6226: 38,4 - 6227: 41,4 - 6228: 42,4 - 6229: 43,4 - 6230: 43,3 - 6231: 43,2 - 6232: 43,1 - 6233: 43,-1 - 6234: 43,-2 - 6235: 43,-3 - 6236: 43,-4 - 6237: 43,-5 - 6238: 43,-6 - 6239: 43,-7 - 6240: 43,-10 - 6241: 43,-9 - 6242: 43,-8 - 6263: 45,9 + 1590: 19,-25 + 1591: 20,-25 + 1592: 21,-25 + 1593: 22,-25 + 1594: 23,-25 + 6196: 40,4 + 6197: 38,4 + 6198: 41,4 + 6199: 42,4 + 6200: 43,4 + 6201: 43,3 + 6202: 43,2 + 6203: 43,1 + 6204: 43,-1 + 6205: 43,-2 + 6206: 43,-3 + 6207: 43,-4 + 6208: 43,-5 + 6209: 43,-6 + 6210: 43,-7 + 6211: 43,-10 + 6212: 43,-9 + 6213: 43,-8 + 6234: 45,9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 1519: -25,11 - 1520: -25,12 - 1521: -25,13 - 1522: -25,15 - 1523: -25,14 - 1524: -25,16 + 1517: -25,11 + 1518: -25,12 + 1519: -25,13 + 1520: -25,15 + 1521: -25,14 + 1522: -25,16 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 1545: -16,-30 - 1546: -15,-30 - 1547: -14,-30 - 1548: -13,-30 - 1549: -17,-30 + 1543: -16,-30 + 1544: -15,-30 + 1545: -14,-30 + 1546: -13,-30 + 1547: -17,-30 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1685: 21,20 - 1686: 21,19 - 1687: 21,18 - 1688: 21,16 - 1689: 21,9 - 1690: 21,8 - 1691: 21,7 - 1692: 21,5 - 1693: 21,4 - 1694: 22,4 - 1695: 23,4 - 1696: 27,4 - 1697: 28,4 + 1683: 21,20 + 1684: 21,19 + 1685: 21,18 + 1686: 21,16 + 1687: 21,9 + 1688: 21,8 + 1689: 21,7 + 1690: 21,5 + 1691: 21,4 + 1692: 22,4 + 1693: 23,4 + 1694: 27,4 + 1695: 28,4 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 1910: 61,-17 - 1911: 60,-17 - 1912: 59,-17 - 1913: 58,-17 - 1914: 61,-18 - 1915: 61,-19 - 1916: 61,-20 - 1926: 57,-17 + 1908: 61,-17 + 1909: 60,-17 + 1910: 59,-17 + 1911: 58,-17 + 1912: 61,-18 + 1913: 61,-19 + 1914: 61,-20 + 1924: 57,-17 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1604: 17,-32 - 1605: 16,-32 - 1606: 15,-32 - 1607: 14,-32 - 1608: 13,-32 - 1609: 12,-32 - 1610: 11,-32 - 1611: 9,-32 - 1612: 9,-31 - 1613: 9,-30 - 1614: 9,-29 - 1615: 9,-27 - 1645: -51,-20 - 1646: -50,-20 - 1647: -49,-20 - 1648: -48,-20 - 1649: -52,-20 - 1650: -62,-22 - 2048: 21,-34 - 2049: 21,-33 - 2050: 21,-32 - 2051: 21,-31 - 2052: 21,-30 - 2053: 21,-29 - 2061: 29,-27 - 2062: 29,-26 - 2063: 29,-25 - 2064: 29,-24 - 2065: 29,-23 - 2066: 29,-22 + 1602: 17,-32 + 1603: 16,-32 + 1604: 15,-32 + 1605: 14,-32 + 1606: 13,-32 + 1607: 12,-32 + 1608: 11,-32 + 1609: 9,-32 + 1610: 9,-31 + 1611: 9,-30 + 1612: 9,-29 + 1613: 9,-27 + 1643: -51,-20 + 1644: -50,-20 + 1645: -49,-20 + 1646: -48,-20 + 1647: -52,-20 + 1648: -62,-22 + 2046: 21,-34 + 2047: 21,-33 + 2048: 21,-32 + 2049: 21,-31 + 2050: 21,-30 + 2051: 21,-29 + 2059: 29,-27 + 2060: 29,-26 + 2061: 29,-25 + 2062: 29,-24 + 2063: 29,-23 + 2064: 29,-22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 1194: 3,30 - 1651: -16,21 - 1652: -15,21 - 1653: -14,21 - 1654: -13,21 - 1655: -12,21 - 1656: -11,21 - 1657: -8,21 - 1658: -7,21 - 1659: -6,21 - 1660: -5,21 - 1661: -4,21 - 1662: -1,21 - 1663: 0,21 - 1664: 1,21 - 1665: 2,21 - 1666: 5,21 - 1667: 6,21 + 1192: 3,30 + 1649: -16,21 + 1650: -15,21 + 1651: -14,21 + 1652: -13,21 + 1653: -12,21 + 1654: -11,21 + 1655: -8,21 + 1656: -7,21 + 1657: -6,21 + 1658: -5,21 + 1659: -4,21 + 1660: -1,21 + 1661: 0,21 + 1662: 1,21 + 1663: 2,21 + 1664: 5,21 + 1665: 6,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 1555: -8,-30 - 1556: -7,-30 - 1557: -6,-30 - 1558: -5,-30 - 1559: -4,-30 - 1560: -3,-30 - 1561: -2,-30 - 1562: 0,-30 - 1563: -1,-30 - 1564: 1,-30 - 1565: 2,-30 - 1566: 3,-30 - 2164: 2,-33 + 1553: -8,-30 + 1554: -7,-30 + 1555: -6,-30 + 1556: -5,-30 + 1557: -4,-30 + 1558: -3,-30 + 1559: -2,-30 + 1560: 0,-30 + 1561: -1,-30 + 1562: 1,-30 + 1563: 2,-30 + 1564: 3,-30 + 2143: 2,-33 - node: color: '#FFFFFFFF' id: Rock01 decals: - 1496: -52,-49 + 1494: -52,-49 - node: color: '#FFFFFFFF' id: Rock03 decals: 904: -49,-9 - 1497: -47,-49 + 1495: -47,-49 - node: color: '#FFFFFFFF' id: Rock04 @@ -7984,27 +8020,27 @@ entities: decals: 884: -51,4 906: -46,-7 - 1499: -46,-49 - 1732: 58,19 + 1497: -46,-49 + 1730: 58,19 - node: color: '#FFFFFFFF' id: Rock07 decals: 883: -46,-2 905: -50,-8 - 1498: -51,-49 - 1733: 61,19 + 1496: -51,-49 + 1731: 61,19 - node: cleanable: True color: '#FFFFFFFF' id: Rust decals: - 2952: -5,-39 - 2953: -7,-40 - 2954: -6,-41 - 2955: -7,-41 - 2956: -8,-39 - 2957: -8,-42 + 2931: -5,-39 + 2932: -7,-40 + 2933: -6,-41 + 2934: -7,-41 + 2935: -8,-39 + 2936: -8,-42 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -8044,7 +8080,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 1143: -3,24 + 1141: -3,24 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -8059,7 +8095,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1142: -2,23 + 1140: -2,23 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -8069,7 +8105,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1141: -3,23 + 1139: -3,23 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -8079,7 +8115,7 @@ entities: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1140: -2,24 + 1138: -2,24 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -8089,19 +8125,19 @@ entities: color: '#FFFFFFB1' id: VentSmall decals: - 2886: -36,22 + 2865: -36,22 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 1184: 6,32 - 6577: 91,-13 + 1182: 6,32 + 6548: 91,-13 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1183: 3,32 - 6578: 88,-13 + 1181: 3,32 + 6549: 88,-13 - node: color: '#EFB34196' id: WarnCornerSE @@ -8111,7 +8147,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSE decals: - 6576: 91,-16 + 6547: 91,-16 - node: color: '#EFB34196' id: WarnCornerSW @@ -8121,38 +8157,38 @@ entities: color: '#FFFFFFFF' id: WarnCornerSW decals: - 6575: 88,-16 + 6546: 88,-16 - node: color: '#52B4E996' id: WarnCornerSmallGreyscaleSE decals: - 6738: 49,-11 - 6739: 52,-11 + 6709: 49,-11 + 6710: 52,-11 - node: color: '#52B4E996' id: WarnCornerSmallGreyscaleSW decals: - 6736: 49,-11 - 6737: 52,-11 + 6707: 49,-11 + 6708: 52,-11 - node: color: '#EFB34118' id: WarnCornerSmallNE decals: - 6655: 12,-30 - 6656: 12,-30 + 6626: 12,-30 + 6627: 12,-30 - node: color: '#EFB34131' id: WarnCornerSmallNE decals: - 6807: 14,39 - 6808: 14,39 - 6809: 14,39 - 6810: 14,39 + 6778: 14,39 + 6779: 14,39 + 6780: 14,39 + 6781: 14,39 - node: color: '#EFB3416C' id: WarnCornerSmallNE decals: - 6654: 12,-30 + 6625: 12,-30 - node: color: '#EFB34196' id: WarnCornerSmallNE @@ -8162,30 +8198,30 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1317: 25,23 - 1318: 29,23 - 2075: 11,-47 - 6312: 51,13 - 6400: 51,-11 + 1315: 25,23 + 1316: 29,23 + 2073: 11,-47 + 6283: 51,13 + 6371: 51,-11 - node: color: '#EFB34118' id: WarnCornerSmallNW decals: - 6657: 16,-30 - 6658: 16,-30 + 6628: 16,-30 + 6629: 16,-30 - node: color: '#EFB34131' id: WarnCornerSmallNW decals: - 6803: 16,39 - 6804: 16,39 - 6805: 16,39 - 6806: 16,39 + 6774: 16,39 + 6775: 16,39 + 6776: 16,39 + 6777: 16,39 - node: color: '#EFB3416C' id: WarnCornerSmallNW decals: - 6653: 16,-30 + 6624: 16,-30 - node: color: '#EFB34196' id: WarnCornerSmallNW @@ -8197,17 +8233,17 @@ entities: id: WarnCornerSmallNW decals: 1080: 39,-1 - 1319: 25,23 - 1320: 29,23 - 2076: 14,-47 + 1317: 25,23 + 1318: 29,23 + 2074: 14,-47 - node: color: '#EFB34131' id: WarnCornerSmallSE decals: - 6799: 14,42 - 6800: 14,42 - 6801: 14,42 - 6802: 14,42 + 6770: 14,42 + 6771: 14,42 + 6772: 14,42 + 6773: 14,42 - node: color: '#EFB34196' id: WarnCornerSmallSE @@ -8220,16 +8256,16 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1439: 55,-33 - 6311: 51,15 + 1437: 55,-33 + 6282: 51,15 - node: color: '#EFB34131' id: WarnCornerSmallSW decals: - 6795: 16,42 - 6796: 16,42 - 6797: 16,42 - 6798: 16,42 + 6766: 16,42 + 6767: 16,42 + 6768: 16,42 + 6769: 16,42 - node: color: '#EFB34196' id: WarnCornerSmallSW @@ -8240,14 +8276,14 @@ entities: color: '#EFB34131' id: WarnLineE decals: - 6771: 14,40 - 6772: 14,40 - 6773: 14,41 - 6774: 14,41 - 6783: 14,40 - 6784: 14,40 - 6785: 14,41 - 6786: 14,41 + 6742: 14,40 + 6743: 14,40 + 6744: 14,41 + 6745: 14,41 + 6754: 14,40 + 6755: 14,40 + 6756: 14,41 + 6757: 14,41 - node: color: '#EFB34196' id: WarnLineE @@ -8275,67 +8311,64 @@ entities: 279: 29,-13 280: 29,-12 281: 29,-11 - 6209: 47,14 - 6210: 47,14 - 6211: 47,15 - 6212: 47,15 + 6180: 47,14 + 6181: 47,14 + 6182: 47,15 + 6183: 47,15 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1185: 6,31 - 1186: 6,30 - 1434: 55,-36 - 1435: 55,-34 - 1436: 55,-35 - 1852: 73,-14 - 1853: 73,-15 - 1854: 73,-17 - 1855: 73,-16 - 1856: 73,-18 - 1857: 73,-19 - 6175: -45,23 - 6309: 51,14 - 6399: 51,-10 - 6573: 91,-15 - 6574: 91,-14 - 6666: 56,-29 - 6667: 56,-28 - 6668: 56,-27 - 6706: -33,-11 - 6707: -33,-10 + 1183: 6,31 + 1184: 6,30 + 1432: 55,-36 + 1433: 55,-34 + 1434: 55,-35 + 1850: 73,-14 + 1851: 73,-15 + 1852: 73,-17 + 1853: 73,-16 + 1854: 73,-18 + 1855: 73,-19 + 6146: -45,23 + 6280: 51,14 + 6370: 51,-10 + 6544: 91,-15 + 6545: 91,-14 + 6677: -33,-11 + 6678: -33,-10 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 6401: 52,-12 - 6402: 52,-13 - 6403: 52,-14 - 6404: 52,-15 - 6405: 49,-12 - 6406: 49,-13 - 6407: 49,-14 - 6408: 49,-15 + 6372: 52,-12 + 6373: 52,-13 + 6374: 52,-14 + 6375: 52,-15 + 6376: 49,-12 + 6377: 49,-13 + 6378: 49,-14 + 6379: 49,-15 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 6409: 49,-15 - 6410: 49,-14 - 6411: 49,-13 - 6412: 49,-12 - 6413: 52,-12 - 6414: 52,-13 - 6415: 52,-14 - 6416: 52,-15 + 6380: 49,-15 + 6381: 49,-14 + 6382: 49,-13 + 6383: 49,-12 + 6384: 52,-12 + 6385: 52,-13 + 6386: 52,-14 + 6387: 52,-15 - node: color: '#EFB34131' id: WarnLineN decals: - 6791: 15,42 - 6792: 15,42 - 6793: 15,42 - 6794: 15,42 + 6762: 15,42 + 6763: 15,42 + 6764: 15,42 + 6765: 15,42 - node: color: '#EFB34196' id: WarnLineN @@ -8353,52 +8386,52 @@ entities: 271: 26,-14 272: 27,-14 273: 28,-14 - 1474: 46,14 - 6199: 46,14 - 6200: 46,14 + 1472: 46,14 + 6170: 46,14 + 6171: 46,14 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1437: 56,-33 - 1438: 57,-33 - 1897: 69,-30 - 1898: 68,-30 - 1899: 70,-30 - 1900: 71,-30 - 1970: 23,-38 - 1971: 24,-38 - 1972: 25,-38 - 2067: 11,-48 - 2068: 12,-48 - 2069: 14,-48 - 2070: 13,-48 - 2071: 15,-48 - 2072: 16,-48 - 2124: 0,-38 - 2125: 1,-38 - 2126: 2,-38 - 6172: -44,24 - 6567: 89,-16 - 6568: 90,-16 - 6836: 33,-14 - 6837: 34,-14 - 6838: 35,-14 - 6880: 7,-47 - 6881: 8,-47 - 6882: 9,-47 + 1435: 56,-33 + 1436: 57,-33 + 1895: 69,-30 + 1896: 68,-30 + 1897: 70,-30 + 1898: 71,-30 + 1968: 23,-38 + 1969: 24,-38 + 1970: 25,-38 + 2065: 11,-48 + 2066: 12,-48 + 2067: 14,-48 + 2068: 13,-48 + 2069: 15,-48 + 2070: 16,-48 + 2122: 0,-38 + 2123: 1,-38 + 2124: 2,-38 + 6143: -44,24 + 6538: 89,-16 + 6539: 90,-16 + 6807: 33,-14 + 6808: 34,-14 + 6809: 35,-14 + 6851: 7,-47 + 6852: 8,-47 + 6853: 9,-47 - node: color: '#EFB34131' id: WarnLineS decals: - 6775: 16,40 - 6776: 16,40 - 6777: 16,41 - 6778: 16,41 - 6779: 16,41 - 6780: 16,40 - 6781: 16,41 - 6782: 16,40 + 6746: 16,40 + 6747: 16,40 + 6748: 16,41 + 6749: 16,41 + 6750: 16,41 + 6751: 16,40 + 6752: 16,41 + 6753: 16,40 - node: color: '#EFB34196' id: WarnLineS @@ -8426,51 +8459,51 @@ entities: 275: 16,-11 276: 16,-10 277: 16,-9 - 6203: 45,16 - 6204: 45,15 - 6205: 45,14 - 6206: 45,14 - 6207: 45,15 - 6208: 45,16 + 6174: 45,16 + 6175: 45,15 + 6176: 45,14 + 6177: 45,14 + 6178: 45,15 + 6179: 45,16 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 1771: 61,-24 - 1784: 61,-23 - 1998: 26,-43 - 1999: 26,-46 - 6173: -43,23 - 6310: 57,14 - 6571: 88,-15 - 6572: 88,-14 - 6704: -33,-10 - 6705: -33,-11 + 1769: 61,-24 + 1782: 61,-23 + 1996: 26,-43 + 1997: 26,-46 + 6144: -43,23 + 6281: 57,14 + 6542: 88,-15 + 6543: 88,-14 + 6675: -33,-10 + 6676: -33,-11 - node: color: '#EFB34118' id: WarnLineW decals: - 6659: 13,-30 - 6660: 13,-30 - 6661: 14,-30 - 6662: 14,-30 - 6663: 15,-30 - 6664: 15,-30 + 6630: 13,-30 + 6631: 13,-30 + 6632: 14,-30 + 6633: 14,-30 + 6634: 15,-30 + 6635: 15,-30 - node: color: '#EFB34131' id: WarnLineW decals: - 6787: 15,39 - 6788: 15,39 - 6789: 15,39 - 6790: 15,39 + 6758: 15,39 + 6759: 15,39 + 6760: 15,39 + 6761: 15,39 - node: color: '#EFB3416C' id: WarnLineW decals: - 6650: 13,-30 - 6651: 14,-30 - 6652: 15,-30 + 6621: 13,-30 + 6622: 14,-30 + 6623: 15,-30 - node: color: '#EFB34196' id: WarnLineW @@ -8490,48 +8523,48 @@ entities: 1069: 36,-1 1070: 37,-1 1079: 38,-1 - 1181: 4,32 - 1182: 5,32 - 1311: 30,23 - 1312: 31,23 - 1313: 23,23 - 1314: 24,23 - 1315: 26,23 - 1316: 28,23 - 1802: 68,-11 - 1803: 69,-11 - 1804: 70,-11 - 1893: 68,-29 - 1894: 70,-29 - 1895: 69,-29 - 1896: 71,-29 - 1967: 23,-37 - 1968: 25,-37 - 1969: 24,-37 - 2018: 28,-38 - 2019: 29,-38 - 2073: 12,-47 - 2074: 13,-47 - 2153: 9,-39 - 2154: 10,-39 - 2155: 8,-39 - 2156: 11,-39 - 2170: -5,-35 - 2184: -6,-35 - 2185: -4,-35 - 6174: -44,22 - 6397: 52,-11 - 6398: 53,-11 - 6569: 89,-13 - 6570: 90,-13 - 6839: 33,-11 - 6840: 34,-11 - 6841: 35,-11 + 1179: 4,32 + 1180: 5,32 + 1309: 30,23 + 1310: 31,23 + 1311: 23,23 + 1312: 24,23 + 1313: 26,23 + 1314: 28,23 + 1800: 68,-11 + 1801: 69,-11 + 1802: 70,-11 + 1891: 68,-29 + 1892: 70,-29 + 1893: 69,-29 + 1894: 71,-29 + 1965: 23,-37 + 1966: 25,-37 + 1967: 24,-37 + 2016: 28,-38 + 2017: 29,-38 + 2071: 12,-47 + 2072: 13,-47 + 2132: 9,-39 + 2133: 10,-39 + 2134: 8,-39 + 2135: 11,-39 + 2149: -5,-35 + 2163: -6,-35 + 2164: -4,-35 + 6145: -44,22 + 6368: 52,-11 + 6369: 53,-11 + 6540: 89,-13 + 6541: 90,-13 + 6810: 33,-11 + 6811: 34,-11 + 6812: 35,-11 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 6171: -44,23 + 6142: -44,23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8544,14 +8577,14 @@ entities: decals: 379: -22,7 995: 40,-29 - 6849: -19,-13 + 6820: -19,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 401: -18,-16 501: -32,5 - 3063: -31,-45 + 3042: -31,-45 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -8571,8 +8604,9 @@ entities: 521: -38,3 655: -39,-16 858: -52,5 - 1180: -15,31 - 1735: 60,18 + 1178: -15,31 + 1733: 60,18 + 6887: 76,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -8584,7 +8618,8 @@ entities: 522: -25,-5 856: -43,-1 857: -43,5 - 1099: -59,-29 + 1097: -59,-29 + 6886: 80,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe @@ -8595,8 +8630,8 @@ entities: 578: -33,14 654: -39,-13 855: -52,-3 - 6859: -22,-20 - 6860: -20,-20 + 6830: -22,-20 + 6831: -20,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw @@ -8609,9 +8644,9 @@ entities: 964: -45.158802,-30.877844 965: -45.158802,-25.282345 966: -50.020466,-25.282345 - 1098: -59,-25 - 6857: -20,-20 - 6858: -18,-20 + 1096: -59,-25 + 6828: -20,-20 + 6829: -18,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -8659,21 +8694,23 @@ entities: 980: 36,-29 1002: 44,-31 1003: 44,-30 - 1174: -15,32 - 1175: -15,33 - 1176: -15,34 - 1330: 33,15 - 1378: 33,12 - 1379: 33,13 - 1380: 33,14 - 1734: 60,19 - 1872: 69,-24 - 1873: 69,-23 - 1874: 69,-22 - 1875: 69,-21 - 3060: -30,-46 - 6851: -20,-21 - 6853: -22,-21 + 1172: -15,32 + 1173: -15,33 + 1174: -15,34 + 1328: 33,15 + 1376: 33,12 + 1377: 33,13 + 1378: 33,14 + 1732: 60,19 + 1870: 69,-24 + 1871: 69,-23 + 1872: 69,-22 + 1873: 69,-21 + 3039: -30,-46 + 6822: -20,-21 + 6824: -22,-21 + 6882: 76,-24 + 6883: 76,-23 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -8766,20 +8803,14 @@ entities: 997: 41,-29 998: 42,-29 999: 43,-29 - 1093: -61,-29 - 1094: -60,-29 - 1177: -14,31 - 1178: -13,31 - 1179: -12,31 - 3059: -30,-45 - 6110: -35,3 - 6169: 36,-24 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 3016: 80,-25 + 1091: -61,-29 + 1092: -60,-29 + 1175: -14,31 + 1176: -13,31 + 1177: -12,31 + 3038: -30,-45 + 6081: -35,3 + 6140: 36,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -8857,20 +8888,20 @@ entities: 852: -51,-3 859: -50,-3 860: -48,-3 - 1095: -62,-25 - 1096: -61,-25 - 1097: -60,-25 - 1724: 58,19 - 1725: 59,19 - 1726: 60,19 - 3061: -31,-45 - 3064: 65,-52 - 3065: 66,-52 - 3066: 67,-52 - 6168: 36,-24 - 6188: -38,-17 - 6855: -21,-20 - 6856: -19,-20 + 1093: -62,-25 + 1094: -61,-25 + 1095: -60,-25 + 1722: 58,19 + 1723: 59,19 + 1724: 60,19 + 3040: -31,-45 + 3043: 65,-52 + 3044: 66,-52 + 3045: 67,-52 + 6139: 36,-24 + 6159: -38,-17 + 6826: -21,-20 + 6827: -19,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -8916,47 +8947,49 @@ entities: 952: -50,-26 1000: 40,-31 1001: 40,-30 - 1090: -59,-28 - 1091: -59,-27 - 1092: -59,-26 - 1744: 58,19 - 2259: -27,-16 - 2260: -27,-15 - 2261: -27,-14 - 2262: -27,-13 - 3062: -31,-44 - 6852: -20,-21 - 6854: -18,-21 + 1088: -59,-28 + 1089: -59,-27 + 1090: -59,-26 + 1742: 58,19 + 2238: -27,-16 + 2239: -27,-15 + 2240: -27,-14 + 2241: -27,-13 + 3041: -31,-44 + 6823: -20,-21 + 6825: -18,-21 + 6884: 80,-24 + 6885: 80,-23 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa1 decals: - 6126: 80.134224,-34.739353 + 6097: 80.134224,-34.739353 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa2 decals: - 6127: 81.98104,-35.791183 + 6098: 81.98104,-35.791183 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowa3 decals: - 6128: 80.43999,-36.158104 + 6099: 80.43999,-36.158104 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowb1 decals: - 6129: 83.2041,-35.583263 + 6100: 83.2041,-35.583263 - node: cleanable: True color: '#FFFFFFFF' id: bushsnowb3 decals: - 6130: 83.020645,-36.060257 + 6101: 83.020645,-36.060257 - node: color: '#FFFFFFFF' id: e @@ -8967,113 +9000,113 @@ entities: color: '#FFFFFFFF' id: grasssnow01 decals: - 6143: 83.460945,-36.10918 - 6144: 80.01192,-34.201206 + 6114: 83.460945,-36.10918 + 6115: 80.01192,-34.201206 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow03 decals: - 6140: 81.7242,-35.840107 + 6111: 81.7242,-35.840107 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow05 decals: - 6145: 81.07172,-34.84943 + 6116: 81.07172,-34.84943 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow06 decals: - 6149: 80.39903,-34.335743 + 6120: 80.39903,-34.335743 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow07 decals: - 6138: 80.04861,-36.219257 + 6109: 80.04861,-36.219257 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow08 decals: - 6139: 80.8436,-35.974644 + 6110: 80.8436,-35.974644 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow09 decals: - 6141: 82.201195,-35.974644 - 6148: 81.98901,-35.155193 + 6112: 82.201195,-35.974644 + 6119: 81.98901,-35.155193 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow10 decals: - 6136: 80.02415,-34.922813 + 6107: 80.02415,-34.922813 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow11 decals: - 6137: 80.42776,-35.546574 - 6142: 83.24079,-35.7178 + 6108: 80.42776,-35.546574 + 6113: 83.24079,-35.7178 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow12 decals: - 6146: 82.99192,-34.910583 + 6117: 82.99192,-34.910583 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow13 decals: - 6147: 82.56385,-34.88612 + 6118: 82.56385,-34.88612 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa1 decals: - 6133: 82.82495,-35.571033 + 6104: 82.82495,-35.571033 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa2 decals: - 6152: 83.059845,-34.91084 + 6123: 83.059845,-34.91084 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa3 decals: - 6131: 79.9263,-35.46096 + 6102: 79.9263,-35.46096 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb2 decals: - 6132: 81.369514,-35.70557 - 6150: 80.8828,-34.87415 + 6103: 81.369514,-35.70557 + 6121: 80.8828,-34.87415 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb3 decals: - 6151: 79.87989,-33.993546 + 6122: 79.87989,-33.993546 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc2 decals: - 6135: 79.79176,-36.060257 + 6106: 79.79176,-36.060257 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc3 decals: - 6134: 81.10044,-36.13364 + 6105: 81.10044,-36.13364 - node: color: '#FFFFFFFF' id: h @@ -9083,9 +9116,9 @@ entities: color: '#FFFF0066' id: shop decals: - 3053: 50.31763,23.128677 - 3054: 51.239506,23.738052 - 3055: 52.00513,23.034927 + 3032: 50.31763,23.128677 + 3033: 51.239506,23.738052 + 3034: 52.00513,23.034927 - node: color: '#FFFFFFFF' id: w @@ -10943,6 +10976,7 @@ entities: name: map 22 - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -14427,7 +14461,7 @@ entities: pos: -16.5,19.5 parent: 2 - type: Door - secondsUntilStateChange: -38043.45 + secondsUntilStateChange: -39935.375 state: Opening - uid: 4196 components: @@ -18999,10 +19033,10 @@ entities: - type: Transform pos: -32.5,25.5 parent: 2 - - uid: 16158 + - uid: 16215 components: - type: Transform - pos: 75.5,-26.5 + pos: 75.5,-25.5 parent: 2 - uid: 16449 components: @@ -19018,6 +19052,12 @@ entities: parent: 2 - proto: BarricadeDirectional entities: + - uid: 2140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-25.5 + parent: 2 - uid: 5970 components: - type: Transform @@ -19045,12 +19085,6 @@ entities: - type: Transform pos: 62.5,-26.5 parent: 2 - - uid: 16196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-26.5 - parent: 2 - proto: BarSignTheSingulo entities: - uid: 131 @@ -19859,7 +19893,7 @@ entities: - type: Transform pos: 19.5,-51.5 parent: 2 -- proto: BodyBag_Folded +- proto: BodyBagFolded entities: - uid: 161 components: @@ -20432,6 +20466,231 @@ entities: - type: Transform pos: -19.974792,15.597592 parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 19830 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 20845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-12.5 + parent: 2 + - uid: 20931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-16.5 + parent: 2 + - uid: 21606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 2 + - uid: 21611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 20290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.464813,16.849148 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 16238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,15.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 21601 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 21602 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 21603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,12.5 + parent: 2 + - uid: 21604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 + - uid: 21605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 21608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-26.5 + parent: 2 + - uid: 21609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + - uid: 21613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 2 + - uid: 21616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 + parent: 2 + - uid: 21617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-11.5 + parent: 2 + - uid: 21618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,10.5 + parent: 2 + - uid: 21622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,22.5 + parent: 2 + - uid: 21624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,53.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,9.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 21628 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 21629 + components: + - type: Transform + pos: 61.5,28.5 + parent: 2 +- proto: ButtonFrameJanitor + entities: + - uid: 16220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,11.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,2.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-16.5 + parent: 2 + - uid: 21614 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 21623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.9506106,22.498423 + parent: 2 - proto: CableApcExtension entities: - uid: 184 @@ -46993,35 +47252,6 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-22.5 parent: 2 -- proto: CandleBlackSmall - entities: - - uid: 16240 - components: - - type: Transform - pos: 77.35643,-24.300165 - parent: 2 - - uid: 16241 - components: - - type: Transform - pos: 77.22189,-24.483624 - parent: 2 -- proto: CandleRed - entities: - - uid: 16237 - components: - - type: Transform - pos: 76.87943,-24.287935 - parent: 2 - - uid: 16238 - components: - - type: Transform - pos: 77.148506,-24.251244 - parent: 2 - - uid: 16239 - components: - - type: Transform - pos: 77.0262,-24.459164 - parent: 2 - proto: CandyBowl entities: - uid: 20483 @@ -48107,6 +48337,52 @@ entities: - type: Transform pos: -24.5,-38.5 parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 79.5,-28.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-27.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 76.5,-28.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-27.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-28.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-27.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-27.5 + parent: 2 + - uid: 10583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-28.5 + parent: 2 - uid: 16205 components: - type: Transform @@ -48153,52 +48429,6 @@ entities: rot: 1.5707963267948966 rad pos: 77.5,-26.5 parent: 2 - - uid: 16213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-28.5 - parent: 2 - - uid: 16214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-28.5 - parent: 2 - - uid: 16215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-29.5 - parent: 2 - - uid: 16216 - components: - - type: Transform - pos: 76.5,-29.5 - parent: 2 - - uid: 16217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-28.5 - parent: 2 - - uid: 16218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-28.5 - parent: 2 - - uid: 16219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-29.5 - parent: 2 - - uid: 16220 - components: - - type: Transform - pos: 79.5,-29.5 - parent: 2 - proto: CarpetGreen entities: - uid: 521 @@ -49782,12 +50012,6 @@ entities: - type: Transform pos: 55.5,15.5 parent: 2 - - uid: 6897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-27.5 - parent: 2 - uid: 7167 components: - type: Transform @@ -50186,6 +50410,12 @@ entities: - type: Transform pos: 53.5,-41.5 parent: 2 + - uid: 10584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-27.5 + parent: 2 - uid: 12461 components: - type: Transform @@ -50194,8 +50424,20 @@ entities: - uid: 12463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-27.5 + rot: 1.5707963267948966 rad + pos: 57.5,-28.5 + parent: 2 + - uid: 12464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-28.5 + parent: 2 + - uid: 12467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-26.5 parent: 2 - uid: 13743 components: @@ -53060,18 +53302,6 @@ entities: - type: Transform pos: 63.5,-53.5 parent: 2 - - uid: 17420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-28.5 - parent: 2 - - uid: 19827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-28.5 - parent: 2 - uid: 20437 components: - type: Transform @@ -53083,12 +53313,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,31.5 parent: 2 - - uid: 20449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-26.5 - parent: 2 - uid: 20450 components: - type: Transform @@ -53178,12 +53402,6 @@ entities: - type: Transform pos: 78.5,-17.5 parent: 2 - - uid: 20845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-26.5 - parent: 2 - uid: 21003 components: - type: Transform @@ -55046,18 +55264,6 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-19.5 parent: 2 - - uid: 10583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-29.5 - parent: 2 - - uid: 10584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-29.5 - parent: 2 - uid: 12691 components: - type: Transform @@ -55226,6 +55432,28 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 + - uid: 16193 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-28.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-28.5 + parent: 2 - uid: 16305 components: - type: Transform @@ -55825,6 +56053,18 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-29.5 parent: 2 + - uid: 5897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-26.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-26.5 + parent: 2 - uid: 6408 components: - type: Transform @@ -56041,6 +56281,12 @@ entities: parent: 2 - proto: ChurchBell entities: + - uid: 3473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-22.5 + parent: 2 - uid: 8169 components: - type: Transform @@ -56132,11 +56378,6 @@ entities: - type: Transform pos: -9.5,-40.5 parent: 2 - - uid: 3306 - components: - - type: Transform - pos: -51.5,-1.5 - parent: 2 - uid: 4226 components: - type: Transform @@ -56192,6 +56433,43 @@ entities: - type: Transform pos: -9.5,40.5 parent: 2 + - uid: 16196 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 16145 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 16152 + components: + - type: Transform + pos: -40.5,-56.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + pos: -54.5,-56.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: 59.5,-29.5 + parent: 2 + - uid: 16778 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 869 @@ -56229,16 +56507,6 @@ entities: - type: Transform pos: -45.5,-32.5 parent: 2 - - uid: 6349 - components: - - type: Transform - pos: -54.5,-56.5 - parent: 2 - - uid: 6350 - components: - - type: Transform - pos: -40.5,-56.5 - parent: 2 - uid: 6772 components: - type: Transform @@ -56982,6 +57250,18 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-40.5 parent: 2 + - uid: 16213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-57.5 + parent: 2 + - uid: 19827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-57.5 + parent: 2 - uid: 20285 components: - type: Transform @@ -57304,6 +57584,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingHeadHatPirateTricord + entities: + - uid: 16219 + components: + - type: Transform + pos: 56.18452,-27.19633 + parent: 2 - proto: ClothingHeadHatRedwizard entities: - uid: 17261 @@ -57562,6 +57849,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterCoatPirate + entities: + - uid: 16202 + components: + - type: Transform + pos: 56.698204,-27.318634 + parent: 2 - proto: ClothingOuterHardsuitAncientEVA entities: - uid: 17544 @@ -57774,6 +58068,13 @@ entities: parent: 971 - type: Physics canCollide: False +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 16218 + components: + - type: Transform + pos: 56.257904,-27.587708 + parent: 2 - proto: Cobweb1 entities: - uid: 911 @@ -57849,11 +58150,6 @@ entities: - type: Transform pos: 58.5,8.5 parent: 2 - - uid: 16372 - components: - - type: Transform - pos: 76.5,-22.5 - parent: 2 - uid: 21395 components: - type: Transform @@ -57861,6 +58157,16 @@ entities: parent: 2 - proto: Cobweb2 entities: + - uid: 3306 + components: + - type: Transform + pos: 81.5,-22.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 2 - uid: 13728 components: - type: Transform @@ -57967,6 +58273,18 @@ entities: - type: Transform pos: -17.5,-12.5 parent: 2 +- proto: CockroachTimedSpawner + entities: + - uid: 16184 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 - proto: ComfyChair entities: - uid: 912 @@ -64838,7 +65156,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -64957,11 +65274,6 @@ entities: parent: 2 - proto: DrinkWaterBottleFull entities: - - uid: 5895 - components: - - type: Transform - pos: 58.4961,-29.067184 - parent: 2 - uid: 6921 components: - type: Transform @@ -64972,11 +65284,6 @@ entities: - type: Transform pos: 60.857758,17.599394 parent: 2 - - uid: 16778 - components: - - type: Transform - pos: 58.31264,-29.128336 - parent: 2 - proto: DrinkWaterCup entities: - uid: 982 @@ -68843,17 +69150,10 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-9.5 parent: 2 - - uid: 16202 + - uid: 16303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-26.5 - parent: 2 - - uid: 16203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-26.5 + pos: 75.5,-25.5 parent: 2 - uid: 16355 components: @@ -68890,6 +69190,11 @@ entities: - type: Transform pos: -25.5,33.5 parent: 2 + - uid: 16372 + components: + - type: Transform + pos: 81.5,-25.5 + parent: 2 - uid: 17363 components: - type: Transform @@ -71044,36 +71349,11 @@ entities: count: 25 - proto: FloorWaterEntity entities: - - uid: 5899 - components: - - type: Transform - pos: 55.5,-26.5 - parent: 2 - uid: 6919 components: - type: Transform pos: 61.5,19.5 parent: 2 - - uid: 12467 - components: - - type: Transform - pos: 55.5,-28.5 - parent: 2 - - uid: 12471 - components: - - type: Transform - pos: 55.5,-27.5 - parent: 2 - - uid: 14224 - components: - - type: Transform - pos: 55.5,-29.5 - parent: 2 - - uid: 14225 - components: - - type: Transform - pos: 55.5,-25.5 - parent: 2 - proto: FloraRockSolid01 entities: - uid: 16712 @@ -71186,11 +71466,6 @@ entities: - type: Transform pos: -50.151165,-48.580776 parent: 2 - - uid: 7559 - components: - - type: Transform - pos: 57.553413,-21.041796 - parent: 2 - proto: FloraTree06 entities: - uid: 3810 @@ -71502,18 +71777,6 @@ entities: - type: Transform pos: -41.472492,5.669127 parent: 2 -- proto: FoodWatermelonSlice - entities: - - uid: 12464 - components: - - type: Transform - pos: 58.581715,-29.360718 - parent: 2 - - uid: 16145 - components: - - type: Transform - pos: 58.667328,-29.495255 - parent: 2 - proto: FuelDispenser entities: - uid: 17164 @@ -93894,11 +94157,6 @@ entities: - type: Transform pos: -22.5,10.5 parent: 2 - - uid: 12465 - components: - - type: Transform - pos: 56.5,-29.5 - parent: 2 - uid: 14989 components: - type: Transform @@ -95178,11 +95436,6 @@ entities: - type: Transform pos: 11.5,43.5 parent: 2 - - uid: 19830 - components: - - type: Transform - pos: 56.5,-25.5 - parent: 2 - uid: 20251 components: - type: Transform @@ -97510,6 +97763,8 @@ entities: - type: Transform pos: -0.5,21.5 parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 - type: DeviceLinkSink links: - 14403 @@ -97519,6 +97774,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,15.5 parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 - type: DeviceLinkSink links: - 20784 @@ -97527,6 +97784,8 @@ entities: - type: Transform pos: 45.5,5.5 parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 - type: DeviceLinkSink links: - 20785 @@ -97536,6 +97795,8 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-18.5 parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 - type: DeviceLinkSink links: - 20786 @@ -97544,6 +97805,8 @@ entities: - type: Transform pos: -4.5,-29.5 parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 - type: DeviceLinkSink links: - 20781 @@ -97571,6 +97834,13 @@ entities: - type: Transform pos: 26.518127,-38.461094 parent: 2 +- proto: Jukebox + entities: + - uid: 16299 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 - proto: KitchenElectricGrill entities: - uid: 16800 @@ -97774,11 +98044,26 @@ entities: - type: Transform pos: -36.47805,6.5564027 parent: 2 + - uid: 5896 + components: + - type: Transform + pos: 79.52929,-24.226149 + parent: 2 + - uid: 14224 + components: + - type: Transform + pos: 55.496395,-29.241953 + parent: 2 - uid: 15032 components: - type: Transform pos: -34.498154,28.751019 parent: 2 + - uid: 16214 + components: + - type: Transform + pos: 77.49804,-24.241774 + parent: 2 - uid: 16235 components: - type: Transform @@ -98988,10 +99273,10 @@ entities: - type: Transform pos: 60.5,25.5 parent: 2 - - uid: 16303 + - uid: 16381 components: - type: Transform - pos: 82.5,-25.5 + pos: 82.5,-26.5 parent: 2 - uid: 20789 components: @@ -100162,11 +100447,6 @@ entities: - type: Transform pos: -37.5,-60.5 parent: 2 - - uid: 16242 - components: - - type: Transform - pos: 79.5,-24.5 - parent: 2 - uid: 20493 components: - type: Transform @@ -100466,6 +100746,20 @@ entities: - type: Transform pos: 36.49126,20.946766 parent: 2 +- proto: PillCanisterRandom + entities: + - uid: 16158 + components: + - type: Transform + pos: 15.6345825,29.64872 + parent: 2 +- proto: PirateHandyFlag + entities: + - uid: 16192 + components: + - type: Transform + pos: 55.487377,-27.4654 + parent: 2 - proto: PlaqueAtmos entities: - uid: 1548 @@ -101586,1370 +101880,2330 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-0.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1044 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1614 components: - type: Transform pos: 5.5,-11.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1615 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1616 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1617 components: - type: Transform pos: -12.5,-13.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1618 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-18.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1619 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-18.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1620 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1621 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1622 components: - type: Transform pos: -9.5,-25.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1623 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-22.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1624 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1625 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1626 components: - type: Transform pos: 6.5,-17.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1627 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1628 components: - type: Transform pos: -17.5,3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1629 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,6.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1630 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-21.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1631 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1632 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1633 components: - type: Transform pos: 14.5,-15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1634 components: - type: Transform pos: -32.5,17.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1635 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1636 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1637 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-21.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1638 components: - type: Transform pos: 23.5,-20.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1639 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1640 components: - type: Transform pos: 26.5,-2.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1641 components: - type: Transform pos: 24.5,-2.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1642 components: - type: Transform pos: 22.5,-2.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1643 components: - type: Transform pos: 20.5,-2.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1644 components: - type: Transform pos: 18.5,-2.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1645 components: - type: Transform pos: 16.5,-2.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1646 components: - type: Transform pos: 34.5,-10.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1647 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1648 components: - type: Transform pos: 28.5,-18.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1649 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-31.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1651 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1652 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1653 components: - type: Transform pos: -37.5,7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1654 components: - type: Transform pos: -29.5,7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1655 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,6.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1656 components: - type: Transform pos: 8.5,-26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1657 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-25.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1658 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-35.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1659 components: - type: Transform pos: 22.5,-24.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1660 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-28.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1663 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-24.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1664 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1665 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1666 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-22.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1667 components: - type: Transform pos: 34.5,-18.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1668 components: - type: Transform pos: 50.5,-18.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1669 components: - type: Transform pos: 38.5,-14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1670 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1671 components: - type: Transform pos: -18.5,-8.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1672 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-20.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1673 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1674 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1675 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1676 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1677 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,12.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1678 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,11.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1679 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,16.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1680 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1681 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-20.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1682 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-19.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1683 components: - type: Transform pos: -34.5,-12.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1684 components: - type: Transform pos: -30.5,-12.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1685 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-9.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1686 components: - type: Transform pos: -36.5,-8.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1688 components: - type: Transform pos: -28.5,-8.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1689 components: - type: Transform pos: -29.5,-24.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1690 components: - type: Transform pos: -38.5,-24.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1691 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1692 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1694 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1695 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-0.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1696 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1705 components: - type: Transform pos: -19.5,21.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1706 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,12.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1708 components: - type: Transform pos: 1.5,21.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1711 components: - type: Transform pos: 18.5,21.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1712 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-31.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1713 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-31.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1716 components: - type: Transform pos: -20.5,-33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1718 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-37.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1719 components: - type: Transform pos: -31.5,-35.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 2683 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-22.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 2871 components: - type: Transform pos: 43.5,-27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 2907 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-39.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3256 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,1.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3701 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,10.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3702 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-8.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3703 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,12.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3704 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,12.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3847 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3962 components: - type: Transform pos: 36.5,-28.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3964 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-24.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3966 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-30.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 3967 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-30.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4008 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4009 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4010 components: - type: Transform pos: 38.5,-32.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4011 components: - type: Transform pos: 42.5,-32.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4163 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4164 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4182 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4248 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-47.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4255 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4257 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4276 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4293 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4305 components: - type: Transform pos: 27.5,4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4318 components: - type: Transform pos: 14.5,26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4343 components: - type: Transform pos: 38.5,4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4379 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-2.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4406 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-10.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4408 components: - type: Transform pos: -44.5,-13.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4431 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-22.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4432 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-19.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4442 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4443 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,25.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4494 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-29.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4495 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4709 components: - type: Transform pos: 11.5,21.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4733 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4753 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-9.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4774 components: - type: Transform pos: -5.5,29.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4787 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4792 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4804 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,24.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4856 components: - type: Transform pos: -13.5,34.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4873 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4879 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4893 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4987 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,34.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5010 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-22.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5020 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,31.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5021 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,19.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5026 components: - type: Transform pos: -14.5,29.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5161 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5163 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,32.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5164 components: - type: Transform pos: 4.5,33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5165 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5209 components: - type: Transform pos: -1.5,43.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5235 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,47.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5291 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,40.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5292 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,40.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5437 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-30.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5472 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5525 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,17.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5526 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,20.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5535 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,6.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5536 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5538 components: - type: Transform pos: 27.5,23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5548 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5549 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5560 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5769 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5919 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-35.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5922 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-47.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5953 components: - type: Transform pos: -49.5,-45.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 5993 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,43.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6012 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6027 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,43.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6040 components: - type: Transform pos: 1.5,48.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6042 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,50.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6045 components: - type: Transform pos: 50.5,15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6066 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-30.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6090 components: - type: Transform pos: -45.5,-45.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6129 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6138 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,6.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6339 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-57.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6340 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6341 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-61.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6343 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-57.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6541 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6565 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6566 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-1.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6567 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-1.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6568 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6569 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6694 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6695 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6696 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,11.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6726 components: - type: Transform pos: 54.5,15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6760 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6889 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,0.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6890 components: - type: Transform pos: 62.5,4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6891 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6901 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,17.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 6967 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7037 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7067 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7096 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-16.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7124 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7125 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-18.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7160 components: - type: Transform pos: 60.5,-11.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7165 components: - type: Transform pos: 64.5,-22.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7224 components: - type: Transform pos: 69.5,-7.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7225 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-14.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7289 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-21.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7421 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7433 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-26.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7584 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7629 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-37.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7705 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-45.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7706 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-42.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7811 components: - type: Transform pos: 21.5,-52.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7812 components: - type: Transform pos: 20.5,-43.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7813 components: - type: Transform pos: 17.5,-43.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7988 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-47.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7989 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-47.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7990 components: - type: Transform pos: 16.5,-52.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7991 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-59.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 7992 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-59.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8159 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8198 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-36.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8516 components: - type: Transform pos: -2.5,15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8517 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,6.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8526 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-53.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9111 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-32.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9120 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,9.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9161 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9204 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9214 components: - type: Transform pos: -60.5,-19.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 9220 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-37.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 10721 components: - type: Transform pos: 53.5,-38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 13666 components: - type: Transform pos: -22.5,35.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 13966 components: - type: Transform pos: -32.5,38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15159 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,38.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 17538 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-48.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 20609 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 20782 components: - type: Transform pos: -3.5,-29.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 20934 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-34.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 20987 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-20.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21126 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-28.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21236 components: - type: Transform pos: 8.5,3.5 parent: 21128 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredlightLED entities: - uid: 4915 @@ -102958,23 +104212,39 @@ entities: rot: 3.141592653589793 rad pos: 38.5,17.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 4926 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15899 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,39.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 17357 components: - type: Transform pos: 67.5,-34.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredLightPostSmall entities: - uid: 17273 @@ -102982,6 +104252,10 @@ entities: - type: Transform pos: 63.5,-54.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredlightSodium entities: - uid: 1697 @@ -102990,46 +104264,78 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-9.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1698 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-9.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1699 components: - type: Transform pos: 6.5,10.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1700 components: - type: Transform pos: -5.5,10.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1701 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1702 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1703 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,4.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 1704 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-3.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredSmallLight entities: - uid: 3272 @@ -103037,210 +104343,358 @@ entities: - type: Transform pos: -32.5,-8.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8164 components: - type: Transform pos: -12.5,-36.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 8752 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,13.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 10543 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-25.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15005 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,23.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15021 components: - type: Transform pos: -39.5,29.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15091 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15250 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,6.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15251 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,2.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15252 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-1.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15911 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,40.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 15954 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,15.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16076 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,20.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16125 components: - type: Transform pos: 57.5,27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16126 components: - type: Transform pos: 61.5,27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16159 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-29.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16161 components: - type: Transform pos: 78.5,-22.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16301 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-27.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16344 components: - type: Transform pos: 79.5,-5.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16404 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,21.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16443 components: - type: Transform pos: -31.5,-43.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16474 components: - type: Transform pos: -56.5,-33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16536 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,30.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16565 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,20.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16590 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,41.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16638 components: - type: Transform pos: 15.5,37.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16670 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-10.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 17215 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-54.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 20386 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,41.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 20396 components: - type: Transform pos: 81.5,-33.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 20982 components: - type: Transform pos: 87.5,-11.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 20983 components: - type: Transform pos: 92.5,-11.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21055 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-44.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21239 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-5.5 parent: 21128 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21409 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-41.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21410 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-41.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21416 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-42.5 parent: 2 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredSmallLightEmpty entities: - uid: 16926 @@ -103249,23 +104703,31 @@ entities: rot: 3.141592653589793 rad pos: 81.5,-18.5 parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 - uid: 16935 components: - type: Transform pos: 81.5,-12.5 parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21237 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 21128 + - type: ApcPowerReceiver + powerLoad: 0 - uid: 21238 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-5.5 parent: 21128 + - type: ApcPowerReceiver + powerLoad: 0 - proto: Protolathe entities: - uid: 1720 @@ -103466,6 +104928,12 @@ entities: - type: Transform pos: -17.5,29.5 parent: 2 + - uid: 5895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-26.5 + parent: 2 - uid: 6769 components: - type: Transform @@ -103545,6 +105013,12 @@ entities: - type: Transform pos: 54.5,-38.5 parent: 2 + - uid: 12465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-25.5 + parent: 2 - uid: 14904 components: - type: Transform @@ -103594,12 +105068,6 @@ entities: - type: Transform pos: 78.5,-29.5 parent: 2 - - uid: 16299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-25.5 - parent: 2 - uid: 16329 components: - type: Transform @@ -104568,24 +106036,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-29.5 parent: 2 - - uid: 5896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-26.5 - parent: 2 - - uid: 5897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-26.5 - parent: 2 - - uid: 5900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-27.5 - parent: 2 - uid: 6192 components: - type: Transform @@ -104652,12 +106102,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,4.5 parent: 2 - - uid: 6506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-28.5 - parent: 2 - uid: 7118 components: - type: Transform @@ -105202,11 +106646,6 @@ entities: - type: Transform pos: -53.5,-62.5 parent: 2 - - uid: 8167 - components: - - type: Transform - pos: -15.5,-3.5 - parent: 2 - proto: RandomFoodSingle entities: - uid: 1902 @@ -109639,16 +111078,6 @@ entities: - type: Transform pos: -22.5,10.5 parent: 2 - - uid: 20289 - components: - - type: Transform - pos: 56.5,-25.5 - parent: 2 - - uid: 20290 - components: - - type: Transform - pos: 56.5,-29.5 - parent: 2 - uid: 20354 components: - type: Transform @@ -112700,19 +114129,19 @@ entities: parent: 2 - proto: SignRedOne entities: - - uid: 20931 + - uid: 21619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-11.5 + rot: 3.141592653589793 rad + pos: -35.497345,-11.735416 parent: 2 - proto: SignRedTwo entities: - - uid: 2140 + - uid: 21620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-11.5 + rot: 3.141592653589793 rad + pos: -27.505127,-11.735416 parent: 2 - proto: SignRND entities: @@ -117828,6 +119257,16 @@ entities: - type: Transform pos: 60.5,25.5 parent: 2 + - uid: 16191 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 - uid: 16327 components: - type: Transform @@ -117940,12 +119379,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,16.5 parent: 2 - - uid: 20821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-29.5 - parent: 2 - uid: 21330 components: - type: Transform @@ -118115,6 +119548,12 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-15.5 parent: 2 + - uid: 16182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-29.5 + parent: 2 - uid: 16197 components: - type: Transform @@ -120077,6 +121516,13 @@ entities: - type: Transform pos: 0.7634096,47.159733 parent: 2 +- proto: ToySpawner + entities: + - uid: 14225 + components: + - type: Transform + pos: 55.5,-25.5 + parent: 2 - proto: TrainingBomb entities: - uid: 2135 @@ -136020,12 +137466,6 @@ entities: rot: 3.141592653589793 rad pos: 75.5,-28.5 parent: 2 - - uid: 16152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-25.5 - parent: 2 - uid: 16164 components: - type: Transform @@ -136049,6 +137489,11 @@ entities: rot: 3.141592653589793 rad pos: 77.5,-30.5 parent: 2 + - uid: 16190 + components: + - type: Transform + pos: 81.5,-26.5 + parent: 2 - uid: 16345 components: - type: Transform @@ -136079,12 +137524,6 @@ entities: rot: 3.141592653589793 rad pos: 82.5,-22.5 parent: 2 - - uid: 16381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-25.5 - parent: 2 - uid: 16384 components: - type: Transform @@ -138139,6 +139578,11 @@ entities: rot: 3.141592653589793 rad pos: 81.5,-8.5 parent: 2 + - uid: 16189 + components: + - type: Transform + pos: 75.5,-26.5 + parent: 2 - uid: 16313 components: - type: Transform @@ -138661,11 +140105,6 @@ entities: - type: Transform pos: 21.5,-18.5 parent: 2 - - uid: 3473 - components: - - type: Transform - pos: -20.5,-1.5 - parent: 2 - uid: 5603 components: - type: Transform @@ -140371,15 +141810,15 @@ entities: - type: Transform pos: -27.5,26.5 parent: 2 - - uid: 16182 + - uid: 16241 components: - type: Transform - pos: 75.5,-26.5 + pos: 75.5,-25.5 parent: 2 - - uid: 16184 + - uid: 16242 components: - type: Transform - pos: 81.5,-26.5 + pos: 81.5,-25.5 parent: 2 - uid: 21389 components: @@ -140484,49 +141923,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 -- proto: WoodenSupport - entities: - - uid: 16157 - components: - - type: Transform - pos: 80.5,-22.5 - parent: 2 - - uid: 16190 - components: - - type: Transform - pos: 76.5,-22.5 - parent: 2 -- proto: WoodenSupportBeam - entities: - - uid: 16189 - components: - - type: Transform - pos: 76.5,-22.5 - parent: 2 - - uid: 16191 - components: - - type: Transform - pos: 80.5,-22.5 - parent: 2 -- proto: WoodenSupportWall - entities: - - uid: 16193 - components: - - type: Transform - pos: 77.5,-22.5 - parent: 2 - - uid: 16194 - components: - - type: Transform - pos: 78.5,-22.5 - parent: 2 -- proto: WoodenSupportWallBroken - entities: - - uid: 16192 - components: - - type: Transform - pos: 79.5,-22.5 - parent: 2 - proto: Wrench entities: - uid: 3560 diff --git a/Resources/Maps/europa.yml b/Resources/Maps/europa.yml index 2a5487096a..6f0eb1fbca 100644 --- a/Resources/Maps/europa.yml +++ b/Resources/Maps/europa.yml @@ -49,9506 +49,6 @@ entities: - type: MovedGrids - type: Broadphase - type: OccluderTree - - type: Biome - forcedMarkerLayers: [] - markerLayers: [] - loadedMarkers: {} - pendingMarkers: {} - loadedChunks: - - -32,-32 - - -32,-24 - - -32,-16 - - -32,-8 - - -32,0 - - -32,8 - - -32,16 - - -32,24 - - -32,32 - - -24,-32 - - -24,-24 - - -24,-16 - - -24,-8 - - -24,0 - - -24,8 - - -24,16 - - -24,24 - - -24,32 - - -16,-32 - - -16,-24 - - -16,-16 - - -16,-8 - - -16,0 - - -16,8 - - -16,16 - - -16,24 - - -16,32 - - -8,-32 - - -8,-24 - - -8,-16 - - -8,-8 - - -8,0 - - -8,8 - - -8,16 - - -8,24 - - -8,32 - - 0,-32 - - 0,-24 - - 0,-16 - - 0,-8 - - 0,0 - - 0,8 - - 0,16 - - 0,24 - - 0,32 - - 8,-32 - - 8,-24 - - 8,-16 - - 8,-8 - - 8,0 - - 8,8 - - 8,16 - - 8,24 - - 8,32 - - 16,-32 - - 16,-24 - - 16,-16 - - 16,-8 - - 16,0 - - 16,8 - - 16,16 - - 16,24 - - 16,32 - - 24,-32 - - 24,-24 - - 24,-16 - - 24,-8 - - 24,0 - - 24,8 - - 24,16 - - 24,24 - - 24,32 - - 32,-32 - - 32,-24 - - 32,-16 - - 32,-8 - - 32,0 - - 32,8 - - 32,16 - - 32,24 - - 32,32 - entities: - -32,-32: - 3173: -31,-25 - 1865: -30,-25 - -32,-24: - 1697: -32,-21 - 1610: -31,-24 - 1337: -30,-24 - 1300: -30,-23 - 1221: -30,-22 - 309: -29,-23 - 3185: -29,-22 - 4239: -29,-21 - 4393: -28,-21 - 5005: -27,-21 - 5814: -25,-21 - 6165: -25,-20 - 13220: -25,-19 - -32,-16: - 13221: -25,-15 - 13222: -25,-14 - 13223: -25,-13 - -32,-8: {} - -32,0: {} - -32,8: {} - -32,16: {} - -32,24: {} - -32,32: {} - -24,-32: {} - -24,-24: {} - -24,-16: {} - -24,-8: {} - -24,0: {} - -24,8: {} - -24,16: {} - -24,24: {} - -24,32: {} - -16,-32: - 13224: -9,-32 - -16,-24: {} - -16,-16: {} - -16,-8: {} - -16,0: {} - -16,8: {} - -16,16: {} - -16,24: {} - -16,32: {} - -8,-32: - 13225: -7,-32 - 13226: -5,-32 - 13227: -4,-32 - 13228: -3,-30 - 13229: -2,-32 - -8,-24: {} - -8,-16: {} - -8,-8: {} - -8,0: {} - -8,8: {} - -8,16: {} - -8,24: {} - -8,32: {} - 0,-32: - 13230: 0,-30 - 13231: 1,-30 - 13232: 2,-32 - 13233: 2,-30 - 13234: 3,-30 - 13235: 4,-30 - 13236: 6,-29 - 13237: 6,-27 - 13238: 6,-26 - 13239: 6,-25 - 13240: 7,-32 - 13241: 7,-27 - 13242: 7,-26 - 13243: 7,-25 - 0,-24: - 13244: 6,-24 - 13245: 6,-23 - 13246: 6,-22 - 13247: 6,-21 - 13248: 7,-24 - 13249: 7,-23 - 13250: 7,-22 - 13251: 7,-19 - 0,-16: {} - 0,-8: {} - 0,0: {} - 0,8: {} - 0,16: {} - 0,24: {} - 0,32: {} - 8,-32: - 13252: 8,-28 - 13253: 8,-27 - 13254: 8,-26 - 13255: 9,-30 - 13256: 9,-29 - 13257: 9,-28 - 13258: 9,-26 - 13259: 11,-31 - 13260: 11,-30 - 13261: 11,-29 - 13262: 11,-28 - 13263: 11,-27 - 13264: 11,-26 - 13265: 11,-25 - 13266: 12,-32 - 13267: 12,-30 - 13268: 12,-29 - 13269: 12,-28 - 13270: 12,-27 - 13271: 12,-26 - 13272: 12,-25 - 13273: 13,-32 - 13274: 13,-31 - 13275: 13,-30 - 13276: 13,-27 - 13277: 14,-32 - 13278: 14,-31 - 13279: 14,-30 - 13280: 14,-27 - 13281: 14,-25 - 13282: 15,-32 - 13283: 15,-30 - 13284: 15,-29 - 13285: 15,-28 - 13286: 15,-27 - 13287: 15,-26 - 13288: 15,-25 - 8,-24: - 13289: 8,-24 - 13290: 8,-23 - 13291: 8,-22 - 13292: 8,-18 - 13293: 9,-24 - 13294: 9,-22 - 13295: 9,-21 - 13296: 9,-20 - 13297: 9,-19 - 13298: 11,-24 - 13299: 11,-23 - 13300: 11,-22 - 13301: 12,-20 - 13302: 12,-19 - 13303: 13,-24 - 13304: 13,-23 - 13305: 13,-20 - 13306: 14,-24 - 13307: 14,-20 - 13308: 14,-19 - 13309: 15,-24 - 13310: 15,-23 - 13311: 15,-22 - 13312: 15,-21 - 13313: 15,-17 - 8,-16: - 13314: 9,-14 - 8,-8: {} - 8,0: {} - 8,8: {} - 8,16: {} - 8,24: {} - 8,32: {} - 16,-32: - 13315: 16,-30 - 13316: 16,-29 - 13317: 16,-28 - 13318: 16,-27 - 13319: 16,-26 - 13320: 16,-25 - 13321: 17,-32 - 13322: 17,-31 - 13323: 17,-30 - 13324: 17,-28 - 13325: 17,-27 - 13326: 17,-26 - 13327: 17,-25 - 13328: 18,-32 - 13329: 18,-29 - 13330: 18,-28 - 13331: 18,-26 - 13332: 18,-25 - 13333: 19,-32 - 13334: 19,-31 - 13335: 19,-30 - 13336: 19,-26 - 13337: 19,-25 - 13338: 20,-32 - 13339: 20,-31 - 13340: 20,-25 - 13341: 21,-32 - 13342: 21,-31 - 13343: 21,-25 - 13344: 22,-31 - 13345: 23,-31 - 13346: 23,-30 - 13347: 23,-29 - 16,-24: - 13348: 16,-24 - 13349: 16,-23 - 13350: 16,-19 - 13351: 16,-18 - 13352: 17,-24 - 13353: 17,-23 - 13354: 17,-22 - 13355: 17,-21 - 13356: 17,-20 - 13357: 18,-24 - 13358: 18,-23 - 13359: 18,-22 - 13360: 18,-21 - 13361: 19,-24 - 13362: 19,-23 - 13363: 19,-22 - 13364: 19,-21 - 13365: 20,-24 - 13366: 20,-23 - 13367: 20,-22 - 13368: 20,-21 - 13369: 21,-24 - 13370: 21,-23 - 13371: 21,-22 - 13372: 21,-19 - 13373: 22,-24 - 13374: 22,-22 - 13375: 22,-19 - 13376: 22,-18 - 13377: 23,-22 - 13378: 23,-21 - 16,-16: - 13379: 16,-13 - 13380: 17,-15 - 13381: 23,-13 - 13382: 23,-11 - 13383: 23,-10 - 16,-8: {} - 16,0: {} - 16,8: {} - 16,16: {} - 16,24: {} - 16,32: {} - 24,-32: - 13384: 24,-31 - 13385: 25,-32 - 13386: 25,-31 - 13387: 25,-27 - 13388: 26,-32 - 13389: 26,-31 - 13390: 28,-29 - 13391: 29,-29 - 13392: 30,-31 - 24,-24: - 13393: 26,-23 - 13394: 26,-17 - 13395: 27,-18 - 13396: 30,-18 - 13397: 31,-18 - 24,-16: - 13398: 24,-10 - 13399: 25,-10 - 13400: 27,-13 - 13401: 27,-11 - 13402: 27,-10 - 24,-8: - 13403: 24,-7 - 13404: 25,-5 - 13405: 25,-4 - 13406: 25,-3 - 13407: 26,-8 - 13408: 26,-4 - 13409: 26,-3 - 13410: 27,-8 - 13411: 27,-7 - 13412: 27,-6 - 13413: 27,-5 - 13414: 27,-4 - 13415: 27,-3 - 13416: 28,-8 - 13417: 28,-7 - 13418: 28,-5 - 13419: 28,-4 - 13420: 28,-3 - 13421: 29,-5 - 13422: 29,-4 - 13423: 29,-3 - 13424: 29,-2 - 13425: 30,-7 - 13426: 30,-6 - 13427: 30,-5 - 13428: 30,-4 - 13429: 30,-3 - 13430: 30,-1 - 13431: 31,-8 - 13432: 31,-7 - 13433: 31,-6 - 13434: 31,-5 - 13435: 31,-4 - 13436: 31,-1 - 24,0: - 13437: 29,0 - 13438: 30,0 - 24,8: {} - 24,16: {} - 24,24: {} - 24,32: {} - 32,-32: - 13439: 32,-32 - 13440: 32,-31 - 13441: 32,-27 - 13442: 34,-32 - 13443: 34,-31 - 13444: 34,-30 - 13445: 35,-32 - 13446: 35,-31 - 13447: 35,-30 - 13448: 36,-30 - 13449: 36,-29 - 13450: 36,-28 - 13451: 37,-32 - 13452: 37,-30 - 13453: 37,-29 - 13454: 37,-28 - 13455: 38,-32 - 13456: 38,-31 - 13457: 38,-30 - 13458: 38,-29 - 13459: 38,-28 - 13460: 38,-27 - 13461: 38,-26 - 13462: 39,-32 - 13463: 39,-31 - 13464: 39,-29 - 13465: 39,-28 - 13466: 39,-27 - 13467: 39,-26 - 13468: 39,-25 - 32,-24: - 13469: 32,-24 - 13470: 33,-23 - 13471: 33,-22 - 13472: 34,-24 - 13473: 34,-23 - 13474: 34,-22 - 13475: 34,-21 - 13476: 34,-18 - 13477: 35,-24 - 13478: 35,-23 - 13479: 36,-24 - 13480: 36,-22 - 13481: 37,-22 - 13482: 37,-20 - 13483: 37,-17 - 13484: 38,-21 - 13485: 39,-23 - 13486: 39,-21 - 13487: 39,-17 - 32,-16: - 13488: 32,-11 - 13489: 34,-11 - 13490: 34,-10 - 13491: 35,-14 - 13492: 36,-14 - 13493: 36,-12 - 13494: 36,-11 - 13495: 36,-9 - 13496: 37,-15 - 13497: 37,-14 - 13498: 37,-11 - 13499: 38,-15 - 13500: 38,-14 - 13501: 38,-13 - 13502: 38,-9 - 13503: 39,-16 - 13504: 39,-14 - 13505: 39,-9 - 32,-8: - 13506: 32,-5 - 13507: 32,-4 - 13508: 32,-2 - 13509: 32,-1 - 13510: 34,-5 - 13511: 34,-4 - 13512: 34,-3 - 13513: 34,-1 - 13514: 35,-8 - 13515: 35,-7 - 13516: 35,-6 - 13517: 35,-5 - 13518: 35,-4 - 13519: 35,-3 - 13520: 35,-2 - 13521: 35,-1 - 13522: 36,-5 - 13523: 36,-4 - 13524: 36,-3 - 13525: 36,-2 - 13526: 37,-8 - 13527: 37,-4 - 13528: 37,-3 - 13529: 37,-2 - 13530: 37,-1 - 13531: 38,-8 - 13532: 38,-7 - 13533: 38,-6 - 13534: 38,-5 - 13535: 38,-4 - 13536: 38,-3 - 13537: 38,-2 - 13538: 38,-1 - 13539: 39,-8 - 13540: 39,-7 - 13541: 39,-6 - 13542: 39,-5 - 13543: 39,-4 - 13544: 39,-3 - 13545: 39,-2 - 13546: 39,-1 - 32,0: - 13547: 32,1 - 13548: 33,4 - 13549: 34,2 - 13550: 35,0 - 13551: 35,2 - 13552: 35,3 - 13553: 35,4 - 13554: 35,5 - 13555: 36,2 - 13556: 36,3 - 13557: 36,4 - 13558: 37,0 - 13559: 37,3 - 13560: 37,4 - 13561: 38,0 - 13562: 38,2 - 13563: 38,3 - 13564: 38,4 - 13565: 39,0 - 13566: 39,2 - 13567: 39,3 - 32,8: - 13568: 32,15 - 13569: 33,8 - 13570: 33,15 - 32,16: - 13571: 32,16 - 13572: 32,17 - 13573: 32,22 - 13574: 32,23 - 13575: 33,16 - 13576: 33,17 - 13577: 33,18 - 13578: 33,23 - 13579: 34,17 - 13580: 34,18 - 13581: 34,20 - 13582: 34,23 - 13583: 36,17 - 13584: 36,18 - 13585: 36,19 - 13586: 37,18 - 13587: 37,19 - 13588: 37,22 - 13589: 37,23 - 13590: 38,19 - 13591: 38,21 - 13592: 39,19 - 13593: 39,21 - 32,24: - 13594: 32,24 - 13595: 32,25 - 13596: 33,24 - 13597: 33,25 - 13598: 34,24 - 13599: 34,25 - 13600: 36,31 - 13601: 37,24 - 13602: 37,29 - 13603: 38,30 - 13604: 39,27 - 32,32: - 13605: 32,37 - 13606: 36,32 - 13607: 37,32 - decals: - -32,-32: {} - -32,-24: - 1836: -32,-24 - 1837: -32,-22 - 1838: -31,-23 - 1839: -31,-22 - 1840: -31,-21 - 1841: -30,-21 - 1842: -28,-22 - 1843: -27,-22 - 1844: -26,-21 - -32,-16: - 1845: -25,-16 - -32,-8: {} - -32,0: {} - -32,8: {} - -32,16: {} - -32,24: {} - -32,32: {} - -24,-32: {} - -24,-24: {} - -24,-16: {} - -24,-8: {} - -24,0: {} - -24,8: {} - -24,16: {} - -24,24: {} - -24,32: {} - -16,-32: {} - -16,-24: {} - -16,-16: {} - -16,-8: {} - -16,0: {} - -16,8: {} - -16,16: {} - -16,24: {} - -16,32: {} - -8,-32: - 1846: -6,-32 - 1847: -3,-32 - 1848: -2,-30 - 1849: -1,-32 - 1850: -1,-30 - -8,-24: {} - -8,-16: {} - -8,-8: {} - -8,0: {} - -8,8: {} - -8,16: {} - -8,24: {} - -8,32: {} - 0,-32: - 1851: 0,-32 - 1852: 1,-32 - 1853: 3,-32 - 1854: 4,-32 - 1855: 5,-32 - 1856: 6,-28 - 1857: 7,-30 - 0,-24: - 1858: 7,-20 - 1859: 7,-17 - 0,-16: - 1860: 7,-15 - 1861: 7,-14 - 1862: 7,-13 - 0,-8: {} - 0,0: {} - 0,8: {} - 0,16: {} - 0,24: {} - 0,32: {} - 8,-32: - 1863: 8,-32 - 1864: 8,-30 - 1865: 8,-29 - 1866: 9,-32 - 1867: 9,-27 - 1868: 9,-25 - 1869: 10,-32 - 1870: 11,-32 - 1871: 12,-31 - 1872: 13,-29 - 1873: 13,-28 - 1874: 13,-26 - 1875: 13,-25 - 1876: 14,-29 - 1877: 14,-28 - 1878: 14,-26 - 8,-24: - 1879: 8,-19 - 1880: 8,-17 - 1881: 9,-18 - 1882: 9,-17 - 1883: 11,-21 - 1884: 11,-20 - 1885: 11,-19 - 1886: 11,-18 - 1887: 12,-24 - 1888: 12,-23 - 1889: 12,-22 - 1890: 12,-21 - 1891: 12,-18 - 1892: 12,-17 - 1893: 13,-22 - 1894: 13,-21 - 1895: 13,-19 - 1896: 13,-18 - 1897: 13,-17 - 1898: 14,-22 - 1899: 14,-18 - 1900: 15,-18 - 8,-16: - 1901: 9,-15 - 1902: 11,-15 - 1903: 13,-15 - 1904: 14,-15 - 1905: 15,-15 - 1906: 15,-14 - 8,-8: {} - 8,0: {} - 8,8: {} - 8,16: {} - 8,24: {} - 8,32: {} - 16,-32: - 1907: 16,-31 - 1908: 17,-29 - 1909: 18,-31 - 1910: 18,-30 - 1911: 18,-27 - 1912: 19,-29 - 1913: 19,-28 - 1914: 19,-27 - 1915: 20,-30 - 1916: 20,-28 - 1917: 20,-27 - 1918: 20,-26 - 1919: 21,-30 - 1920: 21,-26 - 1921: 22,-30 - 1922: 22,-28 - 1923: 22,-27 - 1924: 22,-26 - 1925: 22,-25 - 1926: 23,-32 - 1927: 23,-28 - 1928: 23,-27 - 1929: 23,-26 - 1930: 23,-25 - 16,-24: - 1931: 16,-22 - 1932: 16,-21 - 1933: 16,-20 - 1934: 17,-19 - 1935: 17,-18 - 1936: 18,-20 - 1937: 18,-17 - 1938: 19,-20 - 1939: 19,-19 - 1940: 19,-18 - 1941: 20,-20 - 1942: 20,-19 - 1943: 20,-17 - 1944: 21,-21 - 1945: 21,-20 - 1946: 21,-18 - 1947: 22,-21 - 1948: 22,-20 - 1949: 23,-23 - 1950: 23,-20 - 1951: 23,-19 - 1952: 23,-17 - 16,-16: - 1953: 22,-15 - 1954: 22,-14 - 1955: 23,-15 - 1956: 23,-14 - 1957: 23,-12 - 16,-8: {} - 16,0: {} - 16,8: {} - 16,16: {} - 16,24: {} - 16,32: {} - 24,-32: - 1958: 24,-32 - 1959: 24,-28 - 1960: 24,-27 - 1961: 24,-26 - 1962: 24,-25 - 1963: 25,-30 - 1964: 25,-29 - 1965: 25,-28 - 1966: 25,-26 - 1967: 26,-30 - 1968: 26,-29 - 1969: 26,-25 - 1970: 27,-32 - 1971: 27,-31 - 1972: 27,-25 - 1973: 28,-31 - 1974: 28,-28 - 1975: 28,-26 - 1976: 29,-32 - 1977: 29,-31 - 1978: 29,-30 - 1979: 29,-27 - 1980: 29,-26 - 1981: 29,-25 - 1982: 30,-32 - 1983: 30,-30 - 1984: 30,-29 - 1985: 30,-28 - 1986: 30,-25 - 1987: 31,-32 - 1988: 31,-31 - 1989: 31,-30 - 1990: 31,-28 - 1991: 31,-27 - 1992: 31,-25 - 24,-24: - 1993: 24,-24 - 1994: 24,-23 - 1995: 24,-21 - 1996: 24,-20 - 1997: 25,-24 - 1998: 25,-23 - 1999: 25,-22 - 2000: 25,-21 - 2001: 25,-19 - 2002: 25,-18 - 2003: 25,-17 - 2004: 26,-24 - 2005: 26,-22 - 2006: 26,-21 - 2007: 26,-20 - 2008: 26,-18 - 2009: 27,-24 - 2010: 27,-23 - 2011: 27,-22 - 2012: 27,-20 - 2013: 27,-19 - 2014: 28,-23 - 2015: 28,-22 - 2016: 28,-21 - 2017: 28,-20 - 2018: 28,-19 - 2019: 28,-17 - 2020: 29,-24 - 2021: 29,-23 - 2022: 29,-22 - 2023: 29,-21 - 2024: 29,-20 - 2025: 29,-18 - 2026: 30,-24 - 2027: 30,-23 - 2028: 30,-21 - 2029: 30,-20 - 2030: 30,-19 - 2031: 30,-17 - 2032: 31,-24 - 2033: 31,-23 - 2034: 31,-21 - 2035: 31,-20 - 2036: 31,-19 - 2037: 31,-17 - 24,-16: - 2038: 24,-14 - 2039: 24,-13 - 2040: 24,-12 - 2041: 24,-11 - 2042: 25,-15 - 2043: 25,-14 - 2044: 25,-13 - 2045: 25,-12 - 2046: 25,-11 - 2047: 27,-16 - 2048: 27,-15 - 2049: 27,-14 - 2050: 27,-12 - 2051: 28,-16 - 2052: 28,-15 - 2053: 28,-14 - 2054: 28,-13 - 2055: 28,-12 - 2056: 28,-10 - 2057: 29,-16 - 2058: 29,-15 - 2059: 29,-14 - 2060: 29,-13 - 2061: 29,-12 - 2062: 29,-11 - 2063: 29,-10 - 2064: 30,-15 - 2065: 30,-14 - 2066: 30,-13 - 2067: 30,-11 - 2068: 30,-10 - 2069: 31,-15 - 2070: 31,-14 - 2071: 31,-11 - 2072: 31,-10 - 24,-8: - 2073: 24,-8 - 2074: 25,-8 - 2075: 25,-6 - 2076: 26,-5 - 2077: 29,-7 - 2078: 29,-6 - 2079: 29,-1 - 2080: 30,-8 - 2081: 30,-2 - 2082: 31,-3 - 2083: 31,-2 - 24,0: - 2084: 29,2 - 2085: 30,2 - 2086: 31,0 - 24,8: {} - 24,16: {} - 24,24: {} - 24,32: {} - 32,-32: - 2087: 32,-30 - 2088: 32,-29 - 2089: 32,-28 - 2090: 32,-25 - 2091: 33,-32 - 2092: 33,-31 - 2093: 33,-30 - 2094: 33,-29 - 2095: 33,-27 - 2096: 33,-25 - 2097: 34,-29 - 2098: 34,-27 - 2099: 34,-26 - 2100: 34,-25 - 2101: 35,-29 - 2102: 35,-28 - 2103: 35,-27 - 2104: 35,-26 - 2105: 35,-25 - 2106: 36,-32 - 2107: 36,-31 - 2108: 36,-27 - 2109: 36,-26 - 2110: 36,-25 - 2111: 37,-31 - 2112: 38,-25 - 2113: 39,-30 - 32,-24: - 2114: 32,-23 - 2115: 32,-22 - 2116: 32,-20 - 2117: 33,-24 - 2118: 33,-19 - 2119: 33,-17 - 2120: 34,-20 - 2121: 34,-19 - 2122: 35,-22 - 2123: 35,-19 - 2124: 35,-18 - 2125: 35,-17 - 2126: 36,-20 - 2127: 36,-19 - 2128: 36,-18 - 2129: 36,-17 - 2130: 37,-21 - 2131: 37,-18 - 2132: 38,-24 - 2133: 38,-23 - 2134: 38,-22 - 2135: 38,-18 - 2136: 38,-17 - 2137: 39,-22 - 2138: 39,-20 - 2139: 39,-18 - 32,-16: - 2140: 32,-16 - 2141: 32,-15 - 2142: 32,-13 - 2143: 32,-10 - 2144: 33,-15 - 2145: 33,-14 - 2146: 33,-13 - 2147: 33,-12 - 2148: 33,-11 - 2149: 33,-10 - 2150: 34,-15 - 2151: 34,-13 - 2152: 34,-12 - 2153: 34,-9 - 2154: 35,-16 - 2155: 35,-15 - 2156: 35,-13 - 2157: 35,-10 - 2158: 35,-9 - 2159: 36,-16 - 2160: 36,-15 - 2161: 36,-10 - 2162: 37,-16 - 2163: 37,-13 - 2164: 37,-12 - 2165: 37,-10 - 2166: 37,-9 - 2167: 38,-16 - 2168: 38,-12 - 2169: 39,-12 - 32,-8: - 2170: 32,-7 - 2171: 32,-3 - 2172: 34,-7 - 2173: 34,-2 - 2174: 36,-8 - 2175: 36,-7 - 2176: 36,-6 - 2177: 36,-1 - 2178: 37,-5 - 32,0: - 2179: 32,0 - 2180: 32,2 - 2181: 33,5 - 2182: 33,7 - 2183: 34,5 - 2184: 36,0 - 2185: 36,5 - 2186: 37,2 - 2187: 37,5 - 2188: 37,6 - 2189: 39,4 - 32,8: - 2190: 32,8 - 32,16: - 2191: 32,20 - 2192: 33,21 - 2193: 33,22 - 2194: 34,21 - 2195: 34,22 - 2196: 36,22 - 2197: 36,23 - 2198: 37,17 - 2199: 37,21 - 2200: 38,22 - 2201: 38,23 - 2202: 39,22 - 2203: 39,23 - 32,24: - 2204: 32,31 - 2205: 33,31 - 2206: 34,30 - 2207: 34,31 - 2208: 36,24 - 2209: 36,25 - 2210: 36,26 - 2211: 36,27 - 2212: 36,28 - 2213: 36,29 - 2214: 36,30 - 2215: 37,25 - 2216: 37,26 - 2217: 37,28 - 2218: 37,31 - 2219: 38,24 - 2220: 38,25 - 2221: 38,26 - 2222: 38,27 - 2223: 38,28 - 2224: 38,29 - 2225: 39,26 - 2226: 39,28 - 2227: 39,29 - 2228: 39,30 - 2229: 39,31 - 32,32: - 2230: 34,32 - 2231: 38,32 - modifiedTiles: - -24,24: - - -17,26 - - -17,28 - - -17,29 - - -17,30 - - -17,27 - - -17,25 - - -17,31 - - -17,24 - - -18,30 - - -20,30 - - -20,31 - - -19,30 - - -19,31 - - -18,31 - - -18,24 - - -21,24 - - -20,24 - - -24,24 - - -23,24 - - -22,24 - - -19,24 - - -24,27 - - -24,28 - - -23,26 - - -23,27 - - -23,28 - - -23,29 - - -22,26 - - -22,27 - - -22,28 - - -22,29 - - -21,25 - - -21,26 - - -21,27 - - -21,28 - - -20,26 - - -20,27 - - -20,28 - - -19,25 - - -19,26 - - -19,27 - - -19,29 - - -18,25 - - -18,26 - - -18,27 - - -24,25 - - -24,26 - - -24,29 - - -24,30 - - -24,31 - - -23,25 - - -23,30 - - -23,31 - - -22,30 - - -22,31 - - -21,29 - - -21,30 - - -21,31 - - -20,25 - - -20,29 - - -19,28 - - -22,25 - - -18,28 - - -18,29 - -16,32: - - -15,32 - - -15,33 - - -12,36 - - -11,33 - - -11,34 - - -10,32 - - -10,34 - - -10,36 - - -9,32 - - -9,33 - - -9,34 - - -9,35 - - -16,33 - - -16,34 - - -16,35 - - -16,36 - - -15,34 - - -15,35 - - -15,36 - - -14,34 - - -14,35 - - -14,36 - - -13,34 - - -13,35 - - -13,36 - - -12,35 - - -11,32 - - -11,35 - - -11,36 - - -10,33 - - -10,35 - - -9,36 - - -16,32 - - -14,32 - - -14,33 - - -13,32 - - -13,33 - - -12,32 - - -12,33 - - -12,34 - - -14,37 - - -13,38 - - -16,37 - - -16,38 - - -16,39 - - -15,37 - - -15,38 - - -15,39 - - -14,38 - - -14,39 - - -13,37 - - -13,39 - - -12,37 - - -12,38 - - -11,37 - - -11,38 - - -12,39 - - -11,39 - - -10,37 - - -10,38 - - -10,39 - - -9,37 - - -9,38 - - -9,39 - -16,24: - - -16,26 - - -16,29 - - -15,24 - - -15,26 - - -15,27 - - -15,28 - - -15,29 - - -15,30 - - -14,24 - - -14,25 - - -14,26 - - -14,27 - - -14,28 - - -14,29 - - -14,31 - - -13,24 - - -13,25 - - -13,26 - - -13,27 - - -13,29 - - -13,31 - - -12,24 - - -12,25 - - -12,26 - - -12,27 - - -12,30 - - -11,24 - - -11,25 - - -11,26 - - -11,27 - - -11,28 - - -11,29 - - -11,30 - - -10,24 - - -10,25 - - -10,26 - - -10,27 - - -10,28 - - -10,29 - - -10,30 - - -10,31 - - -9,24 - - -9,25 - - -9,27 - - -9,28 - - -9,29 - - -9,30 - - -9,31 - - -16,25 - - -12,28 - - -11,31 - - -16,24 - - -16,27 - - -16,28 - - -16,30 - - -16,31 - - -15,25 - - -15,31 - - -14,30 - - -13,28 - - -13,30 - - -12,29 - - -12,31 - - -9,26 - -16,16: - - -9,23 - - -11,21 - - -10,20 - - -16,21 - - -16,22 - - -16,23 - - -15,21 - - -15,22 - - -15,23 - - -14,21 - - -14,22 - - -14,23 - - -13,22 - - -13,23 - - -12,21 - - -12,22 - - -12,23 - - -11,22 - - -11,23 - - -10,21 - - -10,22 - - -10,23 - - -9,21 - - -9,22 - - -13,21 - - -12,16 - - -12,17 - - -12,18 - - -12,19 - - -12,20 - - -11,16 - - -11,18 - - -11,19 - - -11,20 - - -10,16 - - -10,17 - - -10,18 - - -10,19 - - -9,16 - - -9,17 - - -9,18 - - -9,19 - - -9,20 - - -11,17 - - -15,18 - - -15,19 - - -14,19 - - -13,16 - - -13,17 - - -13,18 - - -13,19 - - -13,20 - - -16,16 - - -16,18 - - -16,20 - - -15,16 - - -15,20 - - -14,16 - - -14,17 - - -14,18 - - -14,20 - - -16,17 - - -16,19 - - -15,17 - 8,32: - - 8,32 - - 8,34 - - 8,35 - - 8,36 - - 9,34 - - 9,35 - - 10,33 - - 10,34 - - 11,32 - - 12,33 - - 12,34 - - 14,32 - - 14,34 - - 13,33 - - 8,33 - - 9,32 - - 9,33 - - 9,36 - - 10,32 - - 10,35 - - 10,36 - - 11,33 - - 11,34 - - 12,32 - - 13,32 - - 13,34 - - 14,33 - - 15,32 - - 15,33 - - 15,34 - - 8,37 - - 8,38 - - 8,39 - - 9,37 - - 9,39 - - 10,38 - - 10,39 - - 11,35 - - 11,37 - - 11,38 - - 11,39 - - 12,35 - - 12,36 - - 12,37 - - 12,38 - - 12,39 - - 13,35 - - 13,36 - - 13,37 - - 13,38 - - 13,39 - - 14,35 - - 14,37 - - 14,38 - - 14,39 - - 15,35 - - 15,36 - - 15,38 - - 15,39 - - 9,38 - - 10,37 - - 14,36 - - 11,36 - - 15,37 - 8,24: - - 8,25 - - 8,26 - - 8,27 - - 8,31 - - 9,27 - - 9,30 - - 9,31 - - 10,27 - - 10,28 - - 10,29 - - 10,30 - - 10,31 - - 11,26 - - 11,27 - - 11,28 - - 11,29 - - 11,30 - - 12,26 - - 12,27 - - 12,28 - - 12,29 - - 12,30 - - 12,31 - - 13,28 - - 13,29 - - 13,30 - - 14,29 - - 14,30 - - 8,24 - - 9,24 - - 9,25 - - 9,26 - - 10,24 - - 10,25 - - 10,26 - - 11,24 - - 11,25 - - 12,24 - - 12,25 - - 13,24 - - 13,25 - - 13,26 - - 13,27 - - 13,31 - - 14,24 - - 14,25 - - 14,26 - - 14,27 - - 14,28 - - 8,28 - - 8,29 - - 8,30 - - 9,28 - - 9,29 - - 11,31 - - 14,31 - - 15,29 - - 15,30 - - 15,31 - - 15,24 - - 15,25 - - 15,26 - - 15,27 - - 15,28 - -24,32: - - -17,32 - - -17,33 - - -17,34 - - -17,35 - - -17,36 - - -20,32 - - -20,33 - - -20,34 - - -20,35 - - -19,32 - - -19,33 - - -19,34 - - -19,35 - - -18,32 - - -18,33 - - -18,34 - - -18,35 - - -24,32 - - -24,33 - - -24,34 - - -24,35 - - -24,36 - - -23,32 - - -23,33 - - -23,34 - - -23,35 - - -23,36 - - -22,32 - - -22,33 - - -22,34 - - -22,35 - - -22,36 - - -21,32 - - -21,33 - - -21,34 - - -21,35 - - -21,36 - - -20,36 - - -19,36 - - -18,36 - - -20,37 - - -24,37 - - -24,38 - - -23,37 - - -23,38 - - -22,37 - - -22,38 - - -21,37 - - -21,38 - - -20,38 - - -19,37 - - -19,38 - - -18,37 - - -18,38 - - -17,37 - - -17,38 - - -17,39 - - -24,39 - - -23,39 - - -22,39 - - -21,39 - - -20,39 - - -19,39 - - -18,39 - 16,32: - - 16,32 - - 16,33 - - 16,34 - - 16,35 - - 16,36 - - 16,37 - - 16,38 - - 16,39 - - 17,32 - - 17,34 - - 17,35 - - 17,36 - - 17,37 - - 17,39 - - 18,33 - - 18,34 - - 18,35 - - 18,36 - - 18,37 - - 18,38 - - 18,39 - - 19,32 - - 19,33 - - 19,34 - - 19,35 - - 19,36 - - 19,37 - - 19,38 - - 19,39 - - 20,32 - - 20,33 - - 20,34 - - 20,35 - - 20,36 - - 20,37 - - 20,38 - - 20,39 - - 21,32 - - 21,33 - - 21,34 - - 21,35 - - 21,37 - - 21,38 - - 21,39 - - 22,33 - - 22,34 - - 22,35 - - 22,36 - - 22,37 - - 22,38 - - 22,39 - - 23,32 - - 23,33 - - 23,34 - - 23,35 - - 23,36 - - 23,37 - - 23,38 - - 23,39 - - 17,38 - - 17,33 - - 18,32 - - 21,36 - - 22,32 - 16,24: - - 16,29 - - 16,30 - - 16,31 - - 16,24 - - 16,25 - - 16,26 - - 16,27 - - 16,28 - - 17,24 - - 17,25 - - 17,26 - - 17,27 - - 17,28 - - 17,29 - - 17,30 - - 17,31 - - 18,24 - - 18,25 - - 18,26 - - 18,27 - - 18,28 - - 18,31 - - 19,24 - - 19,25 - - 19,26 - - 19,28 - - 19,29 - - 19,30 - - 20,25 - - 20,26 - - 20,27 - - 20,28 - - 20,29 - - 20,30 - - 20,31 - - 21,24 - - 21,25 - - 21,26 - - 21,27 - - 21,28 - - 21,29 - - 21,30 - - 21,31 - - 22,24 - - 22,25 - - 22,26 - - 22,27 - - 22,28 - - 22,29 - - 22,30 - - 22,31 - - 23,25 - - 23,26 - - 23,27 - - 23,28 - - 23,29 - - 23,30 - - 23,31 - - 19,27 - - 18,29 - - 18,30 - - 20,24 - - 23,24 - - 19,31 - 16,16: - - 16,21 - - 16,22 - - 16,23 - - 16,16 - - 16,17 - - 16,19 - - 16,20 - - 17,16 - - 17,17 - - 17,18 - - 17,20 - - 17,21 - - 17,22 - - 17,23 - - 18,16 - - 18,17 - - 18,18 - - 18,19 - - 18,20 - - 18,21 - - 18,22 - - 18,23 - - 19,16 - - 19,17 - - 19,18 - - 19,19 - - 19,20 - - 19,21 - - 19,22 - - 19,23 - - 20,16 - - 20,17 - - 20,18 - - 20,19 - - 20,20 - - 20,21 - - 20,22 - - 20,23 - - 21,16 - - 21,17 - - 21,18 - - 21,19 - - 21,21 - - 21,22 - - 21,23 - - 22,16 - - 22,17 - - 22,18 - - 22,19 - - 22,20 - - 22,21 - - 22,22 - - 23,16 - - 23,17 - - 23,18 - - 23,19 - - 23,20 - - 23,21 - - 23,22 - - 16,18 - - 17,19 - - 22,23 - - 21,20 - - 23,23 - 8,16: - - 8,21 - - 8,22 - - 8,23 - - 9,21 - - 9,22 - - 9,23 - - 10,21 - - 10,22 - - 10,23 - - 11,21 - - 11,22 - - 11,23 - - 12,21 - - 12,22 - - 12,23 - - 13,21 - - 13,22 - - 13,23 - - 14,21 - - 14,22 - - 14,23 - - 15,21 - - 15,22 - - 15,23 - - 8,16 - - 8,18 - - 8,19 - - 8,20 - - 9,16 - - 9,17 - - 9,18 - - 9,19 - - 9,20 - - 10,17 - - 10,18 - - 10,19 - - 10,20 - - 11,16 - - 11,17 - - 11,19 - - 11,20 - - 12,16 - - 12,17 - - 12,18 - - 12,19 - - 12,20 - - 13,16 - - 13,17 - - 13,18 - - 13,19 - - 13,20 - - 14,16 - - 14,17 - - 14,18 - - 14,19 - - 14,20 - - 15,16 - - 15,17 - - 15,18 - - 15,19 - - 15,20 - - 10,16 - - 8,17 - - 11,18 - -8,32: - - -8,32 - - -8,33 - - -8,34 - - -8,35 - - -7,32 - - -7,33 - - -7,34 - - -7,35 - - -6,32 - - -6,33 - - -6,34 - - -6,35 - - -6,36 - - -5,32 - - -5,33 - - -5,34 - - -5,35 - - -4,35 - - -2,32 - - -2,35 - - -1,32 - - -8,36 - - -7,36 - - -5,36 - - -4,36 - - -3,36 - - -2,34 - - -2,36 - - -1,33 - - -1,34 - - -1,35 - - -1,36 - - -4,32 - - -4,33 - - -4,34 - - -3,32 - - -3,33 - - -3,34 - - -3,35 - - -2,33 - - -8,37 - - -8,38 - - -8,39 - - -7,37 - - -7,38 - - -7,39 - - -6,37 - - -6,39 - - -5,37 - - -5,38 - - -5,39 - - -4,37 - - -4,38 - - -4,39 - - -3,37 - - -3,38 - - -3,39 - - -2,37 - - -2,38 - - -1,37 - - -1,38 - - -1,39 - - -6,38 - - -2,39 - -8,24: - - -8,25 - - -8,26 - - -8,28 - - -8,29 - - -8,30 - - -8,31 - - -7,24 - - -7,26 - - -7,27 - - -7,28 - - -7,29 - - -7,30 - - -7,31 - - -6,24 - - -6,25 - - -6,26 - - -6,27 - - -6,28 - - -6,29 - - -6,30 - - -6,31 - - -5,24 - - -5,26 - - -5,27 - - -5,28 - - -5,29 - - -5,30 - - -5,31 - - -4,24 - - -4,26 - - -4,27 - - -4,28 - - -4,29 - - -4,30 - - -4,31 - - -3,25 - - -3,28 - - -3,29 - - -3,30 - - -2,24 - - -2,25 - - -2,27 - - -2,30 - - -2,31 - - -1,24 - - -1,26 - - -1,28 - - -7,25 - - -5,25 - - -4,25 - - -3,24 - - -3,26 - - -3,27 - - -1,30 - - -8,24 - - -8,27 - - -3,31 - - -2,26 - - -2,28 - - -2,29 - - -1,25 - - -1,27 - - -1,29 - - -1,31 - -8,16: - - -8,23 - - -8,22 - - -8,21 - - -7,21 - - -7,22 - - -6,22 - - -6,23 - - -5,22 - - -5,23 - - -4,21 - - -4,22 - - -4,23 - - -3,21 - - -3,22 - - -2,21 - - -2,23 - - -1,21 - - -1,22 - - -1,23 - - -8,16 - - -8,17 - - -8,18 - - -8,19 - - -8,20 - - -7,16 - - -7,17 - - -7,18 - - -7,19 - - -7,20 - - -7,23 - - -6,16 - - -6,17 - - -6,18 - - -6,19 - - -6,20 - - -6,21 - - -5,16 - - -5,17 - - -5,18 - - -5,19 - - -5,20 - - -5,21 - - -4,16 - - -4,17 - - -4,18 - - -4,19 - - -4,20 - - -3,16 - - -3,17 - - -3,18 - - -3,19 - - -3,20 - - -3,23 - - -2,16 - - -2,17 - - -2,18 - - -2,19 - - -2,20 - - -2,22 - - -1,16 - - -1,17 - - -1,18 - - -1,19 - - -1,20 - 24,40: - - 24,40 - - 24,41 - - 24,42 - - 24,43 - - 24,44 - - 24,45 - - 24,47 - - 25,40 - - 25,41 - - 25,42 - - 25,43 - - 25,44 - - 25,45 - - 25,46 - - 25,47 - - 26,40 - - 26,41 - - 26,42 - - 26,43 - - 26,44 - - 26,45 - - 26,46 - - 26,47 - - 27,40 - - 27,41 - - 27,42 - - 27,43 - - 27,44 - - 27,45 - - 27,46 - - 27,47 - - 28,40 - - 28,41 - - 28,42 - - 28,43 - - 28,44 - - 28,45 - - 28,46 - - 28,47 - - 29,40 - - 29,41 - - 29,42 - - 29,43 - - 29,45 - - 29,46 - - 29,47 - - 30,40 - - 30,41 - - 30,42 - - 30,43 - - 30,44 - - 30,46 - - 31,40 - - 31,41 - - 31,42 - - 31,43 - - 31,44 - - 31,45 - - 31,46 - - 31,47 - - 24,46 - - 29,44 - - 30,45 - - 30,47 - 24,32: - - 24,32 - - 24,33 - - 24,34 - - 24,35 - - 24,36 - - 24,37 - - 24,38 - - 25,32 - - 25,33 - - 25,34 - - 25,35 - - 25,36 - - 25,37 - - 25,38 - - 25,39 - - 26,32 - - 26,33 - - 26,35 - - 26,36 - - 26,37 - - 26,38 - - 26,39 - - 27,32 - - 27,33 - - 27,34 - - 27,35 - - 27,36 - - 27,37 - - 27,38 - - 27,39 - - 28,32 - - 28,33 - - 28,34 - - 28,35 - - 28,36 - - 28,37 - - 28,38 - - 28,39 - - 29,32 - - 29,33 - - 29,34 - - 29,35 - - 29,36 - - 29,38 - - 30,32 - - 30,33 - - 30,35 - - 30,36 - - 30,37 - - 30,38 - - 30,39 - - 31,32 - - 31,33 - - 31,36 - - 31,37 - - 31,38 - - 31,39 - - 24,39 - - 29,39 - - 26,34 - - 29,37 - - 31,34 - - 31,35 - - 30,34 - 24,24: - - 24,24 - - 24,25 - - 24,26 - - 24,27 - - 24,28 - - 24,29 - - 24,31 - - 25,24 - - 25,26 - - 25,27 - - 25,28 - - 25,29 - - 25,30 - - 25,31 - - 26,24 - - 26,25 - - 26,26 - - 26,27 - - 26,28 - - 26,29 - - 26,30 - - 26,31 - - 27,24 - - 27,25 - - 27,26 - - 27,27 - - 27,28 - - 27,29 - - 27,30 - - 27,31 - - 28,24 - - 28,25 - - 28,26 - - 28,27 - - 28,28 - - 28,29 - - 28,30 - - 28,31 - - 29,24 - - 29,25 - - 29,26 - - 29,27 - - 29,28 - - 29,29 - - 29,30 - - 29,31 - - 30,24 - - 30,25 - - 30,26 - - 30,27 - - 30,28 - - 30,29 - - 30,30 - - 30,31 - - 31,24 - - 31,25 - - 31,26 - - 31,27 - - 31,28 - - 31,29 - - 31,30 - - 31,31 - - 24,30 - - 25,25 - 24,16: - - 24,17 - - 24,18 - - 24,19 - - 24,20 - - 24,21 - - 24,22 - - 24,23 - - 25,16 - - 25,17 - - 25,18 - - 25,19 - - 25,21 - - 25,22 - - 25,23 - - 26,16 - - 26,17 - - 26,18 - - 26,19 - - 26,21 - - 26,22 - - 26,23 - - 27,16 - - 27,17 - - 27,18 - - 27,19 - - 27,20 - - 27,21 - - 27,22 - - 27,23 - - 28,16 - - 28,17 - - 28,18 - - 28,19 - - 28,20 - - 28,21 - - 28,22 - - 28,23 - - 29,16 - - 29,17 - - 29,18 - - 29,19 - - 29,20 - - 29,21 - - 29,22 - - 29,23 - - 30,16 - - 30,17 - - 30,18 - - 30,19 - - 30,20 - - 30,21 - - 30,22 - - 30,23 - - 31,16 - - 31,17 - - 31,18 - - 31,19 - - 31,20 - - 31,21 - - 31,22 - - 31,23 - - 24,16 - - 25,20 - - 26,20 - 24,8: - - 24,8 - - 24,10 - - 24,11 - - 24,12 - - 24,13 - - 24,14 - - 24,15 - - 25,8 - - 25,9 - - 25,10 - - 25,11 - - 25,13 - - 25,14 - - 25,15 - - 26,8 - - 26,9 - - 26,10 - - 26,11 - - 26,12 - - 26,13 - - 26,14 - - 26,15 - - 27,9 - - 27,10 - - 27,11 - - 27,12 - - 27,14 - - 27,15 - - 28,8 - - 28,9 - - 28,10 - - 28,11 - - 28,12 - - 28,13 - - 28,15 - - 29,8 - - 29,9 - - 29,11 - - 29,13 - - 29,14 - - 29,15 - - 30,8 - - 30,9 - - 30,10 - - 30,11 - - 30,12 - - 30,15 - - 31,8 - - 31,9 - - 31,10 - - 31,11 - - 31,12 - - 31,13 - - 31,15 - - 27,13 - - 24,9 - - 25,12 - - 27,8 - - 28,14 - - 29,10 - - 29,12 - - 30,13 - - 30,14 - - 31,14 - 16,40: - - 16,40 - - 16,41 - - 16,42 - - 16,43 - - 16,44 - - 16,45 - - 16,46 - - 16,47 - - 17,40 - - 17,41 - - 17,42 - - 17,43 - - 17,44 - - 17,45 - - 17,46 - - 17,47 - - 18,40 - - 18,41 - - 18,42 - - 18,43 - - 18,44 - - 18,45 - - 18,46 - - 18,47 - - 19,40 - - 19,41 - - 19,42 - - 19,43 - - 19,44 - - 19,45 - - 19,47 - - 20,40 - - 20,41 - - 20,42 - - 20,43 - - 20,44 - - 20,45 - - 20,46 - - 20,47 - - 21,40 - - 21,41 - - 21,42 - - 21,43 - - 21,44 - - 21,45 - - 21,46 - - 21,47 - - 22,41 - - 22,42 - - 22,43 - - 22,44 - - 22,45 - - 22,46 - - 22,47 - - 23,40 - - 23,41 - - 23,42 - - 23,43 - - 23,45 - - 23,46 - - 23,47 - - 19,46 - - 22,40 - - 23,44 - 16,8: - - 16,8 - - 16,9 - - 16,10 - - 16,11 - - 16,12 - - 16,13 - - 16,14 - - 16,15 - - 17,8 - - 17,9 - - 17,10 - - 17,11 - - 17,12 - - 17,13 - - 17,14 - - 17,15 - - 18,8 - - 18,9 - - 18,10 - - 18,11 - - 18,12 - - 18,13 - - 18,14 - - 18,15 - - 19,8 - - 19,9 - - 19,10 - - 19,11 - - 19,12 - - 19,13 - - 19,14 - - 19,15 - - 20,8 - - 20,9 - - 20,10 - - 20,11 - - 20,12 - - 20,13 - - 20,14 - - 20,15 - - 21,8 - - 21,9 - - 21,10 - - 21,11 - - 21,12 - - 21,13 - - 21,14 - - 21,15 - - 22,8 - - 22,9 - - 22,10 - - 22,11 - - 22,12 - - 22,13 - - 22,14 - - 22,15 - - 23,8 - - 23,9 - - 23,10 - - 23,11 - - 23,12 - - 23,13 - - 23,14 - - 23,15 - 8,8: - - 8,8 - - 8,9 - - 8,10 - - 8,11 - - 8,12 - - 8,13 - - 8,14 - - 8,15 - - 9,8 - - 9,9 - - 9,10 - - 9,11 - - 9,12 - - 9,13 - - 9,14 - - 10,8 - - 10,9 - - 10,10 - - 10,12 - - 10,13 - - 10,14 - - 10,15 - - 11,8 - - 11,9 - - 11,11 - - 11,12 - - 11,13 - - 11,14 - - 11,15 - - 12,9 - - 12,10 - - 12,11 - - 12,12 - - 12,13 - - 12,14 - - 12,15 - - 13,8 - - 13,9 - - 13,10 - - 13,11 - - 13,12 - - 13,13 - - 13,14 - - 13,15 - - 14,8 - - 14,9 - - 14,10 - - 14,11 - - 14,13 - - 14,14 - - 14,15 - - 15,9 - - 15,10 - - 15,11 - - 15,12 - - 15,13 - - 15,14 - - 15,15 - - 10,11 - - 14,12 - - 9,15 - - 11,10 - - 12,8 - - 15,8 - 0,8: - - 0,9 - - 0,10 - - 0,11 - - 0,12 - - 0,13 - - 0,14 - - 0,15 - - 1,8 - - 1,9 - - 1,10 - - 1,11 - - 1,12 - - 1,13 - - 1,14 - - 1,15 - - 2,8 - - 2,9 - - 2,10 - - 2,11 - - 2,12 - - 2,13 - - 2,14 - - 2,15 - - 3,8 - - 3,10 - - 3,11 - - 3,12 - - 3,13 - - 3,14 - - 3,15 - - 4,8 - - 4,9 - - 4,10 - - 4,11 - - 4,12 - - 4,13 - - 4,14 - - 4,15 - - 5,8 - - 5,9 - - 5,10 - - 5,11 - - 5,12 - - 5,13 - - 5,14 - - 5,15 - - 6,8 - - 6,10 - - 6,11 - - 6,12 - - 6,13 - - 6,14 - - 6,15 - - 7,8 - - 7,9 - - 7,10 - - 7,11 - - 7,13 - - 7,15 - - 0,8 - - 3,9 - - 7,12 - - 7,14 - - 6,9 - -8,8: - - -8,8 - - -8,9 - - -8,10 - - -8,11 - - -8,12 - - -8,13 - - -8,14 - - -8,15 - - -7,8 - - -7,9 - - -7,10 - - -7,11 - - -7,12 - - -7,13 - - -7,14 - - -7,15 - - -6,8 - - -6,9 - - -6,10 - - -6,11 - - -6,12 - - -6,13 - - -6,14 - - -6,15 - - -5,8 - - -5,9 - - -5,10 - - -5,11 - - -5,12 - - -5,13 - - -5,14 - - -5,15 - - -4,8 - - -4,9 - - -4,10 - - -4,11 - - -4,12 - - -4,13 - - -4,14 - - -4,15 - - -3,8 - - -3,9 - - -3,10 - - -3,11 - - -3,12 - - -3,13 - - -3,14 - - -3,15 - - -2,8 - - -2,9 - - -2,10 - - -2,11 - - -2,12 - - -2,13 - - -2,14 - - -2,15 - - -1,8 - - -1,9 - - -1,10 - - -1,11 - - -1,12 - - -1,13 - - -1,14 - - -1,15 - 8,40: - - 8,40 - - 8,41 - - 8,42 - - 8,44 - - 8,45 - - 8,46 - - 8,47 - - 9,40 - - 9,41 - - 9,43 - - 9,44 - - 9,45 - - 9,46 - - 9,47 - - 10,40 - - 10,41 - - 10,42 - - 10,43 - - 10,44 - - 10,45 - - 10,46 - - 10,47 - - 11,40 - - 11,41 - - 11,42 - - 11,43 - - 11,44 - - 11,45 - - 11,46 - - 11,47 - - 12,40 - - 12,41 - - 12,42 - - 12,43 - - 12,44 - - 12,45 - - 12,46 - - 13,40 - - 13,41 - - 13,42 - - 13,43 - - 13,44 - - 13,45 - - 13,47 - - 14,40 - - 14,41 - - 14,42 - - 14,43 - - 14,44 - - 14,46 - - 14,47 - - 15,41 - - 15,43 - - 15,44 - - 15,45 - - 15,46 - - 15,47 - - 8,43 - - 9,42 - - 12,47 - - 13,46 - - 14,45 - - 15,40 - - 15,42 - 0,40: - - 0,41 - - 0,44 - - 0,45 - - 0,46 - - 1,40 - - 1,41 - - 1,42 - - 1,43 - - 1,44 - - 1,45 - - 1,47 - - 2,40 - - 2,41 - - 2,42 - - 2,43 - - 2,44 - - 2,45 - - 2,46 - - 2,47 - - 3,40 - - 3,42 - - 3,43 - - 3,44 - - 3,45 - - 3,46 - - 4,40 - - 4,41 - - 4,42 - - 4,43 - - 4,44 - - 4,45 - - 4,46 - - 4,47 - - 5,40 - - 5,41 - - 5,42 - - 5,43 - - 5,44 - - 5,45 - - 5,46 - - 5,47 - - 6,40 - - 6,41 - - 6,42 - - 6,43 - - 6,45 - - 6,46 - - 6,47 - - 7,40 - - 7,41 - - 7,42 - - 7,43 - - 7,44 - - 7,45 - - 7,46 - - 7,47 - - 0,40 - - 0,43 - - 3,41 - - 0,42 - - 0,47 - - 1,46 - - 3,47 - - 6,44 - 0,32: - - 2,32 - - 3,33 - - 4,32 - - 4,33 - - 4,34 - - 4,35 - - 5,32 - - 5,33 - - 5,34 - - 5,35 - - 5,36 - - 6,33 - - 6,34 - - 6,35 - - 7,32 - - 7,33 - - 7,35 - - 0,32 - - 0,33 - - 0,34 - - 0,35 - - 0,36 - - 1,32 - - 1,33 - - 1,34 - - 1,35 - - 1,36 - - 2,33 - - 2,34 - - 2,35 - - 2,36 - - 3,32 - - 3,34 - - 3,35 - - 3,36 - - 6,36 - - 0,37 - - 0,38 - - 0,39 - - 1,37 - - 1,38 - - 1,39 - - 2,37 - - 2,38 - - 2,39 - - 3,37 - - 3,38 - - 3,39 - - 4,36 - - 4,37 - - 4,38 - - 4,39 - - 5,38 - - 5,39 - - 6,32 - - 6,37 - - 6,38 - - 6,39 - - 7,34 - - 7,36 - - 7,37 - - 7,38 - - 7,39 - - 5,37 - 0,24: - - 0,24 - - 0,26 - - 0,30 - - 0,31 - - 1,26 - - 1,27 - - 1,30 - - 2,24 - - 2,25 - - 2,27 - - 2,28 - - 2,30 - - 2,31 - - 3,24 - - 3,26 - - 3,27 - - 3,29 - - 3,30 - - 3,31 - - 4,24 - - 4,25 - - 4,26 - - 4,28 - - 4,29 - - 4,30 - - 5,25 - - 5,26 - - 5,29 - - 5,30 - - 5,31 - - 6,24 - - 6,25 - - 6,27 - - 6,28 - - 6,31 - - 7,25 - - 7,26 - - 7,27 - - 7,31 - - 1,31 - - 3,25 - - 4,31 - - 5,28 - - 0,25 - - 0,27 - - 0,28 - - 0,29 - - 1,24 - - 1,25 - - 1,28 - - 1,29 - - 2,26 - - 2,29 - - 3,28 - - 4,27 - - 5,24 - - 5,27 - - 6,26 - - 6,29 - - 6,30 - - 7,24 - - 7,28 - - 7,29 - - 7,30 - 0,16: - - 3,23 - - 5,21 - - 5,23 - - 6,21 - - 6,23 - - 7,21 - - 7,22 - - 7,23 - - 1,23 - - 3,22 - - 4,20 - - 0,16 - - 0,17 - - 0,18 - - 0,19 - - 0,20 - - 0,21 - - 0,22 - - 0,23 - - 1,16 - - 1,17 - - 1,18 - - 1,19 - - 1,20 - - 1,21 - - 1,22 - - 2,16 - - 2,17 - - 2,18 - - 2,19 - - 2,20 - - 2,21 - - 2,22 - - 2,23 - - 3,17 - - 3,18 - - 3,19 - - 3,20 - - 3,21 - - 4,16 - - 4,17 - - 4,18 - - 4,19 - - 4,21 - - 4,22 - - 4,23 - - 5,16 - - 5,17 - - 5,18 - - 5,19 - - 5,20 - - 5,22 - - 6,16 - - 6,17 - - 6,18 - - 6,19 - - 6,20 - - 6,22 - - 7,16 - - 7,17 - - 7,18 - - 7,19 - - 7,20 - - 3,16 - -24,16: - - -17,21 - - -17,22 - - -17,23 - - -22,21 - - -21,21 - - -18,21 - - -21,22 - - -21,23 - - -20,21 - - -20,22 - - -20,23 - - -19,21 - - -19,22 - - -19,23 - - -23,21 - - -23,22 - - -23,23 - - -22,22 - - -22,23 - - -18,22 - - -18,23 - - -24,21 - - -24,22 - - -24,23 - - -17,18 - - -17,19 - - -17,20 - - -17,16 - - -17,17 - - -24,16 - - -24,17 - - -24,18 - - -24,19 - - -24,20 - - -23,16 - - -23,17 - - -23,18 - - -23,19 - - -23,20 - - -22,17 - - -22,18 - - -22,20 - - -21,17 - - -21,18 - - -21,19 - - -20,16 - - -20,17 - - -20,19 - - -19,16 - - -19,17 - - -19,18 - - -19,19 - - -18,17 - - -18,19 - - -22,16 - - -22,19 - - -21,16 - - -21,20 - - -20,18 - - -20,20 - - -19,20 - - -18,20 - - -18,16 - - -18,18 - -8,40: - - -8,40 - - -8,41 - - -8,42 - - -8,43 - - -8,44 - - -8,45 - - -8,46 - - -8,47 - - -7,40 - - -7,41 - - -7,42 - - -7,43 - - -7,44 - - -7,45 - - -7,46 - - -7,47 - - -6,40 - - -6,41 - - -6,42 - - -6,43 - - -6,45 - - -6,46 - - -6,47 - - -5,40 - - -5,41 - - -5,42 - - -5,43 - - -5,44 - - -5,45 - - -5,46 - - -5,47 - - -4,40 - - -4,41 - - -4,42 - - -4,43 - - -4,44 - - -4,45 - - -4,46 - - -4,47 - - -3,40 - - -3,41 - - -3,42 - - -3,43 - - -3,44 - - -3,45 - - -3,46 - - -3,47 - - -2,40 - - -2,41 - - -2,42 - - -2,43 - - -2,44 - - -2,45 - - -2,47 - - -1,40 - - -1,41 - - -1,42 - - -1,43 - - -1,44 - - -1,45 - - -1,46 - - -1,47 - - -2,46 - - -6,44 - -40,24: - - -33,24 - - -33,25 - - -33,28 - - -34,25 - - -34,26 - - -34,27 - - -34,28 - - -34,29 - - -33,26 - - -33,27 - - -33,29 - - -40,27 - - -40,28 - - -40,30 - - -39,26 - - -39,30 - - -34,24 - - -34,30 - - -34,31 - - -33,30 - - -33,31 - - -36,24 - - -35,24 - - -40,24 - - -40,25 - - -40,26 - - -40,29 - - -40,31 - - -39,24 - - -39,25 - - -39,27 - - -39,28 - - -39,29 - - -39,31 - - -38,24 - - -38,25 - - -38,26 - - -38,29 - - -38,30 - - -37,24 - - -37,25 - - -37,26 - - -37,30 - - -37,31 - - -36,25 - - -36,26 - - -35,25 - - -35,27 - - -35,28 - - -35,30 - -32,32: - - -28,32 - - -28,33 - - -28,34 - - -28,35 - - -27,32 - - -27,33 - - -27,34 - - -27,35 - - -26,32 - - -26,33 - - -26,34 - - -26,35 - - -25,32 - - -25,33 - - -25,34 - - -25,35 - - -28,36 - - -27,36 - - -26,36 - - -25,36 - - -28,37 - - -28,38 - - -27,37 - - -27,38 - - -26,37 - - -26,38 - - -25,37 - - -25,38 - - -32,32 - - -32,35 - - -31,32 - - -31,33 - - -31,35 - - -30,32 - - -30,33 - - -29,32 - - -32,34 - - -31,34 - - -30,34 - - -30,35 - - -29,33 - - -29,34 - - -29,35 - - -32,33 - - -28,39 - - -27,39 - - -26,39 - - -25,39 - - -30,36 - - -30,37 - - -30,38 - - -30,39 - - -29,36 - - -29,37 - - -29,38 - - -29,39 - - -32,36 - - -32,37 - - -32,38 - - -32,39 - - -31,36 - - -31,37 - - -31,38 - - -31,39 - -32,24: - - -32,26 - - -32,27 - - -32,28 - - -32,30 - - -31,24 - - -31,25 - - -31,27 - - -31,28 - - -31,30 - - -30,24 - - -30,25 - - -30,30 - - -32,25 - - -31,26 - - -30,26 - - -30,27 - - -30,28 - - -30,29 - - -29,24 - - -29,25 - - -29,26 - - -29,27 - - -29,28 - - -29,29 - - -29,30 - - -28,24 - - -28,25 - - -28,26 - - -28,27 - - -28,28 - - -28,29 - - -28,30 - - -28,31 - - -27,24 - - -27,25 - - -27,26 - - -27,27 - - -27,28 - - -27,29 - - -27,30 - - -27,31 - - -26,24 - - -26,25 - - -26,26 - - -26,27 - - -26,28 - - -26,29 - - -26,30 - - -26,31 - - -25,24 - - -25,25 - - -25,26 - - -25,27 - - -25,28 - - -25,29 - - -25,30 - - -25,31 - - -32,24 - - -32,29 - - -31,29 - - -32,31 - - -31,31 - - -30,31 - - -29,31 - -32,16: - - -28,21 - - -28,22 - - -28,23 - - -27,21 - - -26,23 - - -25,21 - - -25,22 - - -27,22 - - -27,23 - - -26,21 - - -26,22 - - -25,23 - - -25,19 - - -28,16 - - -27,16 - - -26,16 - - -26,17 - - -26,20 - - -25,16 - - -25,17 - - -25,18 - - -25,20 - - -28,17 - - -28,18 - - -28,19 - - -28,20 - - -27,17 - - -27,18 - - -27,19 - - -27,20 - - -26,18 - - -26,19 - - -32,16 - - -31,16 - - -31,17 - - -31,20 - - -31,21 - - -30,16 - - -32,19 - - -31,18 - - -31,19 - - -30,17 - - -30,18 - - -30,19 - - -30,20 - - -29,16 - - -29,17 - - -29,18 - - -29,19 - - -29,20 - - -30,21 - - -29,21 - - -31,23 - - -30,22 - - -30,23 - - -29,22 - - -29,23 - - -31,22 - - -32,17 - - -32,18 - - -32,20 - - -32,21 - - -32,22 - - -32,23 - -16,48: - - -16,48 - - -16,49 - - -15,48 - - -15,49 - - -14,48 - - -14,49 - - -13,48 - - -13,49 - - -16,50 - - -16,51 - - -16,52 - - -16,53 - - -16,54 - - -15,50 - - -15,51 - - -15,52 - - -15,53 - - -15,55 - - -14,50 - - -14,51 - - -14,52 - - -14,53 - - -14,54 - - -14,55 - - -13,50 - - -13,51 - - -13,52 - - -13,53 - - -13,55 - - -12,48 - - -12,49 - - -12,50 - - -12,51 - - -12,52 - - -12,54 - - -12,55 - - -11,48 - - -11,49 - - -11,50 - - -11,51 - - -11,52 - - -11,53 - - -11,54 - - -10,48 - - -10,49 - - -10,50 - - -10,51 - - -10,52 - - -10,53 - - -10,54 - - -10,55 - - -9,48 - - -9,49 - - -9,50 - - -9,51 - - -9,53 - - -9,54 - - -9,55 - - -16,55 - - -15,54 - - -13,54 - - -12,53 - - -11,55 - - -9,52 - -24,48: - - -17,48 - - -17,49 - - -24,48 - - -24,49 - - -24,50 - - -24,51 - - -24,52 - - -24,53 - - -24,54 - - -24,55 - - -23,48 - - -23,49 - - -23,50 - - -23,51 - - -23,52 - - -23,53 - - -23,54 - - -23,55 - - -22,48 - - -22,49 - - -22,50 - - -22,51 - - -22,52 - - -22,53 - - -22,55 - - -21,49 - - -21,50 - - -21,51 - - -21,52 - - -21,53 - - -21,54 - - -21,55 - - -20,48 - - -20,49 - - -20,50 - - -20,51 - - -20,52 - - -20,53 - - -20,54 - - -20,55 - - -19,48 - - -19,49 - - -19,50 - - -19,51 - - -19,52 - - -19,53 - - -19,54 - - -19,55 - - -18,48 - - -18,49 - - -18,50 - - -18,51 - - -18,52 - - -18,53 - - -18,54 - - -18,55 - - -17,51 - - -17,52 - - -17,53 - - -17,54 - - -17,55 - - -21,48 - - -22,54 - - -17,50 - -16,40: - - -15,43 - - -15,44 - - -16,40 - - -16,41 - - -16,42 - - -16,46 - - -16,47 - - -15,40 - - -15,41 - - -15,42 - - -15,45 - - -15,46 - - -15,47 - - -14,40 - - -14,41 - - -14,42 - - -14,43 - - -14,44 - - -14,45 - - -14,46 - - -14,47 - - -13,40 - - -13,41 - - -13,42 - - -13,43 - - -13,44 - - -13,45 - - -13,46 - - -13,47 - - -16,43 - - -16,44 - - -16,45 - - -9,41 - - -12,40 - - -12,41 - - -12,42 - - -12,43 - - -11,40 - - -11,41 - - -11,42 - - -11,43 - - -10,40 - - -10,41 - - -10,42 - - -10,43 - - -9,40 - - -9,42 - - -9,43 - - -12,44 - - -12,45 - - -12,46 - - -12,47 - - -11,44 - - -11,45 - - -11,46 - - -11,47 - - -10,44 - - -10,45 - - -10,46 - - -10,47 - - -9,44 - - -9,45 - - -9,46 - - -9,47 - -24,40: - - -17,40 - - -17,41 - - -17,42 - - -17,43 - - -17,44 - - -17,45 - - -17,46 - - -17,47 - - -24,43 - - -23,43 - - -21,43 - - -24,40 - - -24,41 - - -24,42 - - -23,40 - - -23,41 - - -23,42 - - -22,40 - - -22,41 - - -22,42 - - -22,43 - - -21,40 - - -21,41 - - -21,42 - - -20,40 - - -20,41 - - -20,42 - - -20,43 - - -20,44 - - -19,40 - - -19,41 - - -19,42 - - -19,43 - - -19,44 - - -18,40 - - -18,41 - - -18,42 - - -18,43 - - -18,44 - - -20,45 - - -19,45 - - -18,45 - - -24,44 - - -24,45 - - -23,44 - - -23,45 - - -22,44 - - -22,45 - - -21,44 - - -21,45 - - -24,46 - - -24,47 - - -23,46 - - -23,47 - - -22,46 - - -21,46 - - -20,46 - - -20,47 - - -19,46 - - -19,47 - - -18,46 - - -18,47 - - -22,47 - - -21,47 - 0,0: - - 0,6 - - 0,7 - - 0,3 - - 0,4 - - 0,5 - - 0,2 - - 1,2 - - 1,3 - - 1,4 - - 1,5 - - 1,6 - - 1,7 - - 2,3 - - 2,4 - - 2,5 - - 2,6 - - 2,7 - - 3,3 - - 3,4 - - 3,5 - - 3,6 - - 3,7 - - 0,0 - - 0,1 - - 1,0 - - 1,1 - - 2,0 - - 2,1 - - 2,2 - - 3,0 - - 3,1 - - 3,2 - - 7,4 - - 7,5 - - 7,6 - - 7,7 - - 4,0 - - 4,1 - - 4,2 - - 4,3 - - 4,4 - - 4,5 - - 4,6 - - 4,7 - - 5,0 - - 5,1 - - 5,2 - - 5,3 - - 5,4 - - 5,5 - - 5,6 - - 5,7 - - 6,0 - - 6,1 - - 6,2 - - 6,3 - - 6,4 - - 6,5 - - 6,6 - - 6,7 - - 7,0 - - 7,1 - - 7,2 - - 7,3 - -8,0: - - -8,6 - - -7,6 - - -7,7 - - -6,6 - - -6,7 - - -5,6 - - -5,7 - - -4,6 - - -4,7 - - -3,6 - - -3,7 - - -2,6 - - -2,7 - - -1,6 - - -1,7 - - -8,7 - - -8,3 - - -8,4 - - -8,5 - - -7,3 - - -7,4 - - -7,5 - - -6,3 - - -6,4 - - -6,5 - - -5,3 - - -5,4 - - -5,5 - - -4,3 - - -4,4 - - -4,5 - - -3,3 - - -3,4 - - -3,5 - - -2,3 - - -2,4 - - -2,5 - - -1,3 - - -1,4 - - -1,5 - - -8,0 - - -8,1 - - -8,2 - - -7,0 - - -7,1 - - -7,2 - - -6,1 - - -6,2 - - -5,2 - - -4,2 - - -3,2 - - -2,1 - - -2,2 - - -1,1 - - -1,2 - - -4,0 - - -3,0 - - -2,0 - - -1,0 - - -6,0 - - -5,0 - - -5,1 - - -4,1 - - -3,1 - -16,0: - - -13,6 - - -13,7 - - -12,6 - - -12,7 - - -11,6 - - -11,7 - - -10,6 - - -10,7 - - -9,6 - - -9,7 - - -16,6 - - -13,4 - - -13,5 - - -12,3 - - -12,4 - - -12,5 - - -11,3 - - -11,4 - - -11,5 - - -10,3 - - -10,4 - - -10,5 - - -9,3 - - -9,4 - - -9,5 - - -14,2 - - -14,3 - - -13,0 - - -13,1 - - -13,2 - - -13,3 - - -12,0 - - -12,1 - - -12,2 - - -11,0 - - -11,1 - - -11,2 - - -10,0 - - -10,1 - - -10,2 - - -9,0 - - -9,1 - - -9,2 - - -16,7 - - -15,6 - - -15,7 - - -14,6 - - -14,7 - - -16,1 - - -16,2 - - -16,3 - - -16,4 - - -16,5 - - -15,1 - - -15,2 - - -15,3 - - -15,4 - - -15,5 - - -14,1 - - -14,4 - - -14,5 - - -16,0 - - -15,0 - - -14,0 - -16,8: - - -12,13 - - -12,15 - - -11,11 - - -11,12 - - -11,13 - - -10,11 - - -10,12 - - -9,11 - - -9,12 - - -9,13 - - -13,8 - - -13,9 - - -13,10 - - -13,11 - - -13,12 - - -13,13 - - -13,14 - - -12,8 - - -12,9 - - -12,10 - - -12,11 - - -12,12 - - -12,14 - - -11,8 - - -11,9 - - -11,10 - - -11,14 - - -10,8 - - -10,9 - - -10,10 - - -10,13 - - -13,15 - - -11,15 - - -10,14 - - -10,15 - - -9,8 - - -9,9 - - -9,10 - - -9,14 - - -9,15 - - -16,13 - - -16,14 - - -15,14 - - -15,15 - - -14,15 - - -16,9 - - -16,10 - - -16,11 - - -16,12 - - -15,8 - - -15,9 - - -15,10 - - -15,11 - - -15,12 - - -15,13 - - -14,8 - - -14,9 - - -14,10 - - -14,11 - - -14,12 - - -14,13 - - -14,14 - - -16,8 - - -16,15 - -32,40: - - -28,42 - - -27,41 - - -27,42 - - -27,43 - - -26,41 - - -26,42 - - -26,43 - - -25,43 - - -29,41 - - -29,42 - - -28,40 - - -27,40 - - -26,40 - - -25,40 - - -25,41 - - -28,41 - - -28,43 - - -25,42 - - -30,41 - - -30,42 - - -30,43 - - -30,44 - - -30,45 - - -29,43 - - -29,44 - - -29,45 - - -28,45 - - -26,45 - - -25,44 - - -25,45 - - -30,40 - - -29,40 - - -28,44 - - -27,45 - - -26,44 - - -27,44 - - -32,42 - - -32,43 - - -32,44 - - -32,45 - - -32,46 - - -32,47 - - -31,42 - - -31,43 - - -31,44 - - -31,45 - - -31,47 - - -30,47 - - -27,46 - - -27,47 - - -26,46 - - -25,46 - - -32,40 - - -32,41 - - -31,40 - - -31,41 - - -31,46 - - -30,46 - - -29,46 - - -29,47 - - -28,46 - - -28,47 - - -26,47 - - -25,47 - -8,-8: - - -8,-1 - - -8,-8 - - -8,-7 - - -8,-6 - - -8,-5 - - -8,-4 - - -8,-3 - - -8,-2 - - -7,-8 - - -7,-7 - - -7,-6 - - -7,-5 - - -7,-4 - - -7,-3 - - -7,-2 - - -7,-1 - - -6,-8 - - -6,-7 - - -6,-6 - - -6,-5 - - -6,-4 - - -6,-3 - - -6,-2 - - -6,-1 - - -5,-8 - - -5,-7 - - -5,-6 - - -5,-5 - - -5,-4 - - -5,-3 - - -5,-2 - - -5,-1 - - -4,-8 - - -4,-7 - - -4,-6 - - -4,-5 - - -4,-4 - - -4,-3 - - -4,-2 - - -4,-1 - - -3,-8 - - -3,-7 - - -3,-6 - - -3,-5 - - -3,-4 - - -3,-3 - - -3,-2 - - -3,-1 - - -2,-8 - - -2,-7 - - -2,-6 - - -2,-5 - - -2,-4 - - -2,-3 - - -2,-2 - - -2,-1 - - -1,-8 - - -1,-7 - - -1,-6 - - -1,-5 - - -1,-4 - - -1,-3 - - -1,-2 - - -1,-1 - -16,-8: - - -10,-1 - - -9,-1 - - -11,-8 - - -11,-7 - - -11,-6 - - -11,-5 - - -11,-4 - - -11,-3 - - -11,-2 - - -11,-1 - - -10,-8 - - -10,-7 - - -10,-6 - - -10,-5 - - -10,-4 - - -10,-3 - - -10,-2 - - -9,-8 - - -9,-7 - - -9,-6 - - -9,-5 - - -9,-4 - - -9,-3 - - -9,-2 - - -16,-1 - - -15,-1 - - -14,-1 - - -16,-8 - - -16,-7 - - -16,-6 - - -16,-5 - - -16,-4 - - -16,-3 - - -16,-2 - - -15,-8 - - -15,-7 - - -15,-6 - - -15,-5 - - -15,-4 - - -15,-3 - - -15,-2 - - -14,-8 - - -14,-7 - - -14,-6 - - -14,-5 - - -14,-4 - - -14,-3 - - -14,-2 - - -13,-8 - - -13,-7 - - -13,-6 - - -12,-8 - - -12,-7 - - -12,-6 - - -13,-5 - - -13,-4 - - -13,-3 - - -13,-2 - - -13,-1 - - -12,-5 - - -12,-4 - - -12,-3 - - -12,-2 - - -12,-1 - -24,0: - - -17,7 - - -17,6 - - -24,6 - - -23,6 - - -23,7 - - -22,6 - - -22,7 - - -21,6 - - -21,7 - - -20,6 - - -20,7 - - -19,6 - - -19,7 - - -18,6 - - -18,7 - - -24,7 - - -24,2 - - -24,3 - - -24,4 - - -24,5 - - -23,1 - - -23,2 - - -23,4 - - -23,5 - - -22,1 - - -21,1 - - -24,1 - - -23,3 - - -22,2 - - -22,3 - - -22,4 - - -22,5 - - -21,2 - - -21,3 - - -21,4 - - -21,5 - - -20,1 - - -20,2 - - -20,3 - - -20,4 - - -20,5 - - -19,3 - - -23,0 - - -22,0 - - -21,0 - - -17,5 - - -24,0 - - -20,0 - - -19,0 - - -19,1 - - -19,2 - - -19,4 - - -19,5 - - -18,0 - - -18,1 - - -18,2 - - -18,3 - - -18,4 - - -18,5 - - -17,1 - - -17,2 - - -17,3 - - -17,4 - - -17,0 - -24,8: - - -17,10 - - -17,11 - - -17,12 - - -17,13 - - -17,8 - - -17,9 - - -17,14 - - -17,15 - - -24,15 - - -23,15 - - -22,12 - - -22,15 - - -21,10 - - -21,11 - - -21,12 - - -21,13 - - -21,14 - - -21,15 - - -20,11 - - -20,12 - - -20,13 - - -20,15 - - -19,10 - - -19,11 - - -19,12 - - -19,14 - - -19,15 - - -18,11 - - -18,12 - - -18,13 - - -23,14 - - -20,14 - - -19,13 - - -22,11 - - -22,13 - - -22,14 - - -18,14 - - -18,15 - - -24,11 - - -24,14 - - -24,10 - - -23,9 - - -23,11 - - -24,12 - - -24,13 - - -23,12 - - -23,13 - - -22,8 - - -20,10 - - -21,8 - - -20,8 - - -19,8 - - -18,9 - - -18,10 - - -24,8 - - -24,9 - - -23,8 - - -23,10 - - -22,9 - - -22,10 - - -21,9 - - -20,9 - - -19,9 - - -18,8 - 0,-16: - - 0,-9 - - 1,-9 - - 2,-9 - - 3,-9 - - 4,-9 - - 5,-9 - - 6,-9 - - 6,-10 - - 7,-10 - - 7,-9 - - 0,-16 - - 0,-15 - - 0,-14 - - 0,-13 - - 0,-12 - - 0,-11 - - 0,-10 - - 1,-16 - - 1,-15 - - 1,-14 - - 1,-13 - - 1,-12 - - 1,-11 - - 1,-10 - - 2,-16 - - 2,-15 - - 2,-14 - - 2,-13 - - 2,-12 - - 2,-11 - - 2,-10 - - 3,-16 - - 3,-15 - - 3,-14 - - 3,-13 - - 3,-12 - - 3,-11 - - 3,-10 - - 4,-16 - - 4,-15 - - 4,-14 - - 4,-13 - - 4,-12 - - 4,-11 - - 4,-10 - - 5,-13 - - 5,-12 - - 6,-13 - - 5,-16 - - 5,-15 - - 5,-14 - - 6,-15 - - 6,-14 - - 5,-11 - - 5,-10 - - 6,-16 - - 6,-12 - - 6,-11 - - 7,-12 - - 7,-11 - - 7,-16 - -8,-16: - - -8,-9 - - -7,-9 - - -6,-9 - - -5,-9 - - -4,-9 - - -3,-9 - - -2,-9 - - -1,-9 - - -8,-14 - - -8,-13 - - -8,-12 - - -8,-11 - - -8,-10 - - -7,-14 - - -7,-13 - - -7,-12 - - -7,-11 - - -7,-10 - - -6,-14 - - -6,-13 - - -6,-12 - - -6,-11 - - -6,-10 - - -8,-16 - - -8,-15 - - -7,-16 - - -7,-15 - - -6,-16 - - -6,-15 - - -5,-16 - - -5,-15 - - -5,-14 - - -5,-13 - - -5,-12 - - -5,-11 - - -5,-10 - - -4,-16 - - -4,-15 - - -4,-14 - - -4,-13 - - -4,-12 - - -4,-11 - - -4,-10 - - -3,-16 - - -3,-15 - - -3,-14 - - -3,-13 - - -3,-12 - - -3,-11 - - -3,-10 - - -2,-16 - - -2,-15 - - -2,-14 - - -2,-13 - - -2,-12 - - -2,-11 - - -2,-10 - - -1,-16 - - -1,-15 - - -1,-14 - - -1,-13 - - -1,-12 - - -1,-11 - - -1,-10 - -16,-16: - - -11,-9 - - -10,-9 - - -9,-9 - - -16,-12 - - -16,-11 - - -16,-10 - - -16,-9 - - -15,-12 - - -15,-11 - - -15,-10 - - -15,-9 - - -14,-12 - - -14,-11 - - -14,-10 - - -14,-9 - - -16,-14 - - -16,-13 - - -15,-14 - - -15,-13 - - -14,-14 - - -14,-13 - - -16,-16 - - -16,-15 - - -15,-16 - - -15,-15 - - -13,-14 - - -13,-13 - - -13,-12 - - -13,-11 - - -13,-10 - - -13,-9 - - -12,-14 - - -12,-13 - - -12,-12 - - -12,-11 - - -12,-10 - - -12,-9 - - -11,-14 - - -11,-13 - - -11,-12 - - -11,-11 - - -11,-10 - - -10,-14 - - -10,-13 - - -10,-12 - - -10,-11 - - -10,-10 - - -9,-14 - - -9,-13 - - -9,-12 - - -9,-11 - - -9,-10 - - -11,-16 - - -11,-15 - - -10,-16 - - -10,-15 - - -9,-16 - - -9,-15 - - -14,-16 - - -14,-15 - - -13,-16 - - -13,-15 - - -12,-16 - - -12,-15 - 0,-8: - - 0,-8 - - 0,-7 - - 0,-6 - - 0,-5 - - 0,-4 - - 0,-3 - - 0,-2 - - 0,-1 - - 1,-8 - - 1,-7 - - 1,-6 - - 1,-5 - - 1,-4 - - 1,-3 - - 1,-2 - - 1,-1 - - 2,-8 - - 2,-7 - - 2,-6 - - 2,-5 - - 2,-4 - - 2,-3 - - 2,-2 - - 2,-1 - - 3,-8 - - 3,-7 - - 3,-6 - - 3,-5 - - 3,-4 - - 3,-3 - - 3,-2 - - 3,-1 - - 4,-8 - - 4,-7 - - 4,-6 - - 4,-5 - - 4,-4 - - 4,-3 - - 4,-2 - - 4,-1 - - 5,-8 - - 5,-7 - - 5,-6 - - 5,-5 - - 5,-4 - - 5,-3 - - 5,-2 - - 5,-1 - - 6,-8 - - 6,-7 - - 6,-6 - - 6,-5 - - 6,-4 - - 6,-3 - - 6,-2 - - 6,-1 - - 7,-1 - - 7,-6 - - 7,-5 - - 7,-4 - - 7,-3 - - 7,-2 - - 7,-7 - - 7,-8 - 8,0: - - 8,4 - - 8,5 - - 8,6 - - 8,7 - - 9,4 - - 9,5 - - 9,6 - - 9,7 - - 10,4 - - 10,5 - - 10,6 - - 10,7 - - 11,4 - - 11,5 - - 11,6 - - 11,7 - - 12,4 - - 12,5 - - 12,6 - - 12,7 - - 13,4 - - 13,5 - - 13,6 - - 13,7 - - 14,4 - - 14,5 - - 14,6 - - 14,7 - - 15,4 - - 15,5 - - 15,6 - - 15,7 - - 8,0 - - 8,1 - - 8,2 - - 8,3 - - 9,0 - - 9,1 - - 9,2 - - 9,3 - - 10,0 - - 10,1 - - 10,2 - - 10,3 - - 11,0 - - 11,1 - - 11,2 - - 11,3 - - 12,0 - - 12,1 - - 12,2 - - 12,3 - - 13,0 - - 13,1 - - 13,2 - - 13,3 - - 14,0 - - 14,1 - - 14,2 - - 14,3 - - 15,0 - - 15,1 - - 15,2 - - 15,3 - 16,0: - - 16,4 - - 16,5 - - 16,6 - - 16,7 - - 16,0 - - 16,3 - - 16,1 - - 16,2 - - 17,0 - - 17,1 - - 17,2 - - 18,1 - - 18,2 - - 18,3 - - 19,1 - - 19,2 - - 19,3 - - 17,3 - - 17,4 - - 17,5 - - 17,6 - - 17,7 - - 18,4 - - 18,5 - - 18,6 - - 18,7 - - 19,4 - - 19,5 - - 19,6 - - 19,7 - - 20,7 - - 21,7 - - 22,7 - - 23,7 - - 18,0 - - 19,0 - - 20,4 - - 21,6 - - 20,0 - - 20,1 - - 20,2 - - 20,3 - - 20,5 - - 20,6 - - 21,0 - - 21,1 - - 21,2 - - 21,3 - - 21,4 - - 21,5 - - 22,0 - - 22,1 - - 22,2 - - 22,3 - - 22,4 - - 22,5 - - 22,6 - - 23,0 - - 23,1 - - 23,2 - - 23,3 - - 23,4 - - 23,5 - - 23,6 - 8,-8: - - 8,-3 - - 8,-2 - - 8,-1 - - 9,-3 - - 9,-2 - - 9,-1 - - 10,-3 - - 10,-2 - - 10,-1 - - 11,-3 - - 11,-2 - - 11,-1 - - 12,-3 - - 12,-2 - - 12,-1 - - 13,-3 - - 13,-1 - - 13,-2 - - 15,-1 - - 9,-4 - - 10,-4 - - 11,-4 - - 12,-4 - - 13,-4 - - 14,-4 - - 14,-2 - - 15,-4 - - 14,-3 - - 14,-1 - - 15,-3 - - 15,-2 - - 8,-6 - - 8,-5 - - 8,-4 - - 9,-5 - - 13,-6 - - 13,-5 - - 14,-6 - - 14,-5 - - 15,-6 - - 15,-5 - - 9,-6 - - 10,-6 - - 10,-5 - - 11,-6 - - 11,-5 - - 12,-6 - - 12,-5 - - 8,-7 - - 9,-7 - - 12,-7 - - 13,-7 - - 14,-7 - - 15,-7 - - 10,-7 - - 11,-7 - - 8,-8 - - 9,-8 - - 10,-8 - - 11,-8 - - 12,-8 - - 13,-8 - - 14,-8 - - 15,-8 - 16,-8: - - 16,-4 - - 16,-6 - - 16,-5 - - 17,-6 - - 17,-5 - - 17,-4 - - 16,-3 - - 16,-2 - - 16,-1 - - 17,-3 - - 17,-2 - - 17,-1 - - 16,-7 - - 17,-7 - - 18,-7 - - 18,-6 - - 18,-5 - - 18,-4 - - 18,-3 - - 18,-2 - - 18,-1 - - 18,-8 - - 19,-4 - - 19,-3 - - 19,-2 - - 19,-1 - - 20,-8 - - 20,-7 - - 20,-6 - - 20,-4 - - 21,-8 - - 21,-7 - - 21,-6 - - 21,-4 - - 22,-8 - - 22,-7 - - 22,-6 - - 23,-6 - - 16,-8 - - 19,-7 - - 19,-6 - - 20,-3 - - 20,-2 - - 20,-1 - - 21,-5 - - 21,-3 - - 21,-2 - - 21,-1 - - 22,-5 - - 22,-4 - - 22,-3 - - 22,-2 - - 22,-1 - - 23,-5 - - 23,-4 - - 23,-3 - - 23,-2 - - 23,-1 - - 17,-8 - - 19,-8 - - 19,-5 - - 20,-5 - - 23,-8 - - 23,-7 - -32,8: - - -25,15 - - -28,12 - - -28,13 - - -28,14 - - -28,15 - - -27,11 - - -27,12 - - -27,13 - - -27,14 - - -27,15 - - -26,11 - - -26,12 - - -26,13 - - -26,14 - - -26,15 - - -25,12 - - -25,13 - - -25,14 - - -30,13 - - -29,15 - - -28,11 - - -25,11 - - -32,11 - - -32,12 - - -31,13 - - -31,14 - - -31,15 - - -30,12 - - -30,14 - - -30,15 - - -29,11 - - -29,12 - - -29,13 - - -29,14 - - -27,8 - - -27,9 - - -27,10 - - -26,8 - - -26,9 - - -25,8 - - -25,9 - - -25,10 - - -32,10 - - -31,11 - - -31,12 - - -30,11 - - -26,10 - - -32,8 - - -32,9 - - -31,8 - - -31,9 - - -31,10 - - -30,8 - - -30,9 - - -30,10 - - -29,8 - - -29,9 - - -29,10 - - -28,8 - - -28,9 - - -28,10 - - -32,13 - - -32,14 - - -32,15 - -32,0: - - -27,7 - - -26,6 - - -26,7 - - -25,6 - - -25,7 - - -27,6 - - -32,6 - - -32,7 - - -31,6 - - -31,7 - - -30,6 - - -30,7 - - -29,6 - - -29,7 - - -28,6 - - -28,7 - - -32,5 - - -31,5 - - -30,5 - - -29,5 - - -28,1 - - -28,2 - - -28,4 - - -28,5 - - -27,3 - - -27,4 - - -27,5 - - -26,2 - - -26,5 - - -25,3 - - -25,4 - - -25,5 - - -28,3 - - -27,1 - - -27,2 - - -26,1 - - -26,3 - - -25,1 - - -25,2 - - -26,4 - - -32,3 - - -32,4 - - -31,3 - - -31,4 - - -30,0 - - -30,1 - - -30,2 - - -30,3 - - -30,4 - - -29,2 - - -29,3 - - -29,4 - - -29,0 - - -28,0 - - -27,0 - - -26,0 - - -25,0 - - -32,2 - - -31,0 - - -31,1 - - -31,2 - - -29,1 - - -32,0 - - -32,1 - -40,8: - - -35,12 - - -36,9 - - -36,10 - - -35,13 - - -35,14 - - -34,10 - - -34,11 - - -34,12 - - -34,13 - - -33,13 - - -35,8 - - -35,9 - - -35,10 - - -35,11 - - -34,8 - - -34,9 - - -34,14 - - -33,14 - - -36,11 - - -36,15 - - -35,15 - - -33,15 - - -36,8 - - -36,12 - - -36,13 - - -36,14 - - -33,12 - - -37,8 - - -37,13 - - -37,14 - - -40,8 - - -40,9 - - -40,12 - - -40,14 - - -40,15 - - -39,9 - - -39,10 - - -39,11 - - -39,12 - - -38,8 - - -38,11 - - -38,12 - - -37,11 - - -37,12 - - -40,11 - - -40,13 - - -39,13 - - -39,15 - - -38,13 - - -38,14 - - -38,15 - - -37,15 - - -40,10 - - -39,8 - - -39,14 - - -38,9 - - -38,10 - - -37,9 - - -37,10 - - -34,15 - - -33,8 - - -33,10 - 24,0: - - 24,7 - - 25,7 - - 26,7 - - 27,7 - - 28,7 - - 29,7 - - 30,7 - - 24,0 - - 24,1 - - 24,2 - - 24,3 - - 24,4 - - 24,5 - - 24,6 - - 25,0 - - 25,1 - - 25,2 - - 25,3 - - 25,4 - - 25,5 - - 25,6 - - 26,0 - - 26,1 - - 26,2 - - 26,3 - - 26,4 - - 26,5 - - 26,6 - - 27,0 - - 27,1 - - 27,2 - - 27,3 - - 27,4 - - 27,5 - - 27,6 - - 28,0 - - 28,1 - - 28,2 - - 28,3 - - 28,4 - - 28,5 - - 28,6 - - 31,3 - - 29,3 - - 29,4 - - 29,5 - - 29,6 - - 30,3 - - 30,4 - - 30,5 - - 30,6 - - 31,4 - - 31,5 - - 31,6 - - 31,7 - -40,0: - - -35,3 - - -35,4 - - -35,5 - - -34,3 - - -34,4 - - -34,5 - - -34,6 - - -33,3 - - -33,4 - - -33,5 - - -33,7 - - -35,6 - - -35,7 - - -34,7 - - -37,6 - - -36,2 - - -36,3 - - -36,4 - - -36,5 - - -36,6 - - -36,7 - - -35,2 - - -34,2 - - -33,2 - - -37,5 - - -40,2 - - -40,3 - - -40,4 - - -40,5 - - -40,6 - - -40,7 - - -39,1 - - -39,2 - - -39,3 - - -39,4 - - -38,1 - - -38,2 - - -38,3 - - -38,4 - - -38,5 - - -37,0 - - -37,1 - - -37,2 - - -37,3 - - -37,4 - - -36,0 - - -40,1 - - -39,0 - - -40,0 - - -39,5 - - -39,6 - - -39,7 - - -38,0 - - -38,6 - - -38,7 - - -37,7 - - -36,1 - - -35,0 - - -35,1 - - -34,0 - - -34,1 - - -33,0 - - -33,1 - - -33,6 - -24,-8: - - -18,-2 - - -18,-1 - - -24,-1 - - -22,-1 - - -21,-2 - - -19,-1 - - -23,-1 - - -21,-1 - - -20,-1 - - -24,-2 - - -20,-2 - - -23,-2 - - -22,-2 - - -19,-2 - - -17,-1 - - -24,-8 - - -24,-6 - - -24,-5 - - -24,-4 - - -24,-3 - - -23,-5 - - -22,-7 - - -22,-5 - - -22,-4 - - -21,-7 - - -21,-6 - - -20,-8 - - -20,-7 - - -20,-6 - - -20,-5 - - -19,-7 - - -19,-6 - - -19,-5 - - -19,-4 - - -19,-3 - - -18,-8 - - -18,-7 - - -18,-6 - - -18,-5 - - -18,-4 - - -17,-7 - - -17,-6 - - -17,-5 - - -17,-4 - - -24,-7 - - -23,-8 - - -23,-7 - - -23,-6 - - -23,-4 - - -22,-8 - - -22,-6 - - -21,-8 - - -19,-8 - - -17,-8 - - -17,-3 - - -17,-2 - - -23,-3 - - -22,-3 - - -21,-5 - - -21,-4 - - -21,-3 - - -20,-4 - - -20,-3 - - -18,-3 - -32,-8: - - -30,-1 - - -29,-1 - - -28,-1 - - -27,-1 - - -26,-1 - - -25,-1 - - -31,-2 - - -31,-1 - - -30,-2 - - -29,-2 - - -28,-2 - - -27,-2 - - -26,-2 - - -25,-2 - - -32,-8 - - -32,-7 - - -32,-6 - - -32,-5 - - -32,-4 - - -32,-3 - - -32,-1 - - -31,-8 - - -31,-7 - - -31,-6 - - -31,-3 - - -30,-8 - - -30,-7 - - -30,-6 - - -30,-5 - - -30,-4 - - -30,-3 - - -29,-8 - - -29,-6 - - -29,-5 - - -29,-4 - - -29,-3 - - -28,-8 - - -28,-7 - - -28,-4 - - -27,-8 - - -27,-3 - - -26,-8 - - -26,-4 - - -26,-3 - - -25,-7 - - -25,-5 - - -25,-4 - - -25,-3 - - -25,-6 - - -32,-2 - - -31,-5 - - -31,-4 - - -29,-7 - - -28,-6 - - -28,-5 - - -28,-3 - - -27,-7 - - -27,-6 - - -27,-5 - - -27,-4 - - -26,-7 - - -26,-6 - - -26,-5 - - -25,-8 - -40,16: - - -33,21 - - -39,23 - - -36,18 - - -35,18 - - -35,19 - - -36,19 - - -36,20 - - -35,20 - - -34,20 - - -33,16 - - -33,19 - - -36,16 - - -36,17 - - -35,16 - - -35,17 - - -34,16 - - -34,17 - - -34,18 - - -34,19 - - -33,17 - - -33,18 - - -33,20 - - -38,23 - - -37,21 - - -37,22 - - -37,23 - - -36,22 - - -36,23 - - -35,21 - - -35,22 - - -35,23 - - -34,21 - - -34,22 - - -34,23 - - -33,22 - - -33,23 - - -37,19 - - -37,20 - - -36,21 - - -40,16 - - -40,17 - - -40,18 - - -40,19 - - -40,20 - - -40,21 - - -40,22 - - -40,23 - - -39,16 - - -39,18 - - -39,19 - - -39,20 - - -39,21 - - -39,22 - - -38,19 - - -38,20 - - -38,21 - - -38,22 - - -37,17 - - -37,18 - - -38,16 - - -37,16 - - -39,17 - - -38,17 - - -38,18 - -40,-8: - - -38,-1 - - -36,-2 - - -36,-1 - - -35,-1 - - -34,-2 - - -34,-4 - - -33,-7 - - -35,-2 - - -34,-1 - - -33,-2 - - -33,-1 - - -33,-8 - - -33,-6 - - -33,-5 - - -33,-4 - - -33,-3 - - -35,-8 - - -34,-8 - - -34,-7 - - -34,-6 - - -34,-5 - - -34,-3 - - -36,-5 - - -36,-4 - - -36,-3 - - -35,-5 - - -35,-4 - - -35,-3 - - -40,-4 - - -40,-3 - - -39,-4 - - -39,-3 - - -38,-4 - - -38,-3 - - -38,-2 - - -37,-8 - - -37,-5 - - -37,-4 - - -37,-3 - - -37,-2 - - -36,-8 - - -36,-7 - - -36,-6 - - -35,-6 - - -40,-8 - - -40,-7 - - -40,-6 - - -40,-5 - - -39,-8 - - -39,-7 - - -39,-6 - - -39,-5 - - -38,-8 - - -38,-7 - - -38,-6 - - -38,-5 - - -37,-7 - - -37,-6 - - -35,-7 - - -40,-2 - - -39,-2 - - -37,-1 - - -40,-1 - - -39,-1 - -48,-8: - - -43,-1 - - -42,-1 - - -46,-8 - - -46,-6 - - -45,-8 - - -45,-7 - - -44,-8 - - -44,-7 - - -44,-6 - - -44,-5 - - -44,-4 - - -44,-3 - - -43,-7 - - -43,-6 - - -43,-5 - - -43,-3 - - -43,-2 - - -42,-5 - - -42,-4 - - -42,-3 - - -41,-5 - - -41,-4 - - -41,-3 - - -41,-2 - - -46,-7 - - -46,-5 - - -45,-6 - - -43,-8 - - -42,-8 - - -42,-7 - - -42,-6 - - -41,-8 - - -41,-7 - - -41,-6 - - -48,-6 - - -48,-5 - - -48,-4 - - -48,-3 - - -48,-2 - - -47,-5 - - -47,-4 - - -47,-3 - - -47,-2 - - -46,-4 - - -46,-3 - - -46,-2 - - -45,-5 - - -45,-4 - - -45,-3 - - -45,-2 - - -44,-2 - - -43,-4 - - -42,-2 - - -48,-1 - - -47,-8 - - -47,-7 - - -47,-6 - - -47,-1 - - -45,-1 - - -46,-1 - - -44,-1 - - -41,-1 - -48,16: - - -41,16 - - -47,22 - - -46,19 - - -44,22 - - -43,19 - - -48,22 - - -47,21 - - -47,23 - - -46,21 - - -46,22 - - -45,20 - - -45,21 - - -45,22 - - -45,23 - - -44,18 - - -44,19 - - -44,20 - - -44,21 - - -44,23 - - -43,18 - - -43,20 - - -43,21 - - -43,22 - - -43,23 - - -42,17 - - -42,19 - - -42,22 - - -42,23 - - -41,17 - - -41,18 - - -41,19 - - -41,22 - - -41,23 - - -46,16 - - -46,17 - - -45,17 - - -44,17 - - -43,17 - -48,8: - - -44,10 - - -43,8 - - -43,10 - - -43,11 - - -43,13 - - -43,15 - - -42,8 - - -42,9 - - -42,10 - - -42,11 - - -42,15 - - -41,8 - - -41,9 - - -41,10 - - -41,11 - - -41,12 - - -41,13 - - -41,15 - - -43,14 - - -43,9 - - -43,12 - - -42,12 - - -42,13 - - -42,14 - - -41,14 - - -46,8 - - -46,9 - - -46,10 - - -46,11 - - -46,12 - - -46,13 - - -46,14 - - -46,15 - -48,0: - - -45,0 - - -44,0 - - -44,5 - - -44,7 - - -43,0 - - -43,1 - - -43,2 - - -43,3 - - -43,4 - - -43,5 - - -43,6 - - -42,0 - - -42,1 - - -42,2 - - -42,3 - - -42,4 - - -42,5 - - -42,6 - - -42,7 - - -41,3 - - -41,4 - - -41,6 - - -41,7 - - -44,6 - - -43,7 - - -41,1 - - -41,2 - - -41,0 - - -41,5 - - -48,2 - - -47,2 - - -46,2 - - -46,3 - - -46,4 - - -46,5 - - -46,6 - - -46,7 - - -46,0 - - -46,1 - -48,32: - - -44,34 - - -41,33 - - -41,36 - - -43,38 - - -43,39 - - -42,39 - - -41,38 - - -41,39 - - -47,32 - - -46,32 - - -46,33 - - -45,32 - - -45,33 - - -45,34 - - -44,32 - - -43,34 - - -42,32 - - -42,34 - - -42,35 - - -41,32 - - -41,34 - -48,24: - - -47,29 - - -44,24 - - -44,28 - - -43,24 - - -43,25 - - -43,27 - - -42,28 - - -41,24 - - -41,27 - - -41,28 - - -41,29 - - -41,30 - - -41,31 - - -48,27 - - -48,30 - - -48,31 - - -47,24 - - -47,26 - - -47,30 - - -46,24 - - -46,25 - - -46,26 - - -46,27 - - -46,28 - - -46,31 - - -45,24 - - -45,25 - - -45,26 - - -45,31 - - -44,25 - - -44,26 - - -44,27 - - -44,29 - - -43,26 - - -43,28 - - -43,29 - - -43,30 - - -42,24 - - -42,25 - - -42,26 - - -42,27 - - -42,29 - - -42,30 - - -42,31 - - -41,25 - - -41,26 - -40,32: - - -40,33 - - -40,34 - - -40,35 - - -39,34 - - -39,36 - - -39,37 - - -39,38 - - -37,36 - - -36,33 - - -35,36 - - -34,37 - - -34,32 - - -34,34 - - -34,35 - - -34,36 - - -34,38 - - -34,39 - - -33,35 - - -33,36 - - -33,37 - - -33,38 - - -33,39 - - -34,33 - - -33,32 - - -33,33 - - -33,34 - - -38,39 - - -36,39 - - -35,39 - - -40,37 - - -40,38 - - -40,39 - - -37,39 - - -36,35 - - -36,36 - - -36,37 - - -36,38 - - -35,35 - - -35,37 - - -35,38 - - -37,38 - - -40,32 - - -40,36 - - -39,32 - - -39,33 - - -39,35 - - -39,39 - - -38,32 - - -38,33 - - -38,34 - - -38,35 - - -38,36 - - -38,37 - - -38,38 - - -37,32 - - -37,33 - - -37,34 - - -37,35 - - -37,37 - - -36,34 - - -35,32 - - -35,33 - - -35,34 - 8,64: - - 8,64 - - 8,65 - - 8,66 - - 8,67 - - 8,68 - - 8,69 - - 8,70 - - 8,71 - - 9,64 - - 9,65 - - 9,66 - - 9,67 - - 9,68 - - 9,69 - - 9,70 - - 9,71 - - 10,64 - - 10,65 - - 10,66 - - 10,67 - - 10,68 - - 10,69 - - 10,70 - - 10,71 - - 11,64 - - 11,65 - - 11,66 - - 11,67 - - 11,68 - - 11,69 - - 11,70 - - 11,71 - - 12,64 - - 12,65 - - 12,66 - - 12,67 - - 12,68 - - 12,69 - - 12,70 - - 12,71 - - 13,64 - - 13,66 - - 13,67 - - 13,68 - - 13,69 - - 13,70 - - 13,71 - - 14,64 - - 14,65 - - 14,66 - - 14,67 - - 14,68 - - 14,69 - - 14,70 - - 14,71 - - 15,64 - - 15,65 - - 15,67 - - 15,68 - - 15,69 - - 15,70 - - 13,65 - - 15,66 - - 15,71 - 0,64: - - 0,65 - - 0,68 - - 0,69 - - 0,70 - - 0,71 - - 1,64 - - 1,66 - - 1,67 - - 1,68 - - 1,69 - - 1,70 - - 1,71 - - 2,64 - - 2,65 - - 2,66 - - 2,68 - - 2,69 - - 2,70 - - 2,71 - - 3,64 - - 3,65 - - 3,66 - - 3,67 - - 3,68 - - 3,69 - - 3,70 - - 4,64 - - 4,65 - - 4,66 - - 4,67 - - 4,68 - - 4,69 - - 4,70 - - 4,71 - - 5,64 - - 5,66 - - 5,67 - - 5,68 - - 5,69 - - 5,70 - - 5,71 - - 6,64 - - 6,66 - - 6,67 - - 6,68 - - 6,69 - - 6,70 - - 6,71 - - 7,64 - - 7,65 - - 7,67 - - 7,68 - - 7,69 - - 7,70 - - 7,71 - - 6,65 - - 7,66 - - 5,65 - - 0,64 - - 0,66 - - 0,67 - - 1,65 - - 2,67 - - 3,71 - -8,64: - - -8,65 - - -8,66 - - -8,67 - - -8,68 - - -8,69 - - -8,70 - - -8,71 - - -7,64 - - -7,65 - - -7,66 - - -7,67 - - -7,68 - - -7,69 - - -7,70 - - -7,71 - - -6,64 - - -6,65 - - -6,66 - - -6,67 - - -6,68 - - -6,69 - - -6,70 - - -6,71 - - -5,65 - - -5,66 - - -5,67 - - -5,68 - - -5,69 - - -5,70 - - -5,71 - - -4,64 - - -4,65 - - -4,66 - - -4,67 - - -4,69 - - -4,70 - - -4,71 - - -3,64 - - -3,65 - - -3,66 - - -3,67 - - -3,68 - - -3,69 - - -3,70 - - -3,71 - - -2,65 - - -2,66 - - -2,67 - - -2,68 - - -2,69 - - -2,70 - - -2,71 - - -1,64 - - -1,65 - - -1,66 - - -1,67 - - -1,68 - - -1,69 - - -1,70 - - -1,71 - - -2,64 - - -8,64 - - -5,64 - - -4,68 - -16,64: - - -16,64 - - -16,65 - - -16,66 - - -16,67 - - -16,68 - - -16,69 - - -16,70 - - -16,71 - - -15,64 - - -15,65 - - -15,66 - - -15,67 - - -15,68 - - -15,69 - - -15,70 - - -15,71 - - -14,64 - - -14,65 - - -14,66 - - -14,67 - - -14,68 - - -14,69 - - -14,70 - - -14,71 - - -13,64 - - -13,65 - - -13,66 - - -13,67 - - -13,69 - - -13,70 - - -13,71 - - -12,64 - - -12,65 - - -12,66 - - -12,67 - - -12,68 - - -12,69 - - -12,70 - - -12,71 - - -11,64 - - -11,65 - - -11,66 - - -11,67 - - -11,68 - - -11,69 - - -11,70 - - -11,71 - - -10,64 - - -10,65 - - -10,66 - - -10,67 - - -10,68 - - -10,69 - - -10,70 - - -10,71 - - -9,64 - - -9,65 - - -9,66 - - -9,67 - - -9,68 - - -9,69 - - -9,70 - - -9,71 - - -13,68 - -24,64: - - -24,64 - - -24,65 - - -24,66 - - -24,67 - - -24,68 - - -24,69 - - -24,70 - - -24,71 - - -23,64 - - -23,65 - - -23,66 - - -23,67 - - -23,68 - - -23,70 - - -23,71 - - -22,64 - - -22,66 - - -22,67 - - -22,68 - - -22,69 - - -21,64 - - -21,65 - - -21,66 - - -21,67 - - -21,68 - - -21,70 - - -21,71 - - -20,64 - - -20,65 - - -20,66 - - -20,67 - - -20,68 - - -20,69 - - -20,70 - - -20,71 - - -19,64 - - -19,65 - - -19,66 - - -19,67 - - -19,68 - - -19,69 - - -19,70 - - -19,71 - - -18,64 - - -18,65 - - -18,67 - - -18,68 - - -18,69 - - -18,70 - - -18,71 - - -17,64 - - -17,65 - - -17,66 - - -17,67 - - -17,68 - - -17,70 - - -17,71 - - -22,71 - - -22,65 - - -18,66 - - -17,69 - - -22,70 - -8,56: - - -8,56 - - -8,57 - - -8,58 - - -8,59 - - -8,60 - - -8,61 - - -8,63 - - -7,56 - - -7,57 - - -7,58 - - -7,59 - - -7,60 - - -7,61 - - -7,62 - - -7,63 - - -6,56 - - -6,57 - - -6,58 - - -6,59 - - -6,60 - - -6,61 - - -6,62 - - -6,63 - - -5,56 - - -5,57 - - -5,58 - - -5,59 - - -5,60 - - -5,62 - - -5,63 - - -4,56 - - -4,57 - - -4,58 - - -4,59 - - -4,60 - - -4,61 - - -4,62 - - -4,63 - - -3,56 - - -3,57 - - -3,58 - - -3,59 - - -3,60 - - -3,61 - - -3,62 - - -3,63 - - -2,56 - - -2,57 - - -2,58 - - -2,59 - - -2,60 - - -2,61 - - -2,62 - - -2,63 - - -1,56 - - -1,57 - - -1,58 - - -1,59 - - -1,60 - - -1,61 - - -1,62 - - -1,63 - - -5,61 - - -8,62 - 8,56: - - 8,57 - - 8,58 - - 8,59 - - 8,60 - - 8,61 - - 8,62 - - 8,63 - - 9,57 - - 9,58 - - 9,59 - - 9,60 - - 9,61 - - 9,62 - - 9,63 - - 10,56 - - 10,59 - - 10,60 - - 10,61 - - 10,62 - - 10,63 - - 11,56 - - 11,57 - - 11,58 - - 11,59 - - 11,61 - - 11,62 - - 11,63 - - 12,56 - - 12,57 - - 12,58 - - 12,59 - - 12,60 - - 12,61 - - 12,62 - - 12,63 - - 13,56 - - 13,57 - - 13,58 - - 13,59 - - 13,60 - - 13,61 - - 13,62 - - 14,56 - - 14,57 - - 14,58 - - 14,59 - - 14,60 - - 14,61 - - 14,62 - - 14,63 - - 15,56 - - 15,57 - - 15,58 - - 15,59 - - 15,60 - - 15,61 - - 15,62 - - 15,63 - - 9,56 - - 10,57 - - 10,58 - - 11,60 - - 13,63 - - 8,56 - -16,56: - - -16,56 - - -16,57 - - -16,58 - - -16,60 - - -16,61 - - -16,62 - - -16,63 - - -15,56 - - -15,57 - - -15,58 - - -15,59 - - -15,60 - - -15,61 - - -15,62 - - -15,63 - - -14,56 - - -14,57 - - -14,58 - - -14,59 - - -14,60 - - -14,61 - - -14,62 - - -14,63 - - -13,56 - - -13,57 - - -13,58 - - -13,59 - - -13,60 - - -13,61 - - -13,62 - - -13,63 - - -12,56 - - -12,59 - - -12,61 - - -12,62 - - -11,57 - - -11,58 - - -11,59 - - -11,60 - - -11,61 - - -11,62 - - -11,63 - - -10,56 - - -10,57 - - -10,58 - - -10,59 - - -10,60 - - -10,61 - - -10,62 - - -10,63 - - -9,56 - - -9,57 - - -9,58 - - -9,59 - - -9,60 - - -9,61 - - -9,62 - - -16,59 - - -12,57 - - -12,58 - - -12,60 - - -11,56 - - -12,63 - - -9,63 - -24,56: - - -24,56 - - -24,57 - - -24,58 - - -24,59 - - -24,60 - - -24,61 - - -24,62 - - -24,63 - - -23,56 - - -23,57 - - -23,58 - - -23,59 - - -23,61 - - -23,62 - - -23,63 - - -22,57 - - -22,58 - - -22,59 - - -22,60 - - -22,61 - - -22,62 - - -22,63 - - -21,56 - - -21,57 - - -21,58 - - -21,59 - - -21,60 - - -21,61 - - -21,62 - - -21,63 - - -20,56 - - -20,57 - - -20,58 - - -20,59 - - -20,60 - - -20,61 - - -20,62 - - -20,63 - - -19,56 - - -19,57 - - -19,58 - - -19,59 - - -19,60 - - -19,61 - - -19,62 - - -19,63 - - -18,56 - - -18,57 - - -18,58 - - -18,59 - - -18,60 - - -18,61 - - -18,62 - - -18,63 - - -17,56 - - -17,57 - - -17,58 - - -17,60 - - -17,61 - - -17,62 - - -17,63 - - -22,56 - - -17,59 - - -23,60 - 0,56: - - 0,56 - - 0,57 - - 0,58 - - 0,59 - - 0,60 - - 0,61 - - 0,62 - - 0,63 - - 1,56 - - 1,57 - - 1,58 - - 1,59 - - 1,60 - - 1,61 - - 1,63 - - 2,56 - - 2,57 - - 2,58 - - 2,59 - - 2,60 - - 2,61 - - 2,62 - - 2,63 - - 3,56 - - 3,58 - - 3,59 - - 3,60 - - 3,62 - - 3,63 - - 4,56 - - 4,57 - - 4,58 - - 4,59 - - 4,60 - - 4,61 - - 4,62 - - 4,63 - - 5,56 - - 5,57 - - 5,59 - - 5,60 - - 5,61 - - 5,62 - - 5,63 - - 6,56 - - 6,58 - - 6,59 - - 6,60 - - 6,61 - - 6,62 - - 6,63 - - 7,56 - - 7,57 - - 7,58 - - 7,59 - - 7,60 - - 7,61 - - 7,62 - - 7,63 - - 5,58 - - 6,57 - - 1,62 - - 3,57 - - 3,61 - 8,48: - - 8,48 - - 8,49 - - 8,50 - - 8,51 - - 8,52 - - 8,53 - - 8,54 - - 8,55 - - 9,48 - - 9,49 - - 9,50 - - 9,51 - - 9,52 - - 9,53 - - 9,54 - - 9,55 - - 10,48 - - 10,49 - - 10,50 - - 10,51 - - 10,52 - - 10,53 - - 10,54 - - 10,55 - - 11,48 - - 11,49 - - 11,50 - - 11,51 - - 11,52 - - 11,53 - - 11,54 - - 12,48 - - 12,49 - - 12,50 - - 12,51 - - 12,52 - - 12,55 - - 13,48 - - 13,49 - - 13,50 - - 13,51 - - 13,52 - - 13,53 - - 13,54 - - 13,55 - - 14,48 - - 14,49 - - 14,50 - - 14,51 - - 14,53 - - 14,54 - - 14,55 - - 15,48 - - 15,49 - - 15,50 - - 15,51 - - 15,52 - - 15,53 - - 15,54 - - 15,55 - - 11,55 - - 12,53 - - 12,54 - - 14,52 - -8,48: - - -8,48 - - -8,49 - - -8,50 - - -8,51 - - -8,52 - - -8,53 - - -8,54 - - -7,48 - - -7,49 - - -7,50 - - -7,51 - - -7,52 - - -7,53 - - -7,54 - - -6,48 - - -6,49 - - -6,50 - - -6,51 - - -6,53 - - -6,54 - - -6,55 - - -5,48 - - -5,50 - - -5,51 - - -5,52 - - -5,53 - - -5,55 - - -4,48 - - -4,49 - - -4,50 - - -4,51 - - -4,52 - - -4,53 - - -4,54 - - -4,55 - - -3,48 - - -3,49 - - -3,50 - - -3,51 - - -3,52 - - -3,53 - - -3,54 - - -3,55 - - -2,49 - - -2,50 - - -2,51 - - -2,52 - - -2,53 - - -2,54 - - -2,55 - - -1,48 - - -1,49 - - -1,50 - - -1,51 - - -1,52 - - -1,53 - - -1,54 - - -1,55 - - -8,55 - - -7,55 - - -6,52 - - -5,49 - - -5,54 - - -2,48 - 0,48: - - 0,48 - - 0,49 - - 0,50 - - 0,51 - - 0,52 - - 0,53 - - 0,54 - - 0,55 - - 1,48 - - 1,49 - - 1,50 - - 1,51 - - 1,52 - - 1,53 - - 1,54 - - 1,55 - - 2,48 - - 2,49 - - 2,50 - - 2,51 - - 2,52 - - 2,53 - - 2,55 - - 3,48 - - 3,49 - - 3,50 - - 3,51 - - 3,52 - - 3,53 - - 3,54 - - 3,55 - - 4,48 - - 4,49 - - 4,50 - - 4,51 - - 4,52 - - 4,53 - - 4,54 - - 4,55 - - 5,48 - - 5,50 - - 5,52 - - 5,53 - - 5,54 - - 5,55 - - 6,48 - - 6,49 - - 6,50 - - 6,51 - - 6,54 - - 6,55 - - 7,48 - - 7,49 - - 7,50 - - 7,51 - - 7,52 - - 7,53 - - 7,54 - - 7,55 - - 2,54 - - 5,49 - - 5,51 - - 6,52 - - 6,53 - -32,48: - - -32,48 - - -32,49 - - -32,50 - - -32,51 - - -32,52 - - -32,53 - - -32,55 - - -31,49 - - -31,50 - - -31,51 - - -31,52 - - -31,53 - - -31,54 - - -30,49 - - -30,50 - - -30,51 - - -30,52 - - -30,53 - - -30,54 - - -29,48 - - -29,49 - - -29,52 - - -29,53 - - -29,54 - - -29,55 - - -28,51 - - -28,52 - - -28,54 - - -28,55 - - -27,48 - - -27,50 - - -27,53 - - -27,55 - - -26,48 - - -26,50 - - -26,51 - - -26,52 - - -26,54 - - -26,55 - - -25,49 - - -25,50 - - -25,51 - - -25,52 - - -25,53 - - -25,55 - - -31,55 - - -30,55 - - -29,50 - - -28,53 - - -27,52 - - -27,54 - - -26,53 - - -25,48 - - -25,54 - - -31,48 - - -30,48 - - -28,48 - - -28,49 - - -28,50 - - -27,49 - - -26,49 - - -29,51 - - -27,51 - -24,-16: - - -24,-11 - - -24,-10 - - -23,-11 - - -23,-10 - - -23,-9 - - -22,-10 - - -22,-9 - - -24,-12 - - -23,-12 - - -22,-12 - - -22,-11 - - -21,-12 - - -21,-11 - - -21,-10 - - -21,-9 - - -20,-12 - - -20,-11 - - -20,-10 - - -20,-9 - - -19,-12 - - -19,-11 - - -19,-10 - - -19,-9 - - -18,-12 - - -18,-11 - - -18,-10 - - -18,-9 - - -17,-12 - - -17,-11 - - -17,-10 - - -17,-9 - - -24,-9 - - -24,-14 - - -24,-13 - - -23,-16 - - -23,-15 - - -23,-14 - - -23,-13 - - -22,-16 - - -22,-15 - - -22,-14 - - -22,-13 - - -21,-16 - - -21,-15 - - -21,-14 - - -21,-13 - - -20,-16 - - -20,-15 - - -20,-14 - - -20,-13 - - -19,-16 - - -19,-15 - - -19,-14 - - -19,-13 - - -18,-16 - - -18,-15 - - -18,-14 - - -18,-13 - - -17,-16 - - -17,-15 - - -17,-14 - - -17,-13 - - -24,-16 - - -24,-15 - -32,-16: - - -30,-12 - - -30,-11 - - -30,-10 - - -30,-9 - - -29,-12 - - -29,-11 - - -29,-10 - - -29,-9 - - -28,-12 - - -28,-9 - - -27,-12 - - -27,-11 - - -27,-10 - - -26,-12 - - -26,-11 - - -26,-10 - - -26,-9 - - -25,-12 - - -25,-11 - - -25,-9 - - -31,-11 - - -31,-9 - - -28,-11 - - -28,-10 - - -27,-9 - - -25,-10 - - -32,-15 - - -32,-13 - - -32,-12 - - -32,-11 - - -32,-10 - - -31,-14 - - -31,-13 - - -31,-12 - - -31,-10 - - -30,-15 - - -30,-14 - - -30,-13 - - -29,-16 - - -29,-15 - - -29,-13 - - -27,-16 - - -27,-13 - - -26,-16 - - -26,-15 - - -32,-14 - - -31,-16 - - -26,-14 - - -26,-13 - - -32,-16 - - -32,-9 - - -31,-15 - - -30,-16 - - -29,-14 - - -28,-16 - - -28,-15 - - -28,-14 - - -28,-13 - - -27,-15 - - -27,-14 - -16,-24: - - -16,-22 - - -16,-21 - - -16,-20 - - -16,-19 - - -16,-18 - - -16,-17 - - -15,-18 - - -15,-17 - - -11,-23 - - -11,-22 - - -11,-21 - - -11,-20 - - -11,-19 - - -11,-18 - - -11,-17 - - -10,-23 - - -10,-22 - - -10,-21 - - -10,-20 - - -10,-19 - - -10,-18 - - -10,-17 - - -9,-23 - - -9,-22 - - -9,-21 - - -9,-20 - - -9,-19 - - -9,-18 - - -9,-17 - - -14,-18 - - -14,-17 - - -13,-18 - - -13,-17 - - -12,-18 - - -12,-17 - - -16,-24 - - -16,-23 - - -15,-24 - - -15,-23 - - -15,-22 - - -15,-21 - - -15,-20 - - -15,-19 - - -14,-24 - - -14,-23 - - -14,-22 - - -14,-21 - - -14,-20 - - -14,-19 - - -13,-24 - - -13,-23 - - -13,-22 - - -13,-21 - - -13,-20 - - -13,-19 - - -12,-24 - - -12,-23 - - -12,-22 - - -12,-21 - - -12,-20 - - -12,-19 - - -11,-24 - - -10,-24 - - -9,-24 - -24,-24: - - -23,-18 - - -23,-17 - - -22,-22 - - -22,-21 - - -22,-20 - - -22,-19 - - -22,-18 - - -22,-17 - - -21,-22 - - -21,-21 - - -21,-20 - - -21,-19 - - -21,-18 - - -21,-17 - - -20,-22 - - -20,-21 - - -20,-20 - - -20,-19 - - -20,-18 - - -20,-17 - - -19,-22 - - -19,-21 - - -19,-20 - - -19,-19 - - -19,-18 - - -19,-17 - - -18,-22 - - -18,-21 - - -18,-20 - - -18,-19 - - -18,-18 - - -18,-17 - - -17,-22 - - -17,-21 - - -17,-20 - - -17,-19 - - -17,-18 - - -17,-17 - - -24,-22 - - -24,-21 - - -24,-20 - - -24,-19 - - -24,-18 - - -23,-22 - - -23,-21 - - -23,-20 - - -23,-19 - - -24,-24 - - -24,-23 - - -24,-17 - - -23,-24 - - -23,-23 - - -22,-24 - - -22,-23 - - -21,-24 - - -21,-23 - - -20,-24 - - -20,-23 - - -19,-24 - - -19,-23 - - -18,-24 - - -18,-23 - - -17,-24 - - -17,-23 - -40,-16: - - -35,-12 - - -35,-11 - - -35,-10 - - -35,-9 - - -34,-12 - - -34,-11 - - -34,-10 - - -34,-9 - - -33,-10 - - -33,-9 - - -33,-12 - - -33,-11 - - -34,-15 - - -33,-16 - - -33,-15 - - -33,-14 - - -33,-13 - - -39,-13 - - -39,-12 - - -39,-11 - - -39,-10 - - -38,-13 - - -38,-12 - - -38,-11 - - -38,-10 - - -37,-13 - - -37,-11 - - -37,-10 - - -36,-11 - - -36,-10 - - -36,-9 - - -35,-14 - - -35,-13 - - -34,-13 - - -40,-13 - - -40,-12 - - -40,-11 - - -40,-10 - - -40,-9 - - -39,-9 - - -37,-9 - - -38,-9 - - -37,-12 - - -36,-13 - - -36,-12 - - -40,-15 - - -39,-15 - - -38,-15 - - -37,-15 - - -36,-15 - - -35,-16 - - -35,-15 - -48,-24: - - -46,-21 - -32,-24: - - -32,-20 - - -32,-18 - - -32,-17 - - -31,-20 - - -31,-19 - - -31,-18 - - -31,-17 - - -30,-20 - - -30,-19 - - -30,-18 - - -30,-17 - - -29,-19 - - -28,-17 - - -27,-18 - - -26,-17 - - -32,-19 - - -29,-20 - - -29,-17 - - -28,-20 - - -27,-20 - - -26,-20 - - -26,-19 - - -26,-18 - - -29,-18 - - -28,-19 - - -28,-18 - - -27,-19 - - -27,-17 - - -29,-24 - - -28,-24 - - -28,-23 - - -27,-24 - - -27,-23 - - -26,-24 - - -26,-23 - - -26,-22 - - -25,-24 - - -25,-23 - - -25,-22 - -40,-24: - - -33,-20 - - -33,-19 - - -33,-18 - - -33,-17 - - -35,-24 - - -35,-23 - - -35,-22 - - -35,-21 - - -35,-20 - - -35,-19 - - -35,-18 - - -35,-17 - - -34,-20 - 8,-16: - - 14,-12 - - 15,-12 - - 8,-10 - - 8,-9 - - 9,-10 - - 9,-9 - - 10,-12 - - 10,-11 - - 10,-10 - - 10,-9 - - 11,-12 - - 11,-11 - - 11,-10 - - 11,-9 - - 12,-12 - - 12,-11 - - 12,-10 - - 12,-9 - - 13,-12 - - 13,-11 - - 13,-10 - - 13,-9 - - 14,-11 - - 14,-10 - - 14,-9 - - 15,-11 - - 15,-10 - - 15,-9 - - 8,-13 - - 8,-12 - - 8,-11 - - 9,-13 - - 9,-12 - - 9,-11 - - 10,-14 - - 10,-13 - - 11,-14 - - 11,-13 - - 12,-15 - - 12,-13 - - 13,-14 - - 15,-13 - - 10,-16 - - 11,-16 - - 12,-16 - - 13,-16 - - 14,-16 - - 15,-16 - - 8,-16 - - 9,-16 - - 10,-15 - 0,-24: - - 0,-23 - - 0,-22 - - 0,-21 - - 0,-20 - - 0,-19 - - 0,-18 - - 0,-17 - - 1,-23 - - 1,-22 - - 1,-21 - - 1,-20 - - 1,-19 - - 1,-18 - - 1,-17 - - 2,-23 - - 2,-22 - - 2,-21 - - 2,-20 - - 2,-19 - - 2,-18 - - 2,-17 - - 3,-23 - - 3,-22 - - 3,-21 - - 3,-20 - - 3,-19 - - 3,-18 - - 3,-17 - - 4,-23 - - 4,-22 - - 4,-21 - - 4,-20 - - 4,-19 - - 4,-18 - - 4,-17 - - 5,-18 - - 5,-19 - - 5,-17 - - 6,-17 - - 5,-23 - - 5,-22 - - 5,-21 - - 5,-20 - - 6,-18 - - 6,-19 - - 6,-20 - - 0,-24 - - 1,-24 - - 2,-24 - - 3,-24 - - 4,-24 - - 5,-24 - - 7,-21 - -8,-24: - - -8,-23 - - -8,-22 - - -8,-21 - - -8,-20 - - -8,-19 - - -8,-18 - - -8,-17 - - -7,-23 - - -7,-22 - - -7,-21 - - -7,-20 - - -7,-19 - - -7,-18 - - -7,-17 - - -6,-23 - - -6,-22 - - -6,-21 - - -6,-20 - - -6,-19 - - -6,-18 - - -6,-17 - - -5,-23 - - -5,-22 - - -5,-21 - - -5,-20 - - -5,-19 - - -5,-18 - - -5,-17 - - -4,-23 - - -4,-22 - - -4,-21 - - -4,-20 - - -4,-19 - - -4,-18 - - -4,-17 - - -3,-23 - - -3,-22 - - -3,-21 - - -3,-20 - - -3,-19 - - -3,-18 - - -3,-17 - - -2,-23 - - -2,-22 - - -2,-21 - - -2,-20 - - -2,-19 - - -2,-18 - - -2,-17 - - -1,-23 - - -1,-22 - - -1,-21 - - -1,-20 - - -1,-19 - - -1,-18 - - -1,-17 - - -8,-24 - - -7,-24 - - -6,-24 - - -5,-24 - - -4,-24 - - -3,-24 - - -2,-24 - - -1,-24 - 16,48: - - 16,48 - - 16,49 - - 16,50 - - 21,51 - - 21,52 - - 21,53 - - 22,50 - - 22,51 - - 22,52 - - 22,53 - - 23,50 - - 23,51 - - 23,52 - - 16,51 - - 16,52 - - 17,48 - - 17,49 - - 17,50 - - 17,51 - - 17,52 - - 18,48 - - 18,49 - - 18,50 - - 18,51 - - 18,52 - - 19,48 - - 19,49 - - 19,50 - - 19,51 - - 19,52 - - 20,48 - - 20,49 - - 20,50 - - 20,51 - - 20,52 - - 21,48 - - 21,49 - - 21,50 - - 22,48 - - 22,49 - - 23,48 - - 23,49 - - 23,53 - - 21,54 - - 21,55 - - 22,54 - - 22,55 - - 23,54 - - 23,55 - - 16,53 - - 16,54 - - 16,55 - - 17,53 - - 17,54 - - 17,55 - - 18,53 - - 18,54 - - 18,55 - - 19,53 - - 19,54 - - 19,55 - - 20,53 - - 20,54 - - 20,55 - 24,48: - - 24,50 - - 24,51 - - 24,52 - - 24,53 - - 25,51 - - 25,53 - - 26,52 - - 26,53 - - 27,52 - - 27,53 - - 28,51 - - 28,53 - - 29,50 - - 29,51 - - 29,52 - - 29,53 - - 24,48 - - 24,49 - - 25,48 - - 25,49 - - 25,50 - - 25,52 - - 26,48 - - 26,49 - - 26,50 - - 26,51 - - 27,48 - - 27,49 - - 27,50 - - 27,51 - - 28,48 - - 28,49 - - 28,50 - - 29,48 - - 29,49 - - 30,48 - - 30,51 - - 28,52 - - 24,55 - - 25,54 - - 25,55 - - 27,54 - - 27,55 - - 28,54 - - 29,55 - - 30,49 - - 30,50 - - 30,52 - - 30,53 - - 30,54 - - 30,55 - - 31,50 - - 31,51 - - 31,52 - - 31,53 - - 31,54 - - 31,55 - - 24,54 - - 31,48 - - 31,49 - - 26,54 - - 26,55 - - 28,55 - - 29,54 - 32,48: - - 32,50 - - 32,48 - - 32,49 - - 33,52 - - 34,48 - - 34,49 - - 34,50 - - 33,53 - - 33,54 - - 33,55 - - 34,51 - - 34,52 - 32,40: - - 32,40 - - 32,41 - - 32,42 - - 32,43 - - 32,44 - - 32,45 - - 32,46 - - 32,47 - - 33,42 - - 34,41 - - 35,41 - - 36,41 - - 36,42 - - 36,43 - - 37,41 - - 37,44 - - 37,45 - - 33,43 - - 33,44 - - 33,45 - - 34,42 - - 34,43 - - 34,44 - - 34,45 - - 35,42 - - 35,43 - - 35,44 - - 35,45 - - 36,44 - - 36,45 - - 37,42 - - 37,43 - - 33,41 - - 33,40 - - 34,40 - - 35,40 - - 36,40 - - 39,40 - - 34,47 - - 35,47 - - 36,47 - - 37,47 - - 38,46 - - 38,47 - - 39,47 - - 38,40 - - 38,41 - - 38,42 - - 38,43 - - 38,44 - - 38,45 - - 34,46 - 32,32: - - 32,39 - - 32,32 - - 32,33 - - 32,34 - - 32,35 - - 32,36 - - 33,33 - - 33,34 - - 33,35 - - 33,36 - - 34,33 - - 34,34 - - 34,35 - - 34,36 - - 34,37 - - 35,33 - - 35,34 - - 35,39 - - 36,34 - - 36,35 - - 36,36 - - 36,37 - - 36,38 - - 36,39 - - 37,33 - - 37,34 - - 38,33 - - 38,34 - - 38,35 - - 38,38 - - 39,35 - - 33,32 - - 39,33 - - 33,37 - - 33,38 - - 33,39 - - 34,38 - - 34,39 - - 35,35 - - 35,36 - - 35,37 - - 35,38 - - 36,33 - - 37,35 - - 37,36 - - 37,37 - - 37,38 - - 37,39 - - 38,36 - - 38,37 - - 38,39 - - 39,34 - - 39,36 - - 39,37 - - 39,38 - - 35,32 - 24,56: - - 24,56 - - 26,56 - - 26,57 - - 30,56 - - 25,56 - - 25,57 - - 26,58 - - 24,57 - - 24,58 - - 25,58 - - 24,60 - - 24,61 - - 24,62 - - 24,63 - - 25,60 - - 25,61 - - 25,62 - - 26,60 - - 26,61 - - 27,56 - - 27,60 - - 27,61 - - 27,62 - - 27,63 - - 28,59 - - 28,61 - - 28,62 - - 29,56 - - 29,57 - - 29,58 - - 29,60 - - 29,61 - - 30,57 - - 30,58 - - 30,60 - - 30,61 - - 30,62 - - 24,59 - - 25,63 - - 26,63 - - 28,56 - - 29,62 - - 25,59 - - 26,59 - - 26,62 - - 27,57 - - 27,58 - - 27,59 - - 28,57 - - 28,58 - - 28,60 - - 29,59 - - 30,59 - - 31,56 - 16,56: - - 23,56 - - 16,56 - - 17,56 - - 18,56 - - 19,56 - - 20,56 - - 21,56 - - 22,56 - - 16,63 - - 23,57 - - 16,57 - - 16,58 - - 16,59 - - 16,60 - - 16,61 - - 16,62 - - 17,57 - - 17,58 - - 17,59 - - 18,57 - - 18,58 - - 18,59 - - 19,57 - - 19,58 - - 20,57 - - 21,57 - - 21,58 - - 22,57 - - 22,58 - - 23,58 - - 20,58 - - 17,62 - - 17,63 - - 18,62 - - 18,63 - - 19,60 - - 19,61 - - 19,63 - - 20,60 - - 20,61 - - 20,62 - - 20,63 - - 21,60 - - 21,62 - - 21,63 - - 22,60 - - 22,61 - - 22,62 - - 22,63 - - 23,59 - - 23,60 - - 23,61 - - 23,62 - - 23,63 - - 17,60 - - 17,61 - - 18,60 - - 18,61 - - 19,59 - - 19,62 - - 20,59 - - 22,59 - - 21,59 - - 21,61 - 16,64: - - 16,64 - - 16,66 - - 16,67 - - 16,68 - - 16,69 - - 16,70 - - 16,65 - - 17,64 - - 17,65 - - 17,67 - - 18,64 - - 18,66 - - 19,66 - - 19,67 - - 20,65 - - 20,66 - - 20,67 - - 21,64 - - 22,64 - - 22,65 - - 22,66 - - 23,64 - - 23,65 - - 23,66 - - 23,67 - - 18,67 - - 17,66 - - 18,65 - - 19,64 - - 19,65 - - 20,64 - - 21,65 - - 21,66 - - 21,67 - - 22,67 - - 18,69 - - 18,70 - - 18,71 - - 19,69 - - 21,68 - - 20,69 - - 21,69 - - 22,69 - - 23,69 - - 18,68 - - 17,68 - - 19,68 - - 20,68 - - 21,71 - - 22,68 - - 22,71 - - 23,68 - - 16,71 - - 17,69 - - 17,70 - - 17,71 - - 19,70 - - 19,71 - - 22,70 - - 21,70 - 24,-8: - - 24,-6 - - 24,-5 - - 24,-4 - - 24,-3 - - 24,-2 - - 24,-1 - - 25,-2 - - 25,-1 - - 26,-2 - - 26,-1 - - 27,-2 - - 27,-1 - - 28,-2 - - 28,-1 - 16,-16: - - 18,-11 - - 18,-10 - - 19,-12 - - 19,-11 - - 19,-9 - - 20,-12 - - 20,-10 - - 20,-9 - - 21,-12 - - 21,-11 - - 21,-10 - - 21,-9 - - 22,-12 - - 22,-11 - - 22,-10 - - 22,-9 - - 16,-12 - - 16,-11 - - 16,-10 - - 17,-11 - - 17,-10 - - 18,-12 - - 19,-10 - - 20,-13 - - 20,-11 - - 22,-13 - - 16,-9 - - 17,-12 - - 17,-9 - - 18,-9 - - 17,-13 - - 18,-14 - - 18,-13 - - 19,-14 - - 19,-13 - - 21,-14 - - 21,-13 - - 17,-14 - - 21,-15 - - 19,-15 - - 20,-14 - - 16,-15 - - 17,-16 - - 16,-16 - - 18,-16 - - 18,-15 - - 19,-16 - - 20,-16 - - 20,-15 - - 21,-16 - - 22,-16 - - 23,-16 - - 23,-9 - -40,40: - - -34,40 - - -34,43 - - -34,44 - - -34,45 - - -34,47 - - -33,41 - - -33,43 - - -33,44 - - -33,46 - - -33,47 - - -34,41 - - -34,42 - - -34,46 - - -33,40 - - -33,42 - - -33,45 - - -38,46 - - -38,47 - - -37,46 - - -37,47 - - -36,46 - - -36,47 - - -35,46 - - -35,47 - - -38,40 - - -36,40 - - -35,40 - - -35,42 - - -35,43 - - -35,44 - - -40,40 - - -40,41 - - -40,42 - - -40,43 - - -40,46 - - -40,47 - - -39,40 - - -39,42 - - -39,43 - - -39,44 - - -38,42 - - -38,43 - - -38,44 - - -38,45 - - -37,40 - - -37,42 - - -37,43 - - -37,44 - - -36,41 - - -36,42 - - -36,43 - - -36,44 - - -40,44 - - -40,45 - - -39,41 - - -39,45 - - -38,41 - - -37,41 - - -35,41 - - -39,46 - - -39,47 - - -37,45 - - -36,45 - - -35,45 - 24,64: - - 24,64 - - 24,65 - - 24,66 - - 25,64 - - 25,65 - - 25,66 - - 25,67 - - 26,64 - - 26,65 - - 26,66 - - 26,67 - - 27,64 - - 27,65 - - 27,66 - - 27,67 - - 28,64 - - 28,65 - - 24,67 - - 31,64 - - 24,69 - - 25,69 - - 26,69 - - 27,69 - - 28,69 - - 29,64 - - 29,65 - - 29,66 - - 29,67 - - 29,68 - - 29,69 - - 30,64 - - 30,65 - -32,72: - - -25,73 - -24,72: - - -24,72 - - -23,72 - - -22,72 - - -21,72 - - -17,72 - -16,72: - - -16,72 - - -15,72 - - -13,72 - - -10,72 - - -9,72 - - -16,75 - - -16,76 - - -16,77 - - -15,77 - - -14,76 - - -14,77 - - -13,76 - - -13,77 - - -11,75 - - -11,77 - - -10,75 - - -10,77 - - -10,79 - - -16,73 - - -16,74 - - -16,78 - - -16,79 - - -15,73 - - -15,74 - - -15,75 - - -15,76 - - -15,78 - - -15,79 - - -14,72 - - -14,73 - - -14,74 - - -14,75 - - -14,78 - - -14,79 - - -13,73 - - -13,74 - - -13,75 - - -13,78 - - -13,79 - - -12,72 - - -12,73 - - -12,74 - - -12,75 - - -12,76 - - -12,77 - - -12,78 - - -12,79 - - -11,72 - - -11,73 - - -11,74 - - -11,76 - - -11,78 - - -11,79 - - -10,73 - - -10,74 - - -10,76 - - -10,78 - - -9,73 - - -9,74 - - -9,75 - - -9,77 - - -9,78 - - -9,79 - -8,72: - - -8,72 - - -6,72 - - -3,72 - - -2,72 - - -1,72 - - -8,73 - - -8,74 - - -8,75 - - -8,76 - - -8,77 - - -8,78 - - -8,79 - - -7,72 - - -7,73 - - -7,74 - - -7,75 - - -7,76 - - -7,77 - - -7,78 - - -7,79 - - -6,73 - - -6,74 - - -6,75 - - -6,76 - - -6,77 - - -6,78 - - -6,79 - - -5,72 - - -5,73 - - -5,74 - - -5,75 - - -5,76 - - -5,77 - - -5,78 - - -5,79 - - -4,72 - - -4,73 - - -4,74 - - -4,75 - - -4,76 - - -4,77 - - -4,78 - - -4,79 - - -3,73 - - -3,74 - - -3,75 - - -3,76 - - -3,77 - - -3,78 - - -3,79 - - -2,73 - - -2,74 - - -2,75 - - -2,76 - - -2,77 - - -2,78 - - -2,79 - - -1,73 - - -1,74 - - -1,75 - - -1,76 - - -1,77 - - -1,78 - - -1,79 - -32,64: - - -30,64 - - -31,64 - - -31,65 - - -31,67 - - -30,66 - - -30,67 - - -30,68 - - -29,64 - - -29,65 - - -29,66 - - -28,64 - - -28,65 - - -28,66 - - -28,67 - - -27,64 - - -27,65 - - -27,66 - - -30,65 - - -31,66 - - -29,67 - - -27,67 - - -32,64 - - -32,66 - - -32,67 - -40,48: - - -34,49 - - -34,50 - - -33,48 - - -33,49 - - -33,50 - - -34,48 - - -38,48 - - -38,49 - - -38,50 - - -37,48 - - -37,49 - - -37,50 - - -36,48 - - -36,49 - - -36,50 - - -35,48 - - -35,49 - - -35,50 - - -40,48 - - -40,49 - - -40,50 - - -40,55 - - -38,54 - - -38,55 - - -37,54 - - -36,52 - - -36,54 - - -36,55 - - -35,51 - - -35,52 - - -35,53 - - -35,54 - - -35,55 - - -34,53 - - -34,54 - - -34,55 - - -33,51 - - -33,52 - - -33,53 - - -33,55 - - -40,51 - - -40,52 - - -40,53 - - -40,54 - - -39,48 - - -39,49 - - -39,50 - - -39,51 - - -39,52 - - -38,51 - - -38,52 - - -37,51 - - -37,55 - - -36,51 - - -34,51 - -32,56: - - -32,60 - - -31,57 - - -31,58 - - -31,60 - - -31,61 - - -31,62 - - -30,56 - - -30,57 - - -30,58 - - -30,59 - - -30,60 - - -30,61 - - -30,63 - - -29,56 - - -29,57 - - -29,58 - - -29,59 - - -29,60 - - -29,61 - - -29,62 - - -29,63 - - -28,56 - - -28,57 - - -28,58 - - -28,59 - - -28,60 - - -28,61 - - -28,62 - - -28,63 - - -27,56 - - -27,57 - - -27,58 - - -27,59 - - -27,60 - - -27,61 - - -27,62 - - -27,63 - - -31,56 - - -31,59 - - -31,63 - - -30,62 - - -32,56 - - -32,57 - - -32,58 - - -32,59 - - -26,56 - - -26,57 - - -26,58 - - -26,59 - - -26,61 - - -26,62 - - -26,63 - - -25,56 - - -25,57 - - -25,58 - - -25,60 - - -25,61 - - -25,62 - - -25,63 - -48,-16: - - -46,-11 - - -46,-10 - - -46,-9 - - -45,-14 - - -45,-13 - - -45,-12 - - -45,-11 - - -45,-10 - - -45,-9 - - -44,-11 - - -42,-10 - - -41,-10 - - -41,-9 - - -44,-13 - - -44,-12 - - -44,-10 - - -44,-9 - - -43,-14 - - -43,-13 - - -43,-12 - - -43,-11 - - -43,-10 - - -43,-9 - - -42,-14 - - -42,-13 - - -42,-12 - - -42,-11 - - -42,-9 - - -41,-14 - - -41,-13 - - -41,-12 - - -41,-11 - - -47,-12 - - -47,-11 - - -47,-9 - - -46,-12 - - -47,-10 - - -46,-13 - - -42,-15 - - -41,-15 - - -48,-15 - - -47,-15 - - -46,-15 - - -45,-15 - - -44,-15 - - -43,-15 - - -48,-14 - - -48,-12 - 40,0: - - 40,6 - - 41,6 - - 41,7 - - 40,5 - - 40,7 - - 41,5 - - 42,5 - - 42,6 - - 42,7 - - 43,5 - - 43,6 - - 43,7 - - 44,6 - - 44,7 - - 45,6 - - 45,7 - - 46,6 - - 46,7 - - 47,6 - - 47,7 - - 40,1 - - 41,1 - - 42,1 - - 43,1 - - 44,1 - - 45,1 - - 46,1 - - 47,1 - - 43,0 - 32,16: - - 34,16 - - 35,16 - - 36,16 - - 37,16 - - 38,16 - - 39,16 - - 38,17 - - 38,18 - - 39,17 - - 39,18 - - 37,20 - - 38,20 - - 39,20 - - 35,20 - - 35,21 - - 35,22 - - 35,23 - - 36,20 - - 36,21 - - 35,17 - - 35,18 - - 35,19 - 32,8: - - 32,10 - - 32,11 - - 32,12 - - 32,13 - - 33,10 - - 33,11 - - 33,12 - - 33,13 - - 34,8 - - 34,9 - - 34,10 - - 34,11 - - 34,12 - - 34,13 - - 34,14 - - 34,15 - - 35,8 - - 35,9 - - 35,10 - - 35,11 - - 35,12 - - 35,13 - - 35,14 - - 35,15 - - 36,8 - - 36,9 - - 36,10 - - 36,11 - - 36,12 - - 36,13 - - 36,14 - - 36,15 - - 37,8 - - 37,9 - - 37,10 - - 37,11 - - 37,12 - - 37,13 - - 37,14 - - 37,15 - - 38,8 - - 38,9 - - 38,10 - - 38,11 - - 38,12 - - 38,13 - - 38,14 - - 38,15 - - 39,9 - - 39,10 - - 39,11 - - 39,12 - - 39,13 - - 39,14 - - 39,15 - - 39,8 - - 32,9 - - 32,14 - - 33,9 - - 33,14 - 32,0: - - 34,7 - - 35,7 - - 38,7 - - 36,7 - - 37,7 - - 39,7 - - 38,5 - - 38,6 - - 39,5 - - 39,6 - - 32,3 - - 32,4 - - 32,5 - - 32,6 - - 32,7 - - 33,0 - - 34,1 - - 35,1 - - 36,1 - - 37,1 - - 38,1 - - 39,1 - - 33,1 - - 34,0 - - 33,2 - - 33,3 - 48,16: - - 48,16 - - 48,17 - - 49,16 - - 49,17 - - 50,16 - - 51,16 - - 48,20 - - 49,20 - - 50,20 - - 51,20 - - 52,20 - - 53,16 - - 53,17 - - 53,18 - - 53,19 - - 53,20 - - 49,18 - - 49,19 - - 52,16 - 48,8: - - 48,9 - - 48,10 - - 48,11 - - 48,12 - - 48,13 - - 48,14 - - 48,15 - - 49,9 - - 49,10 - - 49,11 - - 49,12 - - 49,13 - - 49,14 - - 48,8 - - 49,8 - - 49,15 - - 50,8 - - 50,9 - - 50,10 - - 50,11 - - 50,12 - - 50,13 - - 50,14 - - 50,15 - - 51,8 - - 51,10 - - 51,11 - - 51,12 - - 51,13 - - 51,14 - - 51,15 - - 51,9 - - 53,8 - - 53,9 - - 53,10 - - 53,11 - - 53,12 - - 53,13 - - 53,14 - - 53,15 - 40,16: - - 40,16 - - 41,16 - - 42,16 - - 43,16 - - 44,16 - - 45,16 - - 46,16 - - 47,16 - - 40,17 - - 40,18 - - 41,17 - - 41,18 - - 42,17 - - 42,18 - - 43,17 - - 43,18 - - 44,17 - - 45,17 - - 47,17 - - 46,17 - - 44,18 - - 45,18 - - 44,19 - - 40,20 - - 41,20 - - 42,20 - - 45,20 - - 46,20 - - 47,20 - - 43,20 - - 44,20 - 40,8: - - 40,9 - - 41,9 - - 41,10 - - 42,10 - - 43,8 - - 43,9 - - 44,8 - - 44,9 - - 45,8 - - 46,8 - - 46,9 - - 47,8 - - 40,10 - - 40,11 - - 40,12 - - 40,13 - - 40,14 - - 40,15 - - 41,11 - - 41,12 - - 41,13 - - 41,14 - - 41,15 - - 42,11 - - 42,12 - - 42,13 - - 42,14 - - 42,15 - - 43,11 - - 43,12 - - 43,13 - - 43,14 - - 43,15 - - 44,10 - - 44,11 - - 44,12 - - 44,13 - - 44,14 - - 44,15 - - 45,10 - - 45,11 - - 45,12 - - 45,13 - - 45,14 - - 45,15 - - 46,10 - - 46,11 - - 46,12 - - 46,13 - - 46,14 - - 46,15 - - 47,10 - - 47,11 - - 47,12 - - 47,13 - - 47,14 - - 47,15 - - 42,9 - - 43,10 - - 45,9 - - 47,9 - - 40,8 - - 41,8 - - 42,8 - 48,0: - - 49,6 - - 50,7 - - 51,7 - - 48,6 - - 48,7 - - 49,7 - - 50,1 - - 51,1 - - 52,1 - - 53,1 - - 53,2 - - 53,3 - - 53,5 - - 53,6 - - 53,7 - - 48,1 - - 49,1 - - 53,4 - - 49,4 - - 52,7 - - 49,2 - - 49,3 - - 49,5 - -56,40: - - -50,41 - - -49,40 - -48,48: - - -44,48 - - -42,49 - - -42,50 - - -41,49 - - -42,48 - - -41,48 - - -41,55 - -48,40: - - -47,44 - - -46,44 - - -46,45 - - -46,46 - - -45,41 - - -45,44 - - -45,45 - - -44,41 - - -44,43 - - -44,44 - - -44,45 - - -44,46 - - -44,47 - - -43,40 - - -43,41 - - -43,42 - - -43,43 - - -43,45 - - -43,46 - - -42,40 - - -42,41 - - -42,42 - - -42,45 - - -42,46 - - -41,40 - - -41,41 - - -41,42 - - -41,46 - - -41,47 - - -48,40 - - -48,41 - - -47,40 - - -47,41 - - -47,42 - - -47,43 - - -46,40 - - -46,41 - - -46,42 - - -46,43 - - -45,40 - - -45,42 - - -45,43 - - -44,40 - - -44,42 - - -43,44 - - -42,43 - - -42,44 - - -42,47 - - -41,43 - - -41,44 - - -41,45 - 40,32: - - 40,35 - - 40,36 - - 41,36 - - 42,34 - - 42,35 - - 42,36 - - 42,37 - - 42,38 - - 43,34 - - 44,34 - - 40,33 - - 40,34 - - 40,37 - - 41,33 - - 41,34 - - 41,35 - 32,24: - - 32,28 - - 32,29 - - 32,30 - - 33,27 - - 33,28 - - 33,29 - - 33,30 - - 32,26 - - 32,27 - - 34,27 - - 34,28 - - 33,26 - - 34,29 - - 35,24 - - 35,25 - - 35,26 - - 35,27 - - 35,28 - - 35,29 - - 35,31 - - 35,30 - -40,-32: - - -33,-25 - - -35,-32 - - -35,-31 - - -35,-30 - - -35,-29 - - -35,-28 - - -35,-27 - - -35,-26 - - -35,-25 - - -34,-32 - - -33,-32 - -32,-32: - - -32,-32 - - -32,-31 - - -32,-30 - - -32,-29 - - -32,-28 - - -32,-27 - - -32,-26 - - -31,-32 - - -31,-31 - - -31,-30 - - -31,-29 - - -31,-28 - - -31,-27 - - -31,-26 - - -30,-32 - - -30,-31 - - -30,-30 - - -30,-29 - - -30,-28 - - -30,-27 - - -30,-26 - - -29,-32 - - -29,-31 - - -29,-30 - - -29,-29 - - -29,-28 - - -29,-27 - - -29,-26 - - -28,-32 - - -28,-31 - - -28,-30 - - -28,-29 - - -28,-28 - - -28,-27 - - -28,-26 - - -27,-32 - - -27,-31 - - -27,-30 - - -27,-29 - - -27,-28 - - -27,-27 - - -27,-26 - - -26,-32 - - -26,-31 - - -26,-30 - - -26,-29 - - -26,-28 - - -26,-27 - - -26,-26 - - -25,-32 - - -25,-31 - - -25,-30 - - -25,-29 - - -25,-28 - - -25,-27 - - -25,-26 - - -32,-25 - - -29,-25 - - -28,-25 - - -27,-25 - - -26,-25 - - -25,-25 - -8,-32: - - -8,-31 - - -8,-30 - - -8,-29 - - -8,-28 - - -8,-27 - - -7,-31 - - -7,-30 - - -7,-29 - - -7,-28 - - -7,-27 - - -6,-31 - - -6,-30 - - -6,-29 - - -6,-28 - - -6,-27 - - -5,-31 - - -5,-30 - - -5,-29 - - -5,-28 - - -5,-27 - - -4,-31 - - -4,-30 - - -4,-29 - - -4,-28 - - -4,-27 - - -8,-26 - - -8,-25 - - -7,-26 - - -7,-25 - - -6,-26 - - -6,-25 - - -5,-26 - - -5,-25 - - -4,-26 - - -4,-25 - - -3,-29 - - -3,-28 - - -3,-27 - - -3,-26 - - -3,-25 - - -2,-29 - - -2,-28 - - -2,-27 - - -2,-26 - - -2,-25 - - -1,-29 - - -1,-28 - - -1,-27 - - -1,-26 - - -1,-25 - - -8,-32 - - -3,-31 - - -2,-31 - - -1,-31 - -16,-32: - - -16,-32 - - -16,-31 - - -16,-30 - - -16,-29 - - -16,-28 - - -16,-27 - - -16,-26 - - -16,-25 - - -15,-32 - - -15,-31 - - -15,-30 - - -15,-29 - - -15,-28 - - -15,-27 - - -15,-26 - - -15,-25 - - -14,-32 - - -14,-31 - - -14,-30 - - -14,-29 - - -14,-28 - - -14,-27 - - -14,-26 - - -14,-25 - - -13,-32 - - -13,-31 - - -13,-30 - - -13,-29 - - -13,-28 - - -13,-27 - - -13,-26 - - -13,-25 - - -12,-32 - - -12,-31 - - -12,-30 - - -12,-29 - - -12,-28 - - -12,-27 - - -12,-26 - - -12,-25 - - -11,-32 - - -11,-31 - - -11,-30 - - -11,-29 - - -11,-28 - - -11,-27 - - -11,-26 - - -11,-25 - - -10,-32 - - -10,-31 - - -10,-30 - - -10,-29 - - -10,-28 - - -10,-27 - - -10,-26 - - -9,-31 - - -9,-30 - - -9,-29 - - -9,-28 - - -9,-27 - - -10,-25 - - -9,-26 - - -9,-25 - -24,-32: - - -24,-32 - - -24,-31 - - -24,-30 - - -24,-29 - - -24,-28 - - -24,-27 - - -24,-26 - - -24,-25 - - -23,-32 - - -23,-31 - - -23,-30 - - -23,-29 - - -23,-28 - - -23,-27 - - -23,-26 - - -23,-25 - - -22,-32 - - -22,-31 - - -22,-30 - - -22,-29 - - -22,-28 - - -22,-27 - - -22,-26 - - -22,-25 - - -21,-32 - - -21,-31 - - -21,-30 - - -21,-29 - - -21,-28 - - -21,-27 - - -21,-26 - - -21,-25 - - -20,-32 - - -20,-31 - - -20,-30 - - -20,-29 - - -20,-28 - - -20,-27 - - -20,-26 - - -20,-25 - - -19,-32 - - -19,-31 - - -19,-30 - - -19,-29 - - -19,-28 - - -19,-27 - - -19,-26 - - -19,-25 - - -18,-32 - - -18,-31 - - -18,-30 - - -18,-29 - - -18,-28 - - -18,-27 - - -18,-26 - - -18,-25 - - -17,-32 - - -17,-31 - - -17,-30 - - -17,-29 - - -17,-28 - - -17,-27 - - -17,-26 - - -17,-25 - -40,56: - - -40,56 - - -40,57 - - -40,58 - - -40,59 - - -40,60 - - -40,62 - - -39,56 - - -39,57 - - -39,58 - - -39,59 - - -39,60 - - -39,61 - - -38,57 - - -38,58 - - -38,59 - - -38,60 - - -38,61 - - -38,62 - - -38,63 - - -37,56 - - -37,57 - - -37,58 - - -37,59 - - -37,60 - - -37,61 - - -36,56 - - -36,57 - - -36,58 - - -36,60 - - -36,61 - - -36,62 - - -36,63 - - -35,56 - - -35,57 - - -35,58 - - -35,59 - - -35,60 - - -35,62 - - -34,56 - - -34,57 - - -34,58 - - -34,59 - - -34,60 - - -34,61 - - -34,62 - - -33,56 - - -33,58 - - -33,59 - - -33,63 - - -39,63 - - -38,56 - - -36,59 - - -33,57 - -56,24: - - -51,27 - - -50,27 - - -50,28 - - -50,30 - - -49,25 - - -49,26 - - -49,30 - - -49,31 - 0,-32: - - 0,-25 - - 1,-25 - - 2,-25 - - 3,-25 - - 4,-25 - - 5,-25 - - 0,-29 - - 0,-28 - - 0,-27 - - 0,-26 - - 1,-29 - - 1,-28 - - 1,-27 - - 1,-26 - - 2,-29 - - 2,-28 - - 2,-27 - - 2,-26 - - 3,-29 - - 3,-28 - - 3,-27 - - 3,-26 - - 4,-29 - - 4,-28 - - 4,-27 - - 4,-26 - - 5,-30 - - 5,-29 - - 5,-28 - - 5,-27 - - 5,-26 - - 0,-31 - - 1,-31 - - 2,-31 - - 3,-31 - - 6,-31 - - 4,-31 - - 5,-31 - - 7,-31 - 8,-32: - - 8,-25 - - 9,-31 - - 10,-31 - - 10,-30 - - 10,-29 - - 10,-28 - - 10,-27 - - 10,-26 - - 10,-25 - - 8,-31 - 32,-8: - - 33,-8 - - 33,-5 - - 33,-4 - - 33,-3 - - 33,-2 - - 33,-1 - - 33,-7 - - 33,-6 - - 32,-8 - 32,-16: - - 32,-9 - - 33,-9 - 24,-16: - - 24,-16 - - 25,-16 - - 26,-16 - - 26,-15 - - 26,-14 - - 26,-13 - - 26,-12 - - 26,-11 - - 26,-10 - - 26,-9 - - 27,-9 - - 28,-9 - - 29,-9 - - 30,-9 - - 31,-9 - - 25,-9 - - 24,-9 - 8,-24: - - 10,-24 - - 10,-23 - - 10,-22 - - 10,-21 - - 10,-20 - - 10,-19 - - 10,-18 - - 10,-17 - - 11,-17 - - 14,-17 - -8,-40: - - -8,-36 - - -8,-35 - - -8,-34 - - -8,-33 - -40,-40: - - -35,-36 - - -35,-35 - - -35,-34 - - -35,-33 - - -34,-36 - - -33,-36 - - -34,-35 - -16,-40: - - -16,-36 - - -15,-36 - - -14,-36 - - -13,-36 - - -12,-36 - - -11,-36 - - -10,-36 - - -9,-36 - -24,-40: - - -24,-36 - - -23,-36 - - -22,-36 - - -21,-36 - - -20,-36 - - -19,-36 - - -18,-36 - - -17,-36 - -32,-40: - - -32,-36 - - -31,-36 - - -30,-36 - - -29,-36 - - -28,-36 - - -27,-36 - - -26,-36 - - -25,-36 - - -32,-35 - - -32,-34 - - -32,-33 - -56,-16: - - -49,-15 - - -49,-14 - - -49,-13 - - -49,-12 - - -49,-11 - - -49,-10 - - -49,-9 - -56,-8: - - -49,-8 - - -49,-7 - - -49,-6 - - -49,-5 - - -49,-4 - - -49,-3 - - -49,-2 - - -49,-1 - -56,0: - - -49,0 - - -49,1 - - -49,2 - -48,56: - - -44,59 - - -44,60 - - -44,61 - - -44,62 - - -44,63 - - -42,58 - - -42,59 - - -42,63 - - -41,56 - - -41,57 - - -41,58 - - -41,60 - - -41,63 - - -43,57 - - -43,59 - - -43,61 - - -42,56 - - -42,57 - - -41,59 - - -41,62 - -48,64: - - -42,64 - - -42,66 - - -41,66 - -40,64: - - -40,66 - - -40,67 - - -40,68 - - -39,65 - - -39,66 - - -39,67 - - -38,66 - - -38,67 - - -38,68 - - -37,64 - - -37,65 - - -37,66 - - -37,67 - - -37,68 - - -36,64 - - -36,65 - - -36,66 - - -36,67 - - -36,68 - - -35,64 - - -35,65 - - -35,66 - - -35,67 - - -35,68 - - -34,64 - - -34,66 - - -34,67 - - -34,68 - - -33,67 - - -33,68 - - -40,69 - - -39,64 - - -39,69 - - -33,69 - 0,72: - - 2,72 - - 2,73 - - 3,73 - - 4,73 - - 6,73 - - 7,73 - - 5,73 - - 2,79 - - 3,75 - - 3,76 - - 3,77 - - 3,78 - - 3,79 - - 4,75 - - 4,76 - - 4,77 - - 4,78 - - 4,79 - - 5,74 - - 5,75 - - 5,76 - - 5,77 - - 5,78 - - 5,79 - - 6,75 - - 6,76 - - 6,77 - - 6,78 - - 6,79 - - 7,74 - - 7,78 - - 7,79 - - 0,72 - - 0,73 - - 0,74 - - 0,75 - - 0,76 - - 0,77 - - 0,78 - - 0,79 - - 1,72 - - 1,73 - - 1,74 - - 1,75 - - 1,76 - - 1,77 - - 1,78 - - 1,79 - - 2,74 - - 2,75 - - 2,76 - - 2,77 - - 2,78 - - 3,72 - - 3,74 - - 4,72 - - 4,74 - - 5,72 - - 6,72 - - 7,72 - - 7,75 - 8,72: - - 8,73 - - 9,73 - - 10,73 - - 11,73 - - 12,73 - - 13,73 - - 14,73 - - 15,73 - - 8,79 - - 9,77 - - 9,78 - - 9,79 - - 10,78 - - 10,79 - - 8,72 - - 8,74 - - 8,75 - - 9,72 - - 9,74 - - 9,75 - - 10,72 - - 10,74 - - 10,75 - - 10,76 - - 10,77 - - 11,72 - - 11,74 - - 11,75 - - 11,76 - - 11,77 - - 11,78 - - 11,79 - - 12,72 - - 12,74 - - 12,75 - - 12,76 - - 12,77 - - 12,78 - - 12,79 - - 13,72 - - 13,74 - - 13,75 - - 13,76 - - 13,77 - - 13,78 - - 13,79 - - 14,72 - - 14,74 - - 14,75 - - 14,76 - - 14,77 - - 14,78 - - 14,79 - - 15,72 - - 15,74 - - 15,75 - - 15,76 - - 15,77 - - 15,78 - - 15,79 - 16,72: - - 16,73 - - 17,73 - - 18,72 - - 18,73 - - 18,79 - - 20,72 - - 20,75 - - 20,76 - - 20,77 - - 20,79 - - 21,72 - - 21,73 - - 21,74 - - 21,75 - - 21,79 - - 22,72 - - 22,73 - - 22,76 - - 22,77 - - 22,79 - - 23,74 - - 23,75 - - 23,77 - - 23,79 - - 16,72 - - 16,74 - - 16,75 - - 16,76 - - 16,77 - - 16,78 - - 16,79 - - 17,72 - - 17,74 - - 17,75 - - 17,76 - - 17,77 - - 17,78 - - 17,79 - - 18,74 - - 18,75 - - 18,76 - - 18,77 - - 18,78 - - 19,72 - - 19,73 - - 19,74 - - 19,75 - - 19,76 - - 19,77 - - 19,78 - - 20,73 - - 20,74 - - 20,78 - - 21,78 - - 19,79 - - 22,78 - - 23,76 - - 23,78 - 32,64: - - 32,64 - 32,56: - - 32,59 - - 32,63 - - 33,58 - - 33,62 - - 33,63 - - 34,56 - - 32,56 - - 32,57 - - 32,58 - - 32,60 - - 32,61 - - 32,62 - - 33,56 - 40,-8: - - 43,-1 - 16,-24: - - 16,-17 - 16,80: - - 16,81 - - 16,82 - - 16,84 - - 16,85 - - 16,87 - - 17,81 - - 17,82 - - 17,83 - - 17,84 - - 17,85 - - 17,86 - - 17,87 - - 18,80 - - 18,83 - - 18,84 - - 18,87 - - 19,81 - - 19,83 - - 19,84 - - 19,85 - - 19,86 - - 20,83 - - 20,87 - - 21,85 - - 22,82 - - 22,86 - - 23,80 - - 23,84 - - 23,85 - - 23,86 - - 16,80 - - 16,86 - - 17,80 - - 18,85 - - 18,86 - - 19,87 - - 20,84 - - 21,83 - - 21,86 - - 22,83 - - 23,81 - - 18,81 - - 19,80 - - 19,82 - - 20,81 - - 21,81 - - 21,87 - - 22,80 - - 23,82 - - 23,87 - 8,80: - - 8,81 - - 8,84 - - 8,85 - - 8,86 - - 8,87 - - 9,80 - - 9,84 - - 9,85 - - 9,86 - - 9,87 - - 10,80 - - 10,81 - - 10,82 - - 10,84 - - 10,85 - - 10,86 - - 10,87 - - 11,82 - - 11,85 - - 11,86 - - 11,87 - - 12,82 - - 12,83 - - 12,86 - - 13,82 - - 13,84 - - 13,86 - - 13,87 - - 14,84 - - 14,85 - - 14,87 - - 15,81 - - 15,84 - - 9,82 - - 9,83 - - 11,80 - - 12,80 - - 12,84 - - 13,80 - - 14,80 - - 14,81 - - 14,82 - - 15,80 - - 15,82 - - 15,85 - - 15,87 - - 13,83 - - 14,83 - - 15,83 - 0,80: - - 0,86 - - 0,87 - - 1,84 - - 1,85 - - 1,86 - - 1,87 - - 2,80 - - 2,81 - - 2,86 - - 3,80 - - 3,85 - - 3,86 - - 3,87 - - 4,84 - - 4,85 - - 4,87 - - 5,80 - - 5,85 - - 5,86 - - 5,87 - - 6,80 - - 6,81 - - 6,83 - - 6,86 - - 6,87 - - 7,80 - - 7,81 - - 7,85 - - 7,86 - - 7,87 - - 0,80 - - 0,81 - - 0,82 - - 0,83 - - 0,84 - - 0,85 - - 1,80 - - 1,81 - - 1,82 - - 1,83 - - 2,82 - - 2,83 - - 2,87 - - 6,82 - - 6,85 - - 4,81 - - 6,84 - - 7,83 - -8,80: - - -8,87 - - -8,80 - - -8,81 - - -8,82 - - -8,83 - - -8,84 - - -8,85 - - -8,86 - - -7,80 - - -7,81 - - -7,82 - - -7,83 - - -7,84 - - -7,85 - - -7,86 - - -7,87 - - -6,80 - - -6,81 - - -6,82 - - -6,83 - - -6,84 - - -6,85 - - -6,86 - - -6,87 - - -5,80 - - -5,81 - - -5,82 - - -5,83 - - -5,84 - - -5,85 - - -5,86 - - -5,87 - - -4,80 - - -4,81 - - -4,82 - - -4,83 - - -4,84 - - -4,85 - - -4,86 - - -4,87 - - -3,80 - - -3,81 - - -3,82 - - -3,83 - - -3,84 - - -3,85 - - -3,86 - - -3,87 - - -2,80 - - -2,81 - - -2,82 - - -2,83 - - -2,84 - - -2,85 - - -2,86 - - -2,87 - - -1,80 - - -1,81 - - -1,82 - - -1,83 - - -1,84 - - -1,85 - - -1,86 - - -1,87 - -16,80: - - -16,80 - - -16,81 - - -16,82 - - -15,84 - - -15,86 - - -14,83 - - -14,86 - - -13,82 - - -13,84 - - -13,85 - - -13,86 - - -12,81 - - -12,83 - - -12,84 - - -12,85 - - -12,87 - - -11,80 - - -11,81 - - -11,82 - - -11,83 - - -11,84 - - -11,85 - - -11,86 - - -10,82 - - -10,83 - - -10,84 - - -10,85 - - -10,86 - - -10,87 - - -9,84 - - -9,85 - - -9,86 - - -9,87 - - -16,85 - - -16,86 - - -16,87 - - -15,80 - - -15,85 - - -15,87 - - -14,80 - - -14,84 - - -14,85 - - -14,87 - - -13,80 - - -13,81 - - -13,83 - - -13,87 - - -12,80 - - -12,82 - - -11,87 - - -10,80 - - -10,81 - - -9,80 - - -9,81 - - -9,82 - - -9,83 - - -15,83 - - -14,82 - - -12,86 - template: Snow - layers: - - !type:BiomeDecalLayer - threshold: -0.5 - noise: - frequency: 1 - noiseType: Cellular - seed: 0 - allowedTiles: - - FloorSnow - decals: - - grasssnowa1 - - grasssnowa2 - - grasssnowa3 - - grasssnowb1 - - grasssnowb2 - - grasssnowb3 - - grasssnowc1 - - grasssnowc2 - - grasssnowc3 - divisions: 2 - - !type:BiomeDecalLayer - threshold: -0.35 - noise: - frequency: 0.2 - noiseType: Cellular - fractalType: FBm - octaves: 5 - gain: 1 - cellularDistanceFunction: Euclidean - cellularReturnType: Distance2 - seed: 0 - allowedTiles: - - FloorSnow - decals: - - grasssnow - - grasssnow01 - - grasssnow02 - - grasssnow03 - - grasssnow04 - - grasssnow05 - - grasssnow06 - - grasssnow07 - - grasssnow08 - - grasssnow09 - - grasssnow10 - - grasssnow11 - - grasssnow12 - - grasssnow13 - - !type:BiomeDecalLayer - threshold: -0 - noise: - frequency: 1 - noiseType: Cellular - cellularDistanceFunction: Euclidean - cellularReturnType: Distance2 - seed: 0 - allowedTiles: - - FloorSnow - decals: - - bushsnowa1 - - bushsnowa2 - - bushsnowa3 - - bushsnowb3 - - bushsnowb2 - - bushsnowb3 - - !type:BiomeEntityLayer - noise: - frequency: 2 - fractalType: FBm - seed: 0 - allowedTiles: - - FloorSnow - entities: - - FloraTreeSnow01 - - FloraTreeSnow02 - - FloraTreeSnow03 - - FloraTreeSnow04 - - FloraTreeSnow05 - - FloraTreeSnow06 - - !type:BiomeEntityLayer - threshold: -0.3 - noise: - frequency: 0.05 - noiseType: Cellular - fractalType: FBm - octaves: 5 - gain: 1 - cellularDistanceFunction: Euclidean - cellularReturnType: Distance2 - seed: 0 - allowedTiles: - - FloorSnow - entities: - - WallRockSnow - - !type:BiomeDummyLayer - id: Loot - - !type:BiomeTileLayer - threshold: -1 - noise: - seed: 0 - tile: FloorSnow - - !type:BiomeTileLayer - threshold: -0.5 - noise: - frequency: 0.02 - seed: 0 - tile: FloorSnow - seed: 1907863284 - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - inherent: True - enabled: True - - type: MapAtmosphere - space: False - mixture: - volume: 2500 - temperature: 293.15 - moles: - - 21.82478 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: MapGrid chunks: -1,-1: diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index f398544006..1476ef5c2d 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -623,11 +623,11 @@ entities: 5749: 91,1 5752: 93,1 7646: 122,-6 - 8451: 92,32 - 8659: 88,-42 - 8660: 88,-38 - 8661: 88,-34 - 8662: 88,-26 + 8442: 92,32 + 8650: 88,-42 + 8651: 88,-38 + 8652: 88,-34 + 8653: 88,-26 - node: color: '#FFFFFFFF' id: Arrows @@ -638,10 +638,10 @@ entities: 5416: 86,-22 5417: 69,-27 5935: 87,32 - 8567: 69,7 - 8568: 68,7 - 8654: 70,-39 - 8655: 74,-39 + 8558: 69,7 + 8559: 68,7 + 8645: 70,-39 + 8646: 74,-39 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -651,13 +651,13 @@ entities: 3594: 58,-31 7647: 125,-4 7648: 125,-8 - 8452: 99,30 - 8453: 99,32 - 8656: 89,-44 - 8657: 89,-40 - 8658: 89,-36 - 8663: 88,-28 - 8664: 88,-27 + 8443: 99,30 + 8444: 99,32 + 8647: 89,-44 + 8648: 89,-40 + 8649: 89,-36 + 8654: 88,-28 + 8655: 88,-27 - node: color: '#FFFFFFFF' id: Basalt1 @@ -1083,13 +1083,13 @@ entities: 7930: 81,-27 7931: 82,-27 7939: 5,47 - 7942: 21,7 - 7949: 50,-19 - 8007: 95,42 - 8008: 95,43 - 8009: 95,44 - 8124: 76,-4 - 8665: 87,-20 + 7941: 21,7 + 7943: 50,-19 + 7998: 95,42 + 7999: 95,43 + 8000: 95,44 + 8115: 76,-4 + 8656: 87,-20 - node: cleanable: True color: '#FFFFFFFF' @@ -1142,12 +1142,12 @@ entities: decals: 7020: 38,-50 7021: 36,-48 - 8445: 94,29 - 8446: 96,29 - 8447: 98,29 - 8448: 98,32 - 8449: 96,32 - 8450: 94,32 + 8436: 94,29 + 8437: 96,29 + 8438: 98,29 + 8439: 98,32 + 8440: 96,32 + 8441: 94,32 - node: color: '#FFFFFFFF' id: BotRightGreyscale @@ -1156,7 +1156,7 @@ entities: 5166: 119,-24 5167: 121,-26 6215: 64,29 - 8630: 5,39 + 8621: 5,39 - node: color: '#FFFFFFFF' id: Box @@ -1244,7 +1244,7 @@ entities: decals: 1084: -10,63 1119: -8,68 - 8629: 30,-25 + 8620: 30,-25 - node: color: '#334E6DC8' id: BrickTileDarkInnerSe @@ -1297,9 +1297,9 @@ entities: 6419: 78,47 6420: 78,46 6421: 78,45 - 8480: 73,13 - 8481: 73,14 - 8503: 73,15 + 8471: 73,13 + 8472: 73,14 + 8494: 73,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1311,9 +1311,9 @@ entities: 1130: -9,68 1131: -10,68 1132: -11,68 - 8626: 29,-25 - 8627: 28,-25 - 8628: 27,-25 + 8617: 29,-25 + 8618: 28,-25 + 8619: 27,-25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1351,16 +1351,16 @@ entities: 1124: -8,72 1125: -8,73 1126: -8,74 - 8621: 30,-20 - 8622: 30,-21 - 8623: 30,-22 - 8624: 30,-23 - 8625: 30,-24 + 8612: 30,-20 + 8613: 30,-21 + 8614: 30,-22 + 8615: 30,-23 + 8616: 30,-24 - node: color: '#EFB34196' id: BrickTileSteelBox decals: - 7950: 18,-18 + 7944: 18,-18 - node: color: '#334E6DC8' id: BrickTileSteelCornerNe @@ -1416,7 +1416,7 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 8538: 66,12 + 8529: 66,12 - node: color: '#334E6DC8' id: BrickTileSteelCornerSe @@ -1469,7 +1469,7 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 8533: 66,7 + 8524: 66,7 - node: color: '#D381C996' id: BrickTileSteelInnerNe @@ -1633,16 +1633,16 @@ entities: 5945: 56,7 5946: 55,7 5947: 54,7 - 8539: 67,12 - 8540: 68,12 - 8541: 69,12 - 8542: 70,12 - 8543: 71,12 - 8544: 72,12 - 8545: 73,12 - 8707: -4,40 - 8708: -5,40 - 8709: -6,40 + 8530: 67,12 + 8531: 68,12 + 8532: 69,12 + 8533: 70,12 + 8534: 71,12 + 8535: 72,12 + 8536: 73,12 + 8698: -4,40 + 8699: -5,40 + 8700: -6,40 - node: color: '#D381C996' id: BrickTileSteelLineS @@ -1686,13 +1686,13 @@ entities: 7436: 60,38 7437: 59,38 7438: 58,38 - 8526: 73,7 - 8527: 72,7 - 8528: 71,7 - 8529: 70,7 - 8530: 69,7 - 8531: 68,7 - 8532: 67,7 + 8517: 73,7 + 8518: 72,7 + 8519: 71,7 + 8520: 70,7 + 8521: 69,7 + 8522: 68,7 + 8523: 67,7 - node: color: '#52B4E996' id: BrickTileSteelLineW @@ -1747,10 +1747,10 @@ entities: 955: -32,55 956: -32,54 957: -32,53 - 8534: 66,8 - 8535: 66,9 - 8536: 66,10 - 8537: 66,11 + 8525: 66,8 + 8526: 66,9 + 8527: 66,10 + 8528: 66,11 - node: color: '#79150096' id: BrickTileWhiteBox @@ -1771,8 +1771,8 @@ entities: 4169: 0,64 4240: 19,64 4274: 8,68 - 8666: 11,56 - 8676: 15,51 + 8657: 11,56 + 8667: 15,51 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe @@ -1848,7 +1848,7 @@ entities: 4239: 17,64 4275: 4,68 4276: 7,68 - 8675: 9,51 + 8666: 9,51 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw @@ -1912,7 +1912,7 @@ entities: id: BrickTileWhiteCornerSe decals: 360: -10,-2 - 7966: 98,-55 + 7957: 98,-55 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -1923,7 +1923,7 @@ entities: 4154: 7,52 4171: 0,60 4277: 8,65 - 8683: 11,53 + 8674: 11,53 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe @@ -1986,7 +1986,7 @@ entities: id: BrickTileWhiteCornerSw decals: 363: -12,-2 - 7967: 96,-55 + 7958: 96,-55 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -2149,7 +2149,7 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 8553: 66,12 + 8544: 66,12 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw @@ -2196,16 +2196,16 @@ entities: 3967: 19,57 3968: 19,59 3969: 19,60 - 7960: 98,-52 - 7961: 98,-53 - 7962: 98,-54 - 8019: 58,53 - 8020: 58,54 - 8021: 58,55 - 8022: 58,56 - 8023: 58,58 - 8024: 58,59 - 8025: 58,60 + 7951: 98,-52 + 7952: 98,-53 + 7953: 98,-54 + 8010: 58,53 + 8011: 58,54 + 8012: 58,55 + 8013: 58,56 + 8014: 58,58 + 8015: 58,59 + 8016: 58,60 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -2231,9 +2231,9 @@ entities: 4242: 19,61 4282: 8,66 4283: 8,67 - 8668: 11,54 - 8669: 11,55 - 8677: 15,50 + 8659: 11,54 + 8660: 11,55 + 8668: 15,50 - node: color: '#9FED580F' id: BrickTileWhiteLineE @@ -2256,7 +2256,7 @@ entities: 2532: 21,-31 2534: 21,-27 2535: 21,-26 - 7948: 50,-19 + 7942: 50,-19 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -2386,10 +2386,10 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 8554: 66,11 - 8555: 66,10 - 8556: 66,9 - 8557: 66,8 + 8545: 66,11 + 8546: 66,10 + 8547: 66,9 + 8548: 66,8 - node: color: '#00000076' id: BrickTileWhiteLineN @@ -2444,11 +2444,11 @@ entities: 4236: 16,63 4237: 18,64 4287: 6,67 - 8667: 10,56 - 8679: 14,51 - 8680: 13,51 - 8681: 12,51 - 8682: 11,51 + 8658: 10,56 + 8670: 14,51 + 8671: 13,51 + 8672: 12,51 + 8673: 11,51 - node: color: '#9FED580F' id: BrickTileWhiteLineN @@ -2470,7 +2470,7 @@ entities: 2522: 16,-30 2523: 17,-30 2537: 19,-25 - 7941: 21,7 + 7940: 21,7 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -2574,13 +2574,13 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 8558: 67,7 - 8559: 68,7 - 8560: 69,7 - 8561: 70,7 - 8562: 71,7 - 8563: 72,7 - 8564: 73,7 + 8549: 67,7 + 8550: 68,7 + 8551: 69,7 + 8552: 70,7 + 8553: 71,7 + 8554: 72,7 + 8555: 73,7 - node: color: '#00000079' id: BrickTileWhiteLineS @@ -2598,7 +2598,7 @@ entities: id: BrickTileWhiteLineS decals: 364: -11,-2 - 7968: 97,-55 + 7959: 97,-55 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -2764,7 +2764,7 @@ entities: 3027: -33,-45 3028: -32,-45 3029: -31,-45 - 7951: 18,-17 + 7945: 18,-17 - node: color: '#EFD54196' id: BrickTileWhiteLineS @@ -2808,13 +2808,13 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 8546: 73,12 - 8547: 72,12 - 8548: 71,12 - 8549: 70,12 - 8550: 69,12 - 8551: 67,12 - 8552: 68,12 + 8537: 73,12 + 8538: 72,12 + 8539: 71,12 + 8540: 70,12 + 8541: 69,12 + 8542: 67,12 + 8543: 68,12 - node: color: '#0000006F' id: BrickTileWhiteLineW @@ -2830,9 +2830,9 @@ entities: 6160: 64,32 6161: 64,33 6162: 64,34 - 7963: 96,-54 - 7964: 96,-53 - 7965: 96,-52 + 7954: 96,-54 + 7955: 96,-53 + 7956: 96,-52 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -2863,7 +2863,7 @@ entities: 4256: 3,62 4260: 2,62 4284: 4,67 - 8678: 9,50 + 8669: 9,50 - node: color: '#79150096' id: BrickTileWhiteLineW @@ -3223,15 +3223,15 @@ entities: 6035: 59,5 6036: 60,5 6037: 60,6 - 8010: 59,49 - 8011: 60,49 - 8012: 61,49 - 8013: 61,50 - 8014: 60,50 - 8015: 59,50 - 8016: 59,51 - 8017: 60,51 - 8018: 61,51 + 8001: 59,49 + 8002: 60,49 + 8003: 61,49 + 8004: 61,50 + 8005: 60,50 + 8006: 59,50 + 8007: 59,51 + 8008: 60,51 + 8009: 61,51 - node: color: '#52B4E947' id: CheckerNESW @@ -3403,28 +3403,28 @@ entities: color: '#9FED584D' id: CheckerNESW decals: - 8396: 96,19 - 8397: 96,20 - 8398: 96,21 - 8399: 97,21 - 8400: 97,20 - 8401: 97,19 - 8402: 97,18 - 8403: 96,18 - 8404: 98,18 - 8405: 98,19 - 8406: 98,20 - 8407: 98,21 - 8408: 99,21 - 8409: 99,20 - 8410: 99,19 - 8411: 99,18 - 8412: 100,18 - 8413: 100,19 - 8414: 100,20 - 8415: 100,21 - 8416: 95,19 - 8417: 95,20 + 8387: 96,19 + 8388: 96,20 + 8389: 96,21 + 8390: 97,21 + 8391: 97,20 + 8392: 97,19 + 8393: 97,18 + 8394: 96,18 + 8395: 98,18 + 8396: 98,19 + 8397: 98,20 + 8398: 98,21 + 8399: 99,21 + 8400: 99,20 + 8401: 99,19 + 8402: 99,18 + 8403: 100,18 + 8404: 100,19 + 8405: 100,20 + 8406: 100,21 + 8407: 95,19 + 8408: 95,20 - node: color: '#9FED5896' id: CheckerNESW @@ -3925,64 +3925,64 @@ entities: 4408: 28,43 4409: 28,42 4410: 27,43 - 8454: 67,9 - 8455: 68,11 - 8456: 68,10 - 8457: 68,9 - 8458: 69,9 - 8459: 69,10 - 8460: 69,11 - 8461: 70,11 - 8462: 70,10 - 8463: 70,9 - 8464: 71,9 - 8465: 71,10 - 8466: 71,11 - 8467: 72,11 - 8468: 72,10 - 8469: 72,9 - 8470: 73,9 - 8471: 73,10 - 8472: 73,11 - 8473: 67,8 - 8474: 68,8 - 8475: 69,8 - 8476: 70,8 - 8477: 71,8 - 8478: 72,8 - 8479: 73,8 - 8482: 67,11 - 8483: 67,10 - 8633: 15,55 - 8634: 14,55 - 8635: 13,55 - 8636: 13,54 - 8637: 14,54 - 8638: 15,54 - 8639: 15,53 - 8640: 14,53 - 8641: 13,53 - 8686: 7,48 - 8687: 7,49 - 8688: 6,49 - 8689: 6,48 - 8690: 5,48 - 8691: 5,49 - 8692: 4,49 - 8693: 4,48 - 8694: 3,48 - 8695: 3,49 - 8696: 2,49 - 8697: 2,48 - 8698: 0,48 - 8699: -1,48 - 8700: -2,48 - 8701: -2,49 - 8702: -1,49 - 8703: 0,49 - 8704: 0,50 - 8705: -1,50 - 8706: -2,50 + 8445: 67,9 + 8446: 68,11 + 8447: 68,10 + 8448: 68,9 + 8449: 69,9 + 8450: 69,10 + 8451: 69,11 + 8452: 70,11 + 8453: 70,10 + 8454: 70,9 + 8455: 71,9 + 8456: 71,10 + 8457: 71,11 + 8458: 72,11 + 8459: 72,10 + 8460: 72,9 + 8461: 73,9 + 8462: 73,10 + 8463: 73,11 + 8464: 67,8 + 8465: 68,8 + 8466: 69,8 + 8467: 70,8 + 8468: 71,8 + 8469: 72,8 + 8470: 73,8 + 8473: 67,11 + 8474: 67,10 + 8624: 15,55 + 8625: 14,55 + 8626: 13,55 + 8627: 13,54 + 8628: 14,54 + 8629: 15,54 + 8630: 15,53 + 8631: 14,53 + 8632: 13,53 + 8677: 7,48 + 8678: 7,49 + 8679: 6,49 + 8680: 6,48 + 8681: 5,48 + 8682: 5,49 + 8683: 4,49 + 8684: 4,48 + 8685: 3,48 + 8686: 3,49 + 8687: 2,49 + 8688: 2,48 + 8689: 0,48 + 8690: -1,48 + 8691: -2,48 + 8692: -2,49 + 8693: -1,49 + 8694: 0,49 + 8695: 0,50 + 8696: -1,50 + 8697: -2,50 - node: color: '#79150096' id: CheckerNWSE @@ -4104,7 +4104,7 @@ entities: 2820: -18,-21 2821: -20,-21 2822: -20,-20 - 8123: 76,-4 + 8114: 76,-4 - node: color: '#D381C996' id: CheckerNWSE @@ -4338,7 +4338,7 @@ entities: color: '#FFEB41A1' id: CheckerNWSE decals: - 8418: 19,38 + 8409: 19,38 - node: color: '#EFB341C3' id: Delivery @@ -4494,226 +4494,226 @@ entities: 7908: 120,-4 7909: 120,-2 7933: 22,-23 - 8153: 22,7 - 8620: -11,8 + 8144: 22,7 + 8611: -11,8 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 8154: 45,47 - 8155: 43,47 - 8156: 39,48 - 8157: 39,51 - 8158: 52,47 - 8159: 53,48 - 8160: 53,49 - 8161: 56,54 - 8162: 56,55 - 8163: 54,58 - 8164: 51,64 - 8165: 56,62 - 8166: 55,64 - 8167: 49,65 - 8168: 44,63 - 8169: 38,63 - 8170: 38,66 - 8171: 37,66 - 8172: 35,63 - 8173: 34,62 - 8174: 35,65 - 8175: 34,65 - 8176: 33,67 - 8177: 30,63 - 8178: 26,67 - 8179: 27,67 - 8180: 29,67 - 8181: 31,62 - 8182: 29,63 - 8183: 23,67 - 8184: 23,68 - 8185: 24,69 - 8186: 10,69 - 8187: -2,68 - 8188: -2,67 - 8189: 1,75 - 8190: 2,75 - 8191: 6,75 - 8192: -5,75 - 8193: -4,73 - 8194: -26,64 - 8195: -27,66 - 8196: -25,68 - 8197: -32,65 - 8198: -35,62 - 8199: -35,61 - 8200: -35,69 - 8201: -36,68 - 8202: -27,71 - 8203: -24,73 - 8204: -41,63 - 8205: -39,61 - 8206: -25,22 - 8207: -24,23 - 8208: -29,11 - 8209: -29,10 - 8210: -28,12 - 8211: -24,12 - 8212: -30,13 - 8213: -29,13 - 8214: -33,12 - 8215: -37,12 - 8216: -36,15 - 8217: -35,15 - 8218: -32,17 - 8219: -30,15 - 8220: -27,16 - 8221: -29,19 - 8222: -36,7 - 8223: -36,6 - 8224: -35,4 - 8225: -35,1 - 8226: -38,3 - 8227: -39,3 - 8228: -35,-1 - 8229: -42,0 - 8230: -45,0 - 8231: -47,2 - 8232: -46,-2 - 8233: -46,-3 - 8234: -45,-4 - 8235: -26,-2 - 8236: -22,-3 - 8237: -22,-2 - 8238: -24,-1 - 8239: -26,4 - 8240: -21,6 - 8241: -20,7 - 8242: -16,6 - 8243: -15,3 - 8244: -18,3 - 8245: -17,3 - 8246: -19,4 - 8247: -12,4 - 8248: 8,9 - 8249: 8,8 - 8250: 10,10 - 8251: 8,13 - 8252: 13,16 - 8253: 13,19 - 8254: 13,21 - 8255: 13,22 - 8256: 8,23 - 8257: 10,27 - 8258: 9,28 - 8259: 12,26 - 8260: 15,26 - 8261: 16,30 - 8262: 21,29 - 8263: 36,28 - 8264: 35,28 - 8265: 35,30 - 8266: 33,30 - 8267: 60,21 - 8268: 59,23 - 8269: 65,22 - 8270: 66,23 - 8271: 68,22 - 8272: 73,25 - 8273: 73,26 - 8274: 73,27 - 8275: 75,25 - 8276: 74,23 - 8277: 74,27 - 8278: 73,29 - 8279: 77,29 - 8280: 90,25 - 8281: 93,25 - 8282: 94,25 - 8283: 96,24 - 8284: 100,23 - 8285: 101,25 - 8286: 101,27 - 8287: 103,29 - 8288: 103,31 - 8289: 103,32 - 8290: 106,29 - 8291: 105,30 - 8292: 105,31 - 8293: 107,31 - 8294: 109,30 - 8295: 110,30 - 8296: 110,32 - 8297: 110,34 - 8298: 107,34 - 8299: 106,34 - 8300: 104,36 - 8301: 110,36 - 8302: 113,30 - 8303: 112,30 - 8304: 108,20 - 8305: 109,20 - 8306: 113,20 - 8307: 112,18 - 8308: 112,15 - 8309: 113,7 - 8310: 118,3 - 8311: 117,5 - 8312: 117,7 - 8313: 118,7 - 8314: 120,-3 - 8315: 118,-5 - 8316: 118,-6 - 8317: 118,-13 - 8318: 125,-7 - 8319: 125,-5 - 8320: 123,-3 - 8321: 123,-4 - 8322: 124,-5 - 8323: 125,-2 - 8324: 121,0 - 8325: 125,3 - 8326: 126,2 - 8327: 126,1 - 8328: 126,0 - 8329: 125,1 - 8330: 122,3 - 8331: 122,2 - 8332: 127,-5 - 8333: 117,-18 - 8334: 117,-16 - 8335: 116,-17 - 8336: 120,-20 - 8337: 114,-18 - 8338: 113,-18 - 8339: 112,-16 - 8340: 99,4 - 8341: 98,5 - 8342: 97,5 - 8343: 96,6 - 8344: 94,6 - 8345: 94,7 - 8346: 93,7 - 8347: 102,5 - 8348: 103,6 - 8349: 106,6 - 8350: 104,4 - 8351: 109,4 - 8352: 109,4 - 8353: 109,5 - 8354: 111,6 - 8355: 110,4 - 8356: 108,4 - 8357: 108,5 - 8358: 107,5 - 8359: 111,4 - 8360: 107,4 - 8361: 106,4 - 8362: 107,6 - 8363: 104,5 - 8393: 67,-5 - 8394: 65,-5 - 8395: 68,-6 + 8145: 45,47 + 8146: 43,47 + 8147: 39,48 + 8148: 39,51 + 8149: 52,47 + 8150: 53,48 + 8151: 53,49 + 8152: 56,54 + 8153: 56,55 + 8154: 54,58 + 8155: 51,64 + 8156: 56,62 + 8157: 55,64 + 8158: 49,65 + 8159: 44,63 + 8160: 38,63 + 8161: 38,66 + 8162: 37,66 + 8163: 35,63 + 8164: 34,62 + 8165: 35,65 + 8166: 34,65 + 8167: 33,67 + 8168: 30,63 + 8169: 26,67 + 8170: 27,67 + 8171: 29,67 + 8172: 31,62 + 8173: 29,63 + 8174: 23,67 + 8175: 23,68 + 8176: 24,69 + 8177: 10,69 + 8178: -2,68 + 8179: -2,67 + 8180: 1,75 + 8181: 2,75 + 8182: 6,75 + 8183: -5,75 + 8184: -4,73 + 8185: -26,64 + 8186: -27,66 + 8187: -25,68 + 8188: -32,65 + 8189: -35,62 + 8190: -35,61 + 8191: -35,69 + 8192: -36,68 + 8193: -27,71 + 8194: -24,73 + 8195: -41,63 + 8196: -39,61 + 8197: -25,22 + 8198: -24,23 + 8199: -29,11 + 8200: -29,10 + 8201: -28,12 + 8202: -24,12 + 8203: -30,13 + 8204: -29,13 + 8205: -33,12 + 8206: -37,12 + 8207: -36,15 + 8208: -35,15 + 8209: -32,17 + 8210: -30,15 + 8211: -27,16 + 8212: -29,19 + 8213: -36,7 + 8214: -36,6 + 8215: -35,4 + 8216: -35,1 + 8217: -38,3 + 8218: -39,3 + 8219: -35,-1 + 8220: -42,0 + 8221: -45,0 + 8222: -47,2 + 8223: -46,-2 + 8224: -46,-3 + 8225: -45,-4 + 8226: -26,-2 + 8227: -22,-3 + 8228: -22,-2 + 8229: -24,-1 + 8230: -26,4 + 8231: -21,6 + 8232: -20,7 + 8233: -16,6 + 8234: -15,3 + 8235: -18,3 + 8236: -17,3 + 8237: -19,4 + 8238: -12,4 + 8239: 8,9 + 8240: 8,8 + 8241: 10,10 + 8242: 8,13 + 8243: 13,16 + 8244: 13,19 + 8245: 13,21 + 8246: 13,22 + 8247: 8,23 + 8248: 10,27 + 8249: 9,28 + 8250: 12,26 + 8251: 15,26 + 8252: 16,30 + 8253: 21,29 + 8254: 36,28 + 8255: 35,28 + 8256: 35,30 + 8257: 33,30 + 8258: 60,21 + 8259: 59,23 + 8260: 65,22 + 8261: 66,23 + 8262: 68,22 + 8263: 73,25 + 8264: 73,26 + 8265: 73,27 + 8266: 75,25 + 8267: 74,23 + 8268: 74,27 + 8269: 73,29 + 8270: 77,29 + 8271: 90,25 + 8272: 93,25 + 8273: 94,25 + 8274: 96,24 + 8275: 100,23 + 8276: 101,25 + 8277: 101,27 + 8278: 103,29 + 8279: 103,31 + 8280: 103,32 + 8281: 106,29 + 8282: 105,30 + 8283: 105,31 + 8284: 107,31 + 8285: 109,30 + 8286: 110,30 + 8287: 110,32 + 8288: 110,34 + 8289: 107,34 + 8290: 106,34 + 8291: 104,36 + 8292: 110,36 + 8293: 113,30 + 8294: 112,30 + 8295: 108,20 + 8296: 109,20 + 8297: 113,20 + 8298: 112,18 + 8299: 112,15 + 8300: 113,7 + 8301: 118,3 + 8302: 117,5 + 8303: 117,7 + 8304: 118,7 + 8305: 120,-3 + 8306: 118,-5 + 8307: 118,-6 + 8308: 118,-13 + 8309: 125,-7 + 8310: 125,-5 + 8311: 123,-3 + 8312: 123,-4 + 8313: 124,-5 + 8314: 125,-2 + 8315: 121,0 + 8316: 125,3 + 8317: 126,2 + 8318: 126,1 + 8319: 126,0 + 8320: 125,1 + 8321: 122,3 + 8322: 122,2 + 8323: 127,-5 + 8324: 117,-18 + 8325: 117,-16 + 8326: 116,-17 + 8327: 120,-20 + 8328: 114,-18 + 8329: 113,-18 + 8330: 112,-16 + 8331: 99,4 + 8332: 98,5 + 8333: 97,5 + 8334: 96,6 + 8335: 94,6 + 8336: 94,7 + 8337: 93,7 + 8338: 102,5 + 8339: 103,6 + 8340: 106,6 + 8341: 104,4 + 8342: 109,4 + 8343: 109,4 + 8344: 109,5 + 8345: 111,6 + 8346: 110,4 + 8347: 108,4 + 8348: 108,5 + 8349: 107,5 + 8350: 111,4 + 8351: 107,4 + 8352: 106,4 + 8353: 107,6 + 8354: 104,5 + 8384: 67,-5 + 8385: 65,-5 + 8386: 68,-6 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -4901,22 +4901,22 @@ entities: 7746: 89,-12 7747: 90,-3 7748: 91,-9 - 7969: -25,21 - 7970: -25,21 - 7971: -25,19 - 7972: -25,13 - 7973: -27,13 - 7974: -32,12 - 7975: -34,13 - 7976: -37,13 - 8126: 118,-13 - 8127: 118,-12 - 8128: 118,-9 - 8129: 118,-4 - 8130: 118,-2 - 8131: 118,1 - 8370: 103,5 - 8371: 110,5 + 7960: -25,21 + 7961: -25,21 + 7962: -25,19 + 7963: -25,13 + 7964: -27,13 + 7965: -32,12 + 7966: -34,13 + 7967: -37,13 + 8117: 118,-13 + 8118: 118,-12 + 8119: 118,-9 + 8120: 118,-4 + 8121: 118,-2 + 8122: 118,1 + 8361: 103,5 + 8362: 110,5 - node: color: '#FFFFFFFF' id: DirtLight @@ -5512,58 +5512,58 @@ entities: 7824: 90,5 7825: 89,5 7826: 88,6 - 7992: -24,22 - 7993: -25,20 - 7994: -25,16 - 7995: -23,12 - 7996: -25,14 - 7997: -26,12 - 7998: -28,13 - 7999: -30,13 - 8000: -30,12 - 8001: -31,12 - 8002: -33,12 - 8003: -33,13 - 8004: -36,13 - 8005: -38,12 - 8006: -39,12 - 8137: 118,-11 - 8138: 118,-10 - 8139: 118,-7 - 8140: 118,-5 - 8141: 118,-3 - 8142: 118,-1 - 8143: 118,0 - 8144: 118,2 - 8145: 117,4 - 8146: 116,4 - 8147: 115,4 - 8148: 113,4 - 8149: 113,6 - 8150: 117,-16 - 8151: 117,-16 - 8152: 119,-20 - 8372: 110,6 - 8373: 109,6 - 8374: 105,5 - 8375: 104,6 - 8376: 105,4 - 8377: 103,4 - 8378: 100,5 - 8379: 100,6 - 8380: 101,6 - 8381: 101,5 - 8382: 99,5 - 8383: 99,6 - 8384: 98,4 - 8385: 97,4 - 8386: 96,5 - 8387: 96,5 - 8388: 95,6 - 8389: 93,6 - 8390: 95,7 - 8391: 94,8 - 8392: 102,9 + 7983: -24,22 + 7984: -25,20 + 7985: -25,16 + 7986: -23,12 + 7987: -25,14 + 7988: -26,12 + 7989: -28,13 + 7990: -30,13 + 7991: -30,12 + 7992: -31,12 + 7993: -33,12 + 7994: -33,13 + 7995: -36,13 + 7996: -38,12 + 7997: -39,12 + 8128: 118,-11 + 8129: 118,-10 + 8130: 118,-7 + 8131: 118,-5 + 8132: 118,-3 + 8133: 118,-1 + 8134: 118,0 + 8135: 118,2 + 8136: 117,4 + 8137: 116,4 + 8138: 115,4 + 8139: 113,4 + 8140: 113,6 + 8141: 117,-16 + 8142: 117,-16 + 8143: 119,-20 + 8363: 110,6 + 8364: 109,6 + 8365: 105,5 + 8366: 104,6 + 8367: 105,4 + 8368: 103,4 + 8369: 100,5 + 8370: 100,6 + 8371: 101,6 + 8372: 101,5 + 8373: 99,5 + 8374: 99,6 + 8375: 98,4 + 8376: 97,4 + 8377: 96,5 + 8378: 96,5 + 8379: 95,6 + 8380: 93,6 + 8381: 95,7 + 8382: 94,8 + 8383: 102,9 - node: color: '#FFFFFFFF' id: DirtMedium @@ -5773,32 +5773,32 @@ entities: 7752: 89,-4 7753: 89,-11 7790: 85,-5 - 7977: -31,12 - 7978: -33,12 - 7979: -31,13 - 7980: -30,12 - 7981: -33,13 - 7982: -36,13 - 7983: -36,12 - 7984: -38,13 - 7985: -26,13 - 7986: -28,13 - 7987: -25,12 - 7988: -25,17 - 7989: -25,18 - 7990: -24,19 - 7991: -25,22 - 8132: 118,-1 - 8133: 118,2 - 8134: 118,4 - 8135: 113,4 - 8136: 118,-8 - 8364: 108,6 - 8365: 101,4 - 8366: 102,4 - 8367: 97,6 - 8368: 98,6 - 8369: 105,6 + 7968: -31,12 + 7969: -33,12 + 7970: -31,13 + 7971: -30,12 + 7972: -33,13 + 7973: -36,13 + 7974: -36,12 + 7975: -38,13 + 7976: -26,13 + 7977: -28,13 + 7978: -25,12 + 7979: -25,17 + 7980: -25,18 + 7981: -24,19 + 7982: -25,22 + 8123: 118,-1 + 8124: 118,2 + 8125: 118,4 + 8126: 113,4 + 8127: 118,-8 + 8355: 108,6 + 8356: 101,4 + 8357: 102,4 + 8358: 97,6 + 8359: 98,6 + 8360: 105,6 - node: cleanable: True color: '#FFFFFFFF' @@ -7123,12 +7123,12 @@ entities: 2696: 18,-11 2697: 17,-11 2698: 16,-11 - 8116: 7,50 - 8117: 6,50 - 8118: 5,50 - 8119: 4,50 - 8120: 3,50 - 8121: 2,50 + 8107: 7,50 + 8108: 6,50 + 8109: 5,50 + 8110: 4,50 + 8111: 3,50 + 8112: 2,50 - node: color: '#79150096' id: HalfTileOverlayGreyscale @@ -7334,10 +7334,10 @@ entities: 2701: 18,-14 2702: 17,-14 2703: 16,-14 - 8112: 6,47 - 8113: 7,47 - 8114: 4,47 - 8115: 2,47 + 8103: 6,47 + 8104: 7,47 + 8105: 4,47 + 8106: 2,47 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 @@ -7830,38 +7830,38 @@ entities: color: '#52B4E93B' id: MiniTileCheckerBOverlay decals: - 8504: 65,19 - 8505: 67,19 + 8495: 65,19 + 8496: 67,19 - node: color: '#52B4E963' id: MiniTileCheckerBOverlay decals: - 8506: 73,12 - 8507: 72,12 - 8508: 71,12 - 8509: 70,12 - 8510: 69,12 - 8511: 68,12 - 8512: 67,12 - 8513: 66,12 - 8514: 66,11 - 8515: 66,10 - 8516: 66,9 - 8517: 66,8 - 8518: 66,7 - 8519: 67,7 - 8520: 68,7 - 8521: 69,7 - 8522: 70,7 - 8523: 71,7 - 8524: 72,7 - 8525: 73,7 + 8497: 73,12 + 8498: 72,12 + 8499: 71,12 + 8500: 70,12 + 8501: 69,12 + 8502: 68,12 + 8503: 67,12 + 8504: 66,12 + 8505: 66,11 + 8506: 66,10 + 8507: 66,9 + 8508: 66,8 + 8509: 66,7 + 8510: 67,7 + 8511: 68,7 + 8512: 69,7 + 8513: 70,7 + 8514: 71,7 + 8515: 72,7 + 8516: 73,7 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 8565: 73,7 - 8566: 73,12 + 8556: 73,7 + 8557: 73,12 - node: color: '#D381C996' id: MiniTileWhiteInnerSe @@ -7871,7 +7871,7 @@ entities: color: '#FFFFFFFF' id: North decals: - 8027: 53.9764,59.069416 + 8018: 53.9764,59.069416 - node: color: '#000000A4' id: QuarterTileOverlayGreyscale @@ -7971,18 +7971,18 @@ entities: 4321: 12,65 4322: 15,66 4323: 15,67 - 8569: -35,-23 - 8570: -36,-24 - 8571: -36,-25 - 8572: -37,-25 - 8573: -38,-25 - 8574: -39,-25 - 8575: -40,-25 - 8597: -36,-9 - 8598: -36,-8 - 8599: -39,-7 - 8600: -39,-6 - 8601: -39,-5 + 8560: -35,-23 + 8561: -36,-24 + 8562: -36,-25 + 8563: -37,-25 + 8564: -38,-25 + 8565: -39,-25 + 8566: -40,-25 + 8588: -36,-9 + 8589: -36,-8 + 8590: -39,-7 + 8591: -39,-6 + 8592: -39,-5 - node: color: '#79150096' id: QuarterTileOverlayGreyscale @@ -8256,25 +8256,25 @@ entities: 7401: 89,14 7402: 89,13 7403: 89,12 - 8484: 58,12 - 8485: 59,12 - 8486: 60,12 - 8487: 61,12 - 8488: 62,12 - 8489: 63,12 - 8490: 64,12 - 8491: 65,12 - 8492: 65,13 - 8493: 65,14 - 8494: 65,15 - 8495: 66,15 - 8496: 67,15 - 8497: 68,15 - 8498: 69,15 - 8499: 70,15 - 8500: 71,15 - 8501: 72,15 - 8502: 73,15 + 8475: 58,12 + 8476: 59,12 + 8477: 60,12 + 8478: 61,12 + 8479: 62,12 + 8480: 63,12 + 8481: 64,12 + 8482: 65,12 + 8483: 65,13 + 8484: 65,14 + 8485: 65,15 + 8486: 66,15 + 8487: 67,15 + 8488: 68,15 + 8489: 69,15 + 8490: 70,15 + 8491: 71,15 + 8492: 72,15 + 8493: 73,15 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -8427,7 +8427,7 @@ entities: 5525: 45,-3 5526: 46,-3 5527: 49,-3 - 7959: 98,-51 + 7950: 98,-51 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -8451,11 +8451,11 @@ entities: 7518: 66,-53 7519: 66,-52 7520: 66,-51 - 8592: -35,-9 - 8593: -36,-9 - 8594: -37,-7 - 8595: -38,-7 - 8596: -39,-7 + 8583: -35,-9 + 8584: -36,-9 + 8585: -37,-7 + 8586: -38,-7 + 8587: -39,-7 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 @@ -8771,9 +8771,9 @@ entities: 5522: 52,-3 5523: 53,-3 5528: 48,-3 - 7956: 96,-49 - 7957: 96,-48 - 7958: 96,-51 + 7947: 96,-49 + 7948: 96,-48 + 7949: 96,-51 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -8982,17 +8982,17 @@ entities: 3157: -32,-7 3158: -33,-9 3159: -34,-9 - 8581: -36,-24 - 8582: -36,-23 - 8583: -35,-9 - 8584: -36,-9 - 8585: -36,-8 - 8586: -36,-7 - 8587: -37,-7 - 8588: -38,-7 - 8589: -39,-7 - 8590: -39,-6 - 8591: -39,-5 + 8572: -36,-24 + 8573: -36,-23 + 8574: -35,-9 + 8575: -36,-9 + 8576: -36,-8 + 8577: -36,-7 + 8578: -37,-7 + 8579: -38,-7 + 8580: -39,-7 + 8581: -39,-6 + 8582: -39,-5 - node: color: '#DE3A3A6F' id: QuarterTileOverlayGreyscale270 @@ -9470,11 +9470,11 @@ entities: 3123: -36,-23 3160: -33,-9 3161: -33,-8 - 8576: -40,-25 - 8577: -39,-25 - 8578: -38,-25 - 8579: -37,-25 - 8580: -35,-23 + 8567: -40,-25 + 8568: -39,-25 + 8569: -38,-25 + 8570: -37,-25 + 8571: -35,-23 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -10026,7 +10026,7 @@ entities: color: '#DE3A3A96' id: Tunnel decals: - 8028: 32.99294,56.744785 + 8019: 32.99294,56.744785 - node: color: '#DE3A3A96' id: WarnBox @@ -10240,8 +10240,8 @@ entities: 5744: 86,-2 6391: 120,46 6405: 125,52 - 8607: -39,-25 - 8653: 97,-38 + 8598: -39,-25 + 8644: 97,-38 - node: color: '#EFC541FF' id: WarnCornerSmallNW @@ -10265,9 +10265,9 @@ entities: 5708: 95,-11 6390: 126,46 6404: 120,52 - 8444: 99,32 - 8606: -37,-25 - 8652: 101,-38 + 8435: 99,32 + 8597: -37,-25 + 8643: 101,-38 - node: cleanable: True color: '#FFFFFFFF' @@ -10296,8 +10296,8 @@ entities: 5745: 86,3 6389: 120,52 6406: 125,46 - 8609: -39,-7 - 8651: 97,-36 + 8600: -39,-7 + 8642: 97,-36 - node: cleanable: True color: '#FFFFFFFF' @@ -10329,8 +10329,8 @@ entities: 5706: 95,-1 6388: 126,52 6407: 120,46 - 8608: -37,-7 - 8650: 101,-36 + 8599: -37,-7 + 8641: 101,-36 - node: cleanable: True color: '#FFFFFFFF' @@ -10384,9 +10384,9 @@ entities: color: '#52B4E996' id: WarnFullGreyscale decals: - 8631: 16,54 - 8632: 16,58 - 8685: 10,52 + 8622: 16,54 + 8623: 16,58 + 8676: 10,52 - node: color: '#9FED5896' id: WarnFullGreyscale @@ -10615,10 +10615,10 @@ entities: 6410: 111,44 6641: 75,55 7907: 111,4 - 8419: 19,38 - 8442: 92,30 - 8443: 92,31 - 8648: 97,-37 + 8410: 19,38 + 8433: 92,30 + 8434: 92,31 + 8639: 97,-37 - node: cleanable: True color: '#FFFFFFFF' @@ -10640,8 +10640,8 @@ entities: 4178: 0,61 4179: 0,63 4261: 19,62 - 8672: 15,48 - 8673: 15,49 + 8663: 15,48 + 8664: 15,49 - node: color: '#D381C996' id: WarnLineGreyscaleE @@ -10711,15 +10711,15 @@ entities: 4054: 24,45 4262: 14,63 4263: 7,63 - 8674: 10,51 + 8665: 10,51 - node: color: '#9FED5896' id: WarnLineGreyscaleN decals: 4444: 35,46 4445: 33,46 - 8432: 92,32 - 8433: 93,32 + 8423: 92,32 + 8424: 93,32 - node: color: '#A4610696' id: WarnLineGreyscaleN @@ -10728,8 +10728,8 @@ entities: 2542: 19,-30 2543: 18,-30 2549: 20,-25 - 8426: 93,29 - 8427: 94,29 + 8417: 93,29 + 8418: 94,29 - node: color: '#D381C996' id: WarnLineGreyscaleN @@ -10741,14 +10741,14 @@ entities: 3435: 45,-26 3437: 38,-26 3438: 52,-23 - 8428: 95,29 - 8429: 96,29 + 8419: 95,29 + 8420: 96,29 - node: color: '#D4D4D496' id: WarnLineGreyscaleN decals: - 8434: 94,32 - 8435: 95,32 + 8425: 94,32 + 8426: 95,32 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN @@ -10772,8 +10772,8 @@ entities: 2579: 12,-10 3502: 42,-21 3511: 43,-26 - 8430: 97,29 - 8431: 98,29 + 8421: 97,29 + 8422: 98,29 - node: color: '#EFB34196' id: WarnLineGreyscaleN @@ -10793,16 +10793,16 @@ entities: 4008: 8,40 4009: 6,40 4010: 5,40 - 7952: 18,-17 - 8710: 17,-17 - 8711: 16,-17 - 8712: 15,-17 + 7946: 18,-17 + 8701: 17,-17 + 8702: 16,-17 + 8703: 15,-17 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 8424: 97,32 - 8425: 98,32 + 8415: 97,32 + 8416: 98,32 - node: color: '#52B4E996' id: WarnLineGreyscaleS @@ -10814,10 +10814,10 @@ entities: 3932: 12,43 3933: 14,43 4270: 9,61 - 8122: 3,47 - 8422: 95,32 - 8423: 96,32 - 8684: 10,53 + 8113: 3,47 + 8413: 95,32 + 8414: 96,32 + 8675: 10,53 - node: color: '#A4610696' id: WarnLineGreyscaleS @@ -10864,8 +10864,8 @@ entities: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 8420: 93,32 - 8421: 94,32 + 8411: 93,32 + 8412: 94,32 - node: color: '#EFD54196' id: WarnLineGreyscaleS @@ -10905,8 +10905,8 @@ entities: 4177: -2,63 4258: 2,61 4259: 2,63 - 8670: 9,48 - 8671: 9,49 + 8661: 9,48 + 8662: 9,49 - node: color: '#9FED5896' id: WarnLineGreyscaleW @@ -11184,11 +11184,11 @@ entities: 7917: 109,-38 7918: 110,-38 7925: 106,-38 - 8602: -38,-7 - 8603: -40,-10 - 8645: 100,-36 - 8646: 99,-36 - 8647: 98,-36 + 8593: -38,-7 + 8594: -40,-10 + 8636: 100,-36 + 8637: 99,-36 + 8638: 98,-36 - node: cleanable: True color: '#FFFFFFFF' @@ -11390,10 +11390,10 @@ entities: 6393: 120,53 6640: 75,55 7927: 105,-37 - 8439: 99,30 - 8440: 99,31 - 8441: 99,33 - 8649: 101,-37 + 8430: 99,30 + 8431: 99,31 + 8432: 99,33 + 8640: 101,-37 - node: cleanable: True color: '#FFFFFFFF' @@ -11602,14 +11602,14 @@ entities: 7919: 109,-36 7920: 110,-36 7926: 106,-36 - 8436: 96,32 - 8437: 97,32 - 8438: 98,32 - 8604: -40,-22 - 8605: -38,-25 - 8642: 98,-38 - 8643: 99,-38 - 8644: 100,-38 + 8427: 96,32 + 8428: 97,32 + 8429: 98,32 + 8595: -40,-22 + 8596: -38,-25 + 8633: 98,-38 + 8634: 99,-38 + 8635: 100,-38 - node: cleanable: True color: '#FFFFFFFF' @@ -11632,7 +11632,7 @@ entities: 414: -2,1 2021: 39,24 5700: 48,-6 - 8615: -14,8 + 8606: -14,8 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -11672,7 +11672,7 @@ entities: 6104: 86,12 6690: 65,54 6712: 64,44 - 8619: -11,8 + 8610: -11,8 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe @@ -11696,7 +11696,7 @@ entities: 6431: 80,46 6692: 65,60 6714: 64,48 - 8618: -11,10 + 8609: -11,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -11806,8 +11806,8 @@ entities: 6708: 61,44 6709: 60,44 6710: 59,44 - 8616: -13,8 - 8617: -12,8 + 8607: -13,8 + 8608: -12,8 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -11888,10 +11888,10 @@ entities: 6703: 61,48 6704: 62,48 6705: 63,48 - 8610: -15,10 - 8611: -14,10 - 8612: -13,10 - 8613: -12,10 + 8601: -15,10 + 8602: -14,10 + 8603: -13,10 + 8604: -12,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -11939,107 +11939,107 @@ entities: 6695: 64,45 6696: 64,46 6697: 64,47 - 8614: -11,9 + 8605: -11,9 - node: cleanable: True color: '#FFFFFFFF' id: arrow decals: - 8125: 118.01247,-7.299263 + 8116: 118.01247,-7.299263 - node: color: '#FFFFFFFF' id: food decals: - 8026: 50.950474,63.02254 + 8017: 50.950474,63.02254 - node: cleanable: True color: '#79150009' id: splatter decals: - 8086: 47.07256,55.29809 - 8087: 46.994434,55.626217 - 8088: 47.056934,55.251217 - 8089: 47.213184,55.01684 - 8090: 47.38506,54.907467 - 8091: 47.54131,54.844967 - 8092: 47.650684,53.188717 - 8093: 47.38506,53.251217 - 8094: 47.150684,53.54809 - 8095: 47.32256,53.76684 - 8096: 47.38506,53.782467 - 8097: 47.400684,53.782467 - 8098: 47.119434,53.64184 - 8099: 47.19756,53.407467 - 8100: 47.26006,53.344967 - 8101: 46.463184,53.719967 - 8102: 46.01006,54.094967 - 8103: 46.19756,53.688717 - 8104: 46.463184,53.61059 - 8105: 47.056934,52.844967 - 8106: 47.400684,52.501217 - 8107: 48.35381,52.438717 - 8108: 48.47881,52.23559 - 8109: 47.713184,52.07934 - 8110: 46.69756,52.313717 - 8111: 45.9139,54.080795 + 8077: 47.07256,55.29809 + 8078: 46.994434,55.626217 + 8079: 47.056934,55.251217 + 8080: 47.213184,55.01684 + 8081: 47.38506,54.907467 + 8082: 47.54131,54.844967 + 8083: 47.650684,53.188717 + 8084: 47.38506,53.251217 + 8085: 47.150684,53.54809 + 8086: 47.32256,53.76684 + 8087: 47.38506,53.782467 + 8088: 47.400684,53.782467 + 8089: 47.119434,53.64184 + 8090: 47.19756,53.407467 + 8091: 47.26006,53.344967 + 8092: 46.463184,53.719967 + 8093: 46.01006,54.094967 + 8094: 46.19756,53.688717 + 8095: 46.463184,53.61059 + 8096: 47.056934,52.844967 + 8097: 47.400684,52.501217 + 8098: 48.35381,52.438717 + 8099: 48.47881,52.23559 + 8100: 47.713184,52.07934 + 8101: 46.69756,52.313717 + 8102: 45.9139,54.080795 - node: cleanable: True color: '#79150012' id: splatter decals: - 8029: 44.91631,53.157467 - 8030: 44.91631,53.157467 - 8031: 44.66631,53.70434 - 8032: 44.66631,53.70434 - 8033: 44.369434,53.501217 - 8034: 44.79131,53.157467 - 8035: 44.994434,53.157467 - 8036: 45.01006,53.26684 - 8037: 44.76006,52.657467 - 8038: 45.213184,53.594967 - 8039: 45.244434,53.57934 - 8040: 45.19756,53.39184 - 8041: 45.213184,53.17309 - 8042: 45.213184,53.07934 - 8043: 45.19756,52.907467 - 8044: 45.19756,52.844967 - 8045: 47.10381,55.79809 - 8046: 47.32256,55.51684 - 8047: 47.588184,55.313717 - 8048: 47.69756,55.251217 - 8049: 47.69756,55.14184 - 8050: 47.47881,54.969967 - 8051: 47.19756,55.126217 - 8052: 47.181934,55.219967 - 8053: 47.47881,55.407467 - 8054: 47.150684,55.563717 - 8055: 47.181934,55.39184 - 8056: 47.494434,53.813717 - 8057: 47.463184,54.01684 - 8058: 44.63506,55.48559 - 8059: 44.85381,54.79809 - 8060: 45.32256,53.719967 - 8061: 47.44756,52.813717 - 8062: 46.54131,53.251217 - 8063: 46.244434,53.188717 - 8064: 46.588184,55.70434 - 8065: 43.44756,53.657467 - 8066: 42.85381,53.782467 - 8067: 42.713184,53.95434 - 8068: 42.556934,54.251217 - 8069: 42.775684,53.67309 - 8070: 42.963184,53.407467 - 8071: 43.338184,52.73559 - 8072: 43.51006,52.54809 - 8073: 43.838184,52.32934 - 8074: 44.150684,52.282467 - 8075: 46.994434,55.79809 - 8076: 46.29131,55.344967 - 8077: 45.838184,55.04809 - 8078: 45.29131,54.29809 - 8079: 45.10381,53.61059 - 8080: 44.463184,51.907467 - 8081: 44.51006,51.876217 + 8020: 44.91631,53.157467 + 8021: 44.91631,53.157467 + 8022: 44.66631,53.70434 + 8023: 44.66631,53.70434 + 8024: 44.369434,53.501217 + 8025: 44.79131,53.157467 + 8026: 44.994434,53.157467 + 8027: 45.01006,53.26684 + 8028: 44.76006,52.657467 + 8029: 45.213184,53.594967 + 8030: 45.244434,53.57934 + 8031: 45.19756,53.39184 + 8032: 45.213184,53.17309 + 8033: 45.213184,53.07934 + 8034: 45.19756,52.907467 + 8035: 45.19756,52.844967 + 8036: 47.10381,55.79809 + 8037: 47.32256,55.51684 + 8038: 47.588184,55.313717 + 8039: 47.69756,55.251217 + 8040: 47.69756,55.14184 + 8041: 47.47881,54.969967 + 8042: 47.19756,55.126217 + 8043: 47.181934,55.219967 + 8044: 47.47881,55.407467 + 8045: 47.150684,55.563717 + 8046: 47.181934,55.39184 + 8047: 47.494434,53.813717 + 8048: 47.463184,54.01684 + 8049: 44.63506,55.48559 + 8050: 44.85381,54.79809 + 8051: 45.32256,53.719967 + 8052: 47.44756,52.813717 + 8053: 46.54131,53.251217 + 8054: 46.244434,53.188717 + 8055: 46.588184,55.70434 + 8056: 43.44756,53.657467 + 8057: 42.85381,53.782467 + 8058: 42.713184,53.95434 + 8059: 42.556934,54.251217 + 8060: 42.775684,53.67309 + 8061: 42.963184,53.407467 + 8062: 43.338184,52.73559 + 8063: 43.51006,52.54809 + 8064: 43.838184,52.32934 + 8065: 44.150684,52.282467 + 8066: 46.994434,55.79809 + 8067: 46.29131,55.344967 + 8068: 45.838184,55.04809 + 8069: 45.29131,54.29809 + 8070: 45.10381,53.61059 + 8071: 44.463184,51.907467 + 8072: 44.51006,51.876217 - node: color: '#79150015' id: splatter @@ -12114,10 +12114,10 @@ entities: color: '#DE3A3A0C' id: splatter decals: - 8082: 45.088184,53.376217 - 8083: 47.306934,55.42309 - 8084: 47.306934,55.42309 - 8085: 47.494434,55.001217 + 8073: 45.088184,53.376217 + 8074: 47.306934,55.42309 + 8075: 47.306934,55.42309 + 8076: 47.494434,55.001217 - type: GridAtmosphere version: 2 data: @@ -15642,8 +15642,6 @@ entities: - 588 - 571 - 587 - - type: AtmosDevice - joinedGrid: 13329 - uid: 611 components: - type: Transform @@ -15658,8 +15656,6 @@ entities: - 652 - 530 - 568 - - type: AtmosDevice - joinedGrid: 13329 - uid: 612 components: - type: Transform @@ -15684,8 +15680,6 @@ entities: - 451 - 423 - 420 - - type: AtmosDevice - joinedGrid: 13329 - uid: 613 components: - type: Transform @@ -15711,15 +15705,11 @@ entities: - 452 - 389 - 453 - - type: AtmosDevice - joinedGrid: 13329 - uid: 614 components: - type: Transform pos: -17.5,27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 615 components: - type: Transform @@ -15730,24 +15720,18 @@ entities: devices: - 569 - 537 - - type: AtmosDevice - joinedGrid: 13329 - uid: 616 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 617 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 1546 components: - type: Transform @@ -15758,8 +15742,6 @@ entities: devices: - 1544 - 1541 - - type: AtmosDevice - joinedGrid: 13329 - uid: 2036 components: - type: Transform @@ -15784,8 +15766,6 @@ entities: - 1548 - 1547 - 1549 - - type: AtmosDevice - joinedGrid: 13329 - uid: 2038 components: - type: Transform @@ -15796,8 +15776,6 @@ entities: devices: - 1616 - 1617 - - type: AtmosDevice - joinedGrid: 13329 - uid: 2039 components: - type: Transform @@ -15808,8 +15786,6 @@ entities: devices: - 2550 - 2549 - - type: AtmosDevice - joinedGrid: 13329 - uid: 2071 components: - type: Transform @@ -15834,8 +15810,6 @@ entities: - 1548 - 1547 - 1549 - - type: AtmosDevice - joinedGrid: 13329 - uid: 2117 components: - type: Transform @@ -15855,8 +15829,6 @@ entities: - 2204 - 2193 - 2194 - - type: AtmosDevice - joinedGrid: 13329 - uid: 2205 components: - type: Transform @@ -15869,8 +15841,6 @@ entities: - 2192 - 2190 - 2191 - - type: AtmosDevice - joinedGrid: 13329 - uid: 4541 components: - type: Transform @@ -15881,8 +15851,6 @@ entities: devices: - 4468 - 4469 - - type: AtmosDevice - joinedGrid: 13329 - uid: 4587 components: - type: Transform @@ -15899,8 +15867,6 @@ entities: - 1811 - 1812 - 1813 - - type: AtmosDevice - joinedGrid: 13329 - uid: 4676 components: - type: Transform @@ -15913,8 +15879,6 @@ entities: - 4666 - 4667 - 4669 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6226 components: - type: Transform @@ -15931,8 +15895,6 @@ entities: - 6225 - 6223 - 6224 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6231 components: - type: Transform @@ -15949,8 +15911,6 @@ entities: - 4603 - 6229 - 6228 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6273 components: - type: Transform @@ -15966,8 +15926,6 @@ entities: - 6288 - 5659 - 5660 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6274 components: - type: Transform @@ -15981,8 +15939,6 @@ entities: - 6289 - 5644 - 5643 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6275 components: - type: Transform @@ -15996,8 +15952,6 @@ entities: - 5723 - 5722 - 6292 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6277 components: - type: Transform @@ -16009,8 +15963,6 @@ entities: - 6279 - 5668 - 5669 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6284 components: - type: Transform @@ -16020,8 +15972,6 @@ entities: - type: DeviceList devices: - 5705 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6285 components: - type: Transform @@ -16032,8 +15982,6 @@ entities: devices: - 5721 - 5720 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6286 components: - type: Transform @@ -16044,8 +15992,6 @@ entities: devices: - 5753 - 5704 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6293 components: - type: Transform @@ -16055,8 +16001,6 @@ entities: devices: - 5533 - 5550 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6910 components: - type: Transform @@ -16080,8 +16024,6 @@ entities: - 1807 - 6908 - 6907 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6913 components: - type: Transform @@ -16108,8 +16050,6 @@ entities: - 6822 - 1555 - 1554 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6915 components: - type: Transform @@ -16125,8 +16065,6 @@ entities: - 6917 - 6904 - 6905 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8619 components: - type: Transform @@ -16144,8 +16082,6 @@ entities: - 8617 - 8600 - 8599 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8622 components: - type: Transform @@ -16163,8 +16099,6 @@ entities: - 8596 - 8595 - 8638 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8623 components: - type: Transform @@ -16182,8 +16116,6 @@ entities: - 8634 - 8597 - 8598 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8625 components: - type: Transform @@ -16199,8 +16131,6 @@ entities: - 8636 - 8567 - 8557 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8628 components: - type: Transform @@ -16217,8 +16147,6 @@ entities: - 8618 - 8542 - 8541 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8629 components: - type: Transform @@ -16229,8 +16157,6 @@ entities: - 8452 - 8453 - 8069 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8630 components: - type: Transform @@ -16241,8 +16167,6 @@ entities: devices: - 8533 - 8532 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8633 components: - type: Transform @@ -16262,8 +16186,6 @@ entities: - 8614 - 8552 - 8553 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11473 components: - type: Transform @@ -16279,8 +16201,6 @@ entities: - 10091 - 10092 - 11485 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11475 components: - type: Transform @@ -16307,8 +16227,6 @@ entities: - 10058 - 11047 - 11048 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11477 components: - type: Transform @@ -16331,8 +16249,6 @@ entities: - 10097 - 10098 - 10099 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11479 components: - type: Transform @@ -16347,8 +16263,6 @@ entities: - 11486 - 11127 - 11128 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11480 components: - type: Transform @@ -16358,8 +16272,6 @@ entities: devices: - 11129 - 11126 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11481 components: - type: Transform @@ -16378,8 +16290,6 @@ entities: - 11487 - 9951 - 9950 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13028 components: - type: Transform @@ -16398,8 +16308,6 @@ entities: - 12766 - 12762 - 12763 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13105 components: - type: Transform @@ -16410,8 +16318,6 @@ entities: - 13104 - 13103 - 13102 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14577 components: - type: Transform @@ -16432,15 +16338,11 @@ entities: - 14442 - 14441 - 14450 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14578 components: - type: Transform pos: 36.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14579 components: - type: Transform @@ -16457,8 +16359,6 @@ entities: - 14587 - 14524 - 14525 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14581 components: - type: Transform @@ -16477,8 +16377,6 @@ entities: - 14586 - 14526 - 14527 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14582 components: - type: Transform @@ -16500,8 +16398,6 @@ entities: - 14588 - 14585 - 14584 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14593 components: - type: Transform @@ -16522,8 +16418,6 @@ entities: - 14568 - 14590 - 14591 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14594 components: - type: Transform @@ -16542,8 +16436,6 @@ entities: - 14602 - 14522 - 14523 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14595 components: - type: Transform @@ -16559,8 +16451,6 @@ entities: - 14442 - 14453 - 14452 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14596 components: - type: Transform @@ -16572,8 +16462,6 @@ entities: - 14448 - 14299 - 14295 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14597 components: - type: Transform @@ -16588,8 +16476,6 @@ entities: - 14449 - 14281 - 14283 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14598 components: - type: Transform @@ -16600,8 +16486,6 @@ entities: devices: - 14498 - 14490 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14599 components: - type: Transform @@ -16612,8 +16496,6 @@ entities: devices: - 14342 - 14343 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14600 components: - type: Transform @@ -16628,16 +16510,12 @@ entities: - 14451 - 14330 - 14331 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14601 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17665 components: - type: Transform @@ -16655,8 +16533,6 @@ entities: - 17720 - 17721 - 18744 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17757 components: - type: Transform @@ -16674,8 +16550,6 @@ entities: - 17755 - 17748 - 17747 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17760 components: - type: Transform @@ -16692,8 +16566,6 @@ entities: - 17593 - 17544 - 17543 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17763 components: - type: Transform @@ -16714,8 +16586,6 @@ entities: - 17394 - 17393 - 18743 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17764 components: - type: Transform @@ -16739,8 +16609,6 @@ entities: - 17591 - 17460 - 17461 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17767 components: - type: Transform @@ -16754,8 +16622,6 @@ entities: - 17580 - 17391 - 17392 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17768 components: - type: Transform @@ -16770,8 +16636,6 @@ entities: - 17784 - 17406 - 17405 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17771 components: - type: Transform @@ -16786,8 +16650,6 @@ entities: - 17594 - 17399 - 17297 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17772 components: - type: Transform @@ -16798,15 +16660,11 @@ entities: devices: - 17502 - 17500 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17775 components: - type: Transform pos: 34.5,47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17776 components: - type: Transform @@ -16821,8 +16679,6 @@ entities: - 17778 - 17607 - 17608 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17779 components: - type: Transform @@ -16841,8 +16697,6 @@ entities: - 17596 - 17389 - 17387 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17787 components: - type: Transform @@ -16857,8 +16711,6 @@ entities: - 17756 - 17501 - 17499 - - type: AtmosDevice - joinedGrid: 13329 - uid: 18171 components: - type: Transform @@ -16873,16 +16725,12 @@ entities: - 17785 - 17401 - 17398 - - type: AtmosDevice - joinedGrid: 13329 - uid: 20643 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25905 components: - type: Transform @@ -16908,8 +16756,6 @@ entities: - 14564 - 14565 - 14563 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25907 components: - type: Transform @@ -16919,8 +16765,6 @@ entities: devices: - 22683 - 22684 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25908 components: - type: Transform @@ -16937,8 +16781,6 @@ entities: - 25502 - 22670 - 22669 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25911 components: - type: Transform @@ -16955,8 +16797,6 @@ entities: - 25508 - 22686 - 22685 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25912 components: - type: Transform @@ -16971,8 +16811,6 @@ entities: - 25948 - 24035 - 24027 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25915 components: - type: Transform @@ -16990,8 +16828,6 @@ entities: - 25004 - 25944 - 23661 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25918 components: - type: Transform @@ -17004,8 +16840,6 @@ entities: - 23801 - 23802 - 25949 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25919 components: - type: Transform @@ -17019,8 +16853,6 @@ entities: - 25942 - 24893 - 24892 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25922 components: - type: Transform @@ -17033,8 +16865,6 @@ entities: - 25945 - 25091 - 25415 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25923 components: - type: Transform @@ -17049,8 +16879,6 @@ entities: - 25939 - 25362 - 25361 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25925 components: - type: Transform @@ -17072,8 +16900,6 @@ entities: - 25458 - 25459 - 25877 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25927 components: - type: Transform @@ -17087,8 +16913,6 @@ entities: - 23461 - 25455 - 25456 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25929 components: - type: Transform @@ -17101,8 +16925,6 @@ entities: - 25941 - 20227 - 25505 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25931 components: - type: Transform @@ -17116,8 +16938,6 @@ entities: - 25946 - 25403 - 25404 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25934 components: - type: Transform @@ -17132,8 +16952,6 @@ entities: - 21383 - 25384 - 25402 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25935 components: - type: Transform @@ -17145,8 +16963,6 @@ entities: - 21384 - 25401 - 25380 - - type: AtmosDevice - joinedGrid: 13329 - uid: 27684 components: - type: Transform @@ -17159,8 +16975,6 @@ entities: - 21541 - 27659 - 27677 - - type: AtmosDevice - joinedGrid: 13329 - uid: 27685 components: - type: Transform @@ -17173,8 +16987,6 @@ entities: - 27681 - 27649 - 27676 - - type: AtmosDevice - joinedGrid: 13329 - uid: 27686 components: - type: Transform @@ -17185,8 +16997,6 @@ entities: devices: - 27679 - 27660 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28233 components: - type: Transform @@ -17203,8 +17013,6 @@ entities: - 28231 - 28198 - 28196 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28271 components: - type: Transform @@ -17223,8 +17031,6 @@ entities: - 21366 - 28269 - 28268 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28335 components: - type: Transform @@ -17242,8 +17048,6 @@ entities: - 21404 - 28320 - 28333 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28834 components: - type: Transform @@ -17260,8 +17064,6 @@ entities: - 28830 - 28831 - 29280 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28837 components: - type: Transform @@ -17281,8 +17083,6 @@ entities: - 28801 - 28794 - 28795 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28838 components: - type: Transform @@ -17298,8 +17098,6 @@ entities: - 28902 - 28264 - 28267 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28841 components: - type: Transform @@ -17320,8 +17118,6 @@ entities: - 28803 - 28787 - 28786 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28894 components: - type: Transform @@ -17341,8 +17137,6 @@ entities: - 28807 - 8263 - 8256 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28897 components: - type: Transform @@ -17361,8 +17155,6 @@ entities: - 28806 - 28889 - 28888 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28899 components: - type: Transform @@ -17379,8 +17171,6 @@ entities: - 28805 - 28890 - 28891 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28901 components: - type: Transform @@ -17403,8 +17193,6 @@ entities: - 28804 - 28843 - 28842 - - type: AtmosDevice - joinedGrid: 13329 - uid: 30674 components: - type: Transform @@ -17414,8 +17202,6 @@ entities: devices: - 30316 - 30302 - - type: AtmosDevice - joinedGrid: 13329 - uid: 30675 components: - type: Transform @@ -17425,8 +17211,6 @@ entities: devices: - 30315 - 30303 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31260 components: - type: Transform @@ -17441,8 +17225,6 @@ entities: - 31256 - 31134 - 31135 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31262 components: - type: Transform @@ -17465,8 +17247,6 @@ entities: - 29750 - 16742 - 29748 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31264 components: - type: Transform @@ -17477,8 +17257,6 @@ entities: - 31166 - 31148 - 31258 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31265 components: - type: Transform @@ -17488,8 +17266,6 @@ entities: devices: - 31165 - 31164 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31266 components: - type: Transform @@ -17499,8 +17275,6 @@ entities: devices: - 31136 - 31132 - - type: AtmosDevice - joinedGrid: 13329 - proto: AirCanister entities: - uid: 4699 @@ -17508,127 +17282,91 @@ entities: - type: Transform pos: -30.5,21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 4700 components: - type: Transform pos: -30.5,22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 5639 components: - type: Transform pos: -28.5,74.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 9624 components: - type: Transform pos: 65.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 9625 components: - type: Transform pos: 66.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13044 components: - type: Transform pos: -42.5,-46.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13701 components: - type: Transform pos: -40.5,-6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13702 components: - type: Transform pos: -40.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15439 components: - type: Transform pos: 55.5,-41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15440 components: - type: Transform pos: 55.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23808 components: - type: Transform pos: 79.5,-42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 24011 components: - type: Transform pos: 81.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 24012 components: - type: Transform pos: 82.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 29331 components: - type: Transform pos: 72.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 29332 components: - type: Transform pos: 73.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32542 components: - type: Transform pos: 107.5,14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32750 components: - type: Transform pos: 107.5,36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 33968 components: - type: Transform pos: 38.5,56.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: Airlock entities: - uid: 4705 @@ -28810,16 +28548,12 @@ entities: - type: Transform pos: 87.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 18350 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: Basketball entities: - uid: 10366 @@ -29768,28 +29502,38 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,10.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 1292 components: - type: Transform pos: -21.5,22.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 10343 components: - type: Transform pos: 44.5,25.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 29164 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,19.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 34393 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-51.5 parent: 13329 + - type: SpamEmitSound + enabled: False - proto: BookAtmosAirAlarms entities: - uid: 26142 @@ -29838,46 +29582,23 @@ entities: - type: Transform pos: 108.514824,25.955418 parent: 13329 -- proto: BookBotanicalTextbook +- proto: BookRandomStory entities: - uid: 1424 components: - type: Transform pos: -7.4347258,34.70331 parent: 13329 -- proto: BookChemistryInsane - entities: - - uid: 32367 - components: - - type: Transform - pos: -19.428053,56.613403 - parent: 13329 -- proto: BookDetective - entities: - - uid: 4564 - components: - - type: Transform - pos: -21.503284,39.558342 - parent: 13329 -- proto: BookEscalation - entities: - - uid: 29556 - components: - - type: Transform - pos: 68.47832,36.611443 - parent: 13329 - - uid: 35207 - components: - - type: Transform - pos: 112.421074,26.314793 - parent: 13329 -- proto: BookEscalationSecurity - entities: - uid: 4563 components: - type: Transform pos: -23.48766,40.683342 parent: 13329 + - uid: 4564 + components: + - type: Transform + pos: -21.503284,39.558342 + parent: 13329 - uid: 10266 components: - type: Transform @@ -29898,19 +29619,30 @@ entities: - type: Transform pos: 68.60332,36.470818 parent: 13329 -- proto: BookFishing - entities: + - uid: 29556 + components: + - type: Transform + pos: 68.47832,36.611443 + parent: 13329 + - uid: 32367 + components: + - type: Transform + pos: -19.428053,56.613403 + parent: 13329 + - uid: 32368 + components: + - type: Transform + pos: -21.394863,58.590874 + parent: 13329 - uid: 34239 components: - type: Transform pos: 29.341076,64.574615 parent: 13329 -- proto: BookGnominomicon - entities: - - uid: 32368 + - uid: 35207 components: - type: Transform - pos: -21.394863,58.590874 + pos: 112.421074,26.314793 parent: 13329 - proto: BooksBag entities: @@ -78054,36 +77786,26 @@ entities: - type: Transform pos: 57.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15426 components: - type: Transform pos: 59.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15438 components: - type: Transform pos: 60.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23809 components: - type: Transform pos: 93.5,-42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26005 components: - type: Transform pos: 72.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: Carpet entities: - uid: 1083 @@ -90634,6 +90356,11 @@ entities: - 0 - 0 - 0 + - uid: 29182 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 13329 - uid: 29274 components: - type: Transform @@ -90887,6 +90614,31 @@ entities: - 0 - 0 - 0 + - uid: 32342 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 13329 + - uid: 32343 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 13329 + - uid: 32346 + components: + - type: Transform + pos: 48.5,36.5 + parent: 13329 + - uid: 32350 + components: + - type: Transform + pos: -5.5,74.5 + parent: 13329 + - uid: 32353 + components: + - type: Transform + pos: -38.5,3.5 + parent: 13329 - uid: 32418 components: - type: Transform @@ -91186,6 +90938,43 @@ entities: - 0 - 0 - 0 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 13248 + components: + - type: Transform + pos: 92.5,-22.5 + parent: 13329 + - uid: 32341 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 13329 + - uid: 32344 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 13329 + - uid: 32345 + components: + - type: Transform + pos: 49.5,40.5 + parent: 13329 + - uid: 32347 + components: + - type: Transform + pos: -5.5,73.5 + parent: 13329 + - uid: 32351 + components: + - type: Transform + pos: -18.5,34.5 + parent: 13329 + - uid: 32352 + components: + - type: Transform + pos: -37.5,3.5 + parent: 13329 - proto: ClosetFireFilled entities: - uid: 2610 @@ -91602,29 +91391,6 @@ entities: - 0 - 0 - 0 - - uid: 26763 - components: - - type: Transform - pos: 92.5,-22.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 26764 components: - type: Transform @@ -94225,7 +93991,7 @@ entities: - type: Transform pos: 55.350296,61.608864 parent: 13329 -- proto: ClothingHeadHatFlowerCrown +- proto: ClothingHeadHatFlowerWreath entities: - uid: 6673 components: @@ -94249,23 +94015,6 @@ entities: - type: Transform pos: 100.47445,18.649193 parent: 13329 -- proto: ClothingHeadHatHairflower - entities: - - uid: 6674 - components: - - type: Transform - pos: -11.365201,68.68781 - parent: 13329 - - uid: 30768 - components: - - type: Transform - pos: 91.85021,46.88373 - parent: 13329 - - uid: 34251 - components: - - type: Transform - pos: 18.62631,-0.28601944 - parent: 13329 - proto: ClothingHeadHatHopcap entities: - uid: 26085 @@ -98400,15 +98149,11 @@ entities: - type: Transform pos: 27.5,51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17619 components: - type: Transform pos: 29.5,51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: CryoxadoneBeakerSmall entities: - uid: 18465 @@ -99221,11 +98966,6 @@ entities: - type: Transform pos: 92.5,33.5 parent: 13329 - - uid: 29182 - components: - - type: Transform - pos: 92.5,32.5 - parent: 13329 - proto: DefaultStationBeaconTheater entities: - uid: 28030 @@ -110772,8 +110512,6 @@ entities: - 643 - 644 - 645 - - type: AtmosDevice - joinedGrid: 13329 - uid: 659 components: - type: Transform @@ -110788,16 +110526,12 @@ entities: - 657 - 378 - 424 - - type: AtmosDevice - joinedGrid: 13329 - uid: 660 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 661 components: - type: Transform @@ -110818,8 +110552,6 @@ entities: - 651 - 653 - 652 - - type: AtmosDevice - joinedGrid: 13329 - uid: 662 components: - type: Transform @@ -110831,8 +110563,6 @@ entities: - 629 - 653 - 652 - - type: AtmosDevice - joinedGrid: 13329 - uid: 663 components: - type: Transform @@ -110847,8 +110577,6 @@ entities: - 664 - 632 - 1358 - - type: AtmosDevice - joinedGrid: 13329 - uid: 2037 components: - type: Transform @@ -110869,8 +110597,6 @@ entities: - 2048 - 2049 - 2050 - - type: AtmosDevice - joinedGrid: 13329 - uid: 2203 components: - type: Transform @@ -110887,8 +110613,6 @@ entities: - 1973 - 2200 - 2204 - - type: AtmosDevice - joinedGrid: 13329 - uid: 4589 components: - type: Transform @@ -110903,8 +110627,6 @@ entities: - 1811 - 1812 - 1813 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6227 components: - type: Transform @@ -110919,8 +110641,6 @@ entities: - 1809 - 1810 - 6225 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6230 components: - type: Transform @@ -110935,8 +110655,6 @@ entities: - 4604 - 4605 - 4603 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6276 components: - type: Transform @@ -110948,8 +110666,6 @@ entities: - 6278 - 6279 - 6291 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6280 components: - type: Transform @@ -110963,8 +110679,6 @@ entities: - 6267 - 6268 - 6288 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6281 components: - type: Transform @@ -110975,8 +110689,6 @@ entities: - 6265 - 6266 - 6289 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6282 components: - type: Transform @@ -110988,8 +110700,6 @@ entities: - 6272 - 6271 - 6292 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6283 components: - type: Transform @@ -111003,8 +110713,6 @@ entities: - 6267 - 6268 - 6288 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6290 components: - type: Transform @@ -111022,8 +110730,6 @@ entities: - 6268 - 6272 - 6271 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6906 components: - type: Transform @@ -111045,8 +110751,6 @@ entities: - 1806 - 1805 - 1807 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6912 components: - type: Transform @@ -111071,8 +110775,6 @@ entities: - 1215 - 6823 - 6822 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6916 components: - type: Transform @@ -111086,8 +110788,6 @@ entities: - 6820 - 6821 - 6917 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8620 components: - type: Transform @@ -111103,8 +110803,6 @@ entities: - 8059 - 8060 - 8617 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8621 components: - type: Transform @@ -111120,8 +110818,6 @@ entities: - 8053 - 8054 - 8638 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8624 components: - type: Transform @@ -111137,8 +110833,6 @@ entities: - 8069 - 8068 - 8634 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8626 components: - type: Transform @@ -111152,8 +110846,6 @@ entities: - 8067 - 8635 - 8636 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8627 components: - type: Transform @@ -111167,8 +110859,6 @@ entities: - 8061 - 8066 - 8618 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8631 components: - type: Transform @@ -111180,8 +110870,6 @@ entities: - 8452 - 8453 - 8069 - - type: AtmosDevice - joinedGrid: 13329 - uid: 8632 components: - type: Transform @@ -111199,8 +110887,6 @@ entities: - 8059 - 8060 - 8614 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11472 components: - type: Transform @@ -111216,8 +110902,6 @@ entities: - 10091 - 10092 - 11485 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11474 components: - type: Transform @@ -111240,8 +110924,6 @@ entities: - 10088 - 10087 - 11484 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11476 components: - type: Transform @@ -111259,8 +110941,6 @@ entities: - 10102 - 10103 - 11483 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11478 components: - type: Transform @@ -111273,8 +110953,6 @@ entities: - 10094 - 10095 - 11486 - - type: AtmosDevice - joinedGrid: 13329 - uid: 11482 components: - type: Transform @@ -111291,8 +110969,6 @@ entities: - 10102 - 10103 - 11487 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13027 components: - type: Transform @@ -111307,8 +110983,6 @@ entities: - 12769 - 12767 - 12768 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14569 components: - type: Transform @@ -111327,8 +111001,6 @@ entities: - 14442 - 14441 - 14450 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14570 components: - type: Transform @@ -111341,8 +111013,6 @@ entities: - 14434 - 14433 - 14449 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14571 components: - type: Transform @@ -111353,8 +111023,6 @@ entities: devices: - 14604 - 14448 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14572 components: - type: Transform @@ -111367,15 +111035,11 @@ entities: - 14437 - 14438 - 14451 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14573 components: - type: Transform pos: 35.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14574 components: - type: Transform @@ -111390,8 +111054,6 @@ entities: - 14476 - 14477 - 14587 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14575 components: - type: Transform @@ -111408,8 +111070,6 @@ entities: - 14445 - 14444 - 14602 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14576 components: - type: Transform @@ -111423,8 +111083,6 @@ entities: - 14603 - 14441 - 14442 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14580 components: - type: Transform @@ -111441,8 +111099,6 @@ entities: - 14479 - 14480 - 14586 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14583 components: - type: Transform @@ -111462,8 +111118,6 @@ entities: - 2049 - 2050 - 14588 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14592 components: - type: Transform @@ -111482,8 +111136,6 @@ entities: - 14566 - 14567 - 14568 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17758 components: - type: Transform @@ -111499,8 +111151,6 @@ entities: - 17560 - 17561 - 17755 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17759 components: - type: Transform @@ -111515,8 +111165,6 @@ entities: - 17589 - 17561 - 17593 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17761 components: - type: Transform @@ -111533,8 +111181,6 @@ entities: - 17567 - 17754 - 18744 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17762 components: - type: Transform @@ -111553,8 +111199,6 @@ entities: - 17566 - 17567 - 18743 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17765 components: - type: Transform @@ -111576,8 +111220,6 @@ entities: - 17575 - 17580 - 17591 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17766 components: - type: Transform @@ -111589,8 +111231,6 @@ entities: - 17588 - 17586 - 17580 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17769 components: - type: Transform @@ -111603,8 +111243,6 @@ entities: - 17586 - 17587 - 17784 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17770 components: - type: Transform @@ -111617,8 +111255,6 @@ entities: - 17573 - 17574 - 17594 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17777 components: - type: Transform @@ -111631,8 +111267,6 @@ entities: - 17611 - 17579 - 17778 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17780 components: - type: Transform @@ -111649,8 +111283,6 @@ entities: - 17576 - 17577 - 17596 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17786 components: - type: Transform @@ -111663,8 +111295,6 @@ entities: - 17590 - 17612 - 17756 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17897 components: - type: Transform @@ -111678,8 +111308,6 @@ entities: - 17584 - 17585 - 17785 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25906 components: - type: Transform @@ -111701,8 +111329,6 @@ entities: - 8144 - 25507 - 25506 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25909 components: - type: Transform @@ -111717,8 +111343,6 @@ entities: - 21374 - 21375 - 25502 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25910 components: - type: Transform @@ -111734,8 +111358,6 @@ entities: - 21373 - 21374 - 25508 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25913 components: - type: Transform @@ -111748,8 +111370,6 @@ entities: - 25009 - 21393 - 25948 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25914 components: - type: Transform @@ -111766,8 +111386,6 @@ entities: - 25005 - 25004 - 25944 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25916 components: - type: Transform @@ -111782,8 +111400,6 @@ entities: - 25005 - 25004 - 25943 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25917 components: - type: Transform @@ -111794,8 +111410,6 @@ entities: - 25008 - 21382 - 25949 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25920 components: - type: Transform @@ -111807,8 +111421,6 @@ entities: - 21382 - 21386 - 25942 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25921 components: - type: Transform @@ -111819,8 +111431,6 @@ entities: - 21386 - 25953 - 25945 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25924 components: - type: Transform @@ -111833,8 +111443,6 @@ entities: - 21380 - 21378 - 25939 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25926 components: - type: Transform @@ -111852,8 +111460,6 @@ entities: - 23463 - 23462 - 25938 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25928 components: - type: Transform @@ -111865,8 +111471,6 @@ entities: - 23459 - 23460 - 23461 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25930 components: - type: Transform @@ -111878,8 +111482,6 @@ entities: - 21377 - 21385 - 25941 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25932 components: - type: Transform @@ -111891,8 +111493,6 @@ entities: - 22741 - 22740 - 25946 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25933 components: - type: Transform @@ -111905,8 +111505,6 @@ entities: - 21381 - 21380 - 21383 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25936 components: - type: Transform @@ -111916,8 +111514,6 @@ entities: devices: - 25955 - 21384 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25947 components: - type: Transform @@ -111930,8 +111526,6 @@ entities: - 21377 - 21376 - 25501 - - type: AtmosDevice - joinedGrid: 13329 - uid: 27682 components: - type: Transform @@ -111943,8 +111537,6 @@ entities: - 27680 - 21542 - 21541 - - type: AtmosDevice - joinedGrid: 13329 - uid: 27683 components: - type: Transform @@ -111955,8 +111547,6 @@ entities: - 21544 - 21543 - 27681 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28232 components: - type: Transform @@ -111972,8 +111562,6 @@ entities: - 8146 - 8170 - 28231 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28272 components: - type: Transform @@ -111991,8 +111579,6 @@ entities: - 21368 - 21367 - 21366 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28336 components: - type: Transform @@ -112008,8 +111594,6 @@ entities: - 21406 - 21405 - 21404 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28835 components: - type: Transform @@ -112023,8 +111607,6 @@ entities: - 21397 - 21398 - 28802 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28836 components: - type: Transform @@ -112042,8 +111624,6 @@ entities: - 21402 - 21401 - 28801 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28839 components: - type: Transform @@ -112057,8 +111637,6 @@ entities: - 28797 - 28796 - 28902 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28840 components: - type: Transform @@ -112077,8 +111655,6 @@ entities: - 21405 - 21404 - 28803 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28895 components: - type: Transform @@ -112096,8 +111672,6 @@ entities: - 21355 - 21356 - 28807 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28896 components: - type: Transform @@ -112114,8 +111688,6 @@ entities: - 21358 - 21359 - 28806 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28898 components: - type: Transform @@ -112130,8 +111702,6 @@ entities: - 21358 - 21359 - 28805 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28900 components: - type: Transform @@ -112152,8 +111722,6 @@ entities: - 21367 - 21366 - 28804 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31261 components: - type: Transform @@ -112166,8 +111734,6 @@ entities: - 31254 - 31257 - 31256 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31263 components: - type: Transform @@ -112186,8 +111752,6 @@ entities: - 21407 - 21408 - 21409 - - type: AtmosDevice - joinedGrid: 13329 - proto: FireAxeCabinetFilled entities: - uid: 25199 @@ -115498,6 +115062,21 @@ entities: - type: Transform pos: -7.474576,68.62531 parent: 13329 + - uid: 6674 + components: + - type: Transform + pos: -11.365201,68.68781 + parent: 13329 + - uid: 30768 + components: + - type: Transform + pos: 91.85021,46.88373 + parent: 13329 + - uid: 34251 + components: + - type: Transform + pos: 18.62631,-0.28601944 + parent: 13329 - proto: FoodSoupClown entities: - uid: 34573 @@ -115641,8 +115220,6 @@ entities: rot: 1.5707963267948966 rad pos: 97.5,-30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#22BA29FF' - proto: GasFilterFlipped @@ -115653,15 +115230,11 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17620 components: - type: Transform pos: 28.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19788 @@ -115670,8 +115243,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasMinerCarbonDioxide entities: - uid: 23796 @@ -115679,8 +115250,6 @@ entities: - type: Transform pos: 92.5,-42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasMinerNitrogenStationLarge entities: - uid: 23704 @@ -115688,8 +115257,6 @@ entities: - type: Transform pos: 71.5,-41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasMinerOxygenStationLarge entities: - uid: 23705 @@ -115697,8 +115264,6 @@ entities: - type: Transform pos: 75.5,-41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasMinerWaterVapor entities: - uid: 23798 @@ -115706,8 +115271,6 @@ entities: - type: Transform pos: 92.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasMixer entities: - uid: 15372 @@ -115716,15 +115279,11 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15387 components: - type: Transform pos: 56.5,-27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasOutletInjector entities: - uid: 5631 @@ -115733,56 +115292,42 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,74.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23575 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23576 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23596 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23597 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-43.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23598 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23879 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasPassiveGate entities: - uid: 23677 @@ -115792,8 +115337,6 @@ entities: - type: Transform pos: 78.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GasPassiveVent @@ -115804,96 +115347,72 @@ entities: rot: 3.141592653589793 rad pos: -6.5,28.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 5627 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,72.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14323 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15386 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15392 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15400 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 20516 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 20520 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 20529 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23571 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23572 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23573 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 23574 @@ -115902,40 +115421,30 @@ entities: rot: 3.141592653589793 rad pos: 78.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23836 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23856 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23857 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23917 components: - type: Transform rot: 3.141592653589793 rad pos: 105.5,-36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23919 @@ -115944,8 +115453,6 @@ entities: rot: 3.141592653589793 rad pos: 106.5,-36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23920 @@ -115954,8 +115461,6 @@ entities: rot: 3.141592653589793 rad pos: 107.5,-36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25878 @@ -115964,8 +115469,6 @@ entities: rot: 1.5707963267948966 rad pos: 107.5,-22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27843 @@ -115974,8 +115477,6 @@ entities: rot: -1.5707963267948966 rad pos: 98.5,32.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasPipeBend entities: - uid: 343 @@ -149736,188 +149237,140 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 4698 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 5632 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,74.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15369 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15370 components: - type: Transform pos: 52.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15371 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15373 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15374 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15375 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15378 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15379 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15380 components: - type: Transform pos: 55.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15381 components: - type: Transform pos: 56.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15417 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15418 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17363 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,48.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 18349 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 19141 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 19791 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-50.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 19792 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-50.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 19793 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-50.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23689 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23690 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 24005 components: - type: Transform pos: 79.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24006 @@ -149925,8 +149378,6 @@ entities: - type: Transform pos: 80.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24007 @@ -149934,23 +149385,17 @@ entities: - type: Transform pos: 81.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 24008 components: - type: Transform pos: 82.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 24031 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24032 @@ -149959,8 +149404,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24033 @@ -149969,8 +149412,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24037 @@ -149978,8 +149419,6 @@ entities: - type: Transform pos: 63.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24038 @@ -149987,8 +149426,6 @@ entities: - type: Transform pos: 64.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24039 @@ -149996,46 +149433,34 @@ entities: - type: Transform pos: 65.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 24040 components: - type: Transform pos: 66.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26550 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26551 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28146 components: - type: Transform pos: 121.5,-15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 29321 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29322 @@ -150044,8 +149469,6 @@ entities: rot: 3.141592653589793 rad pos: 69.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29327 @@ -150054,16 +149477,12 @@ entities: rot: 3.141592653589793 rad pos: 72.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 29328 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasPressurePump entities: - uid: 4694 @@ -150072,8 +149491,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,23.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5625 @@ -150082,8 +149499,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,72.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13465 @@ -150094,8 +149509,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,50.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15382 @@ -150104,24 +149517,18 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17624 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 22664 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-8.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22667 @@ -150130,8 +149537,6 @@ entities: rot: 3.141592653589793 rad pos: 66.5,-8.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23642 @@ -150140,8 +149545,6 @@ entities: rot: 1.5707963267948966 rad pos: 97.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23662 @@ -150150,23 +149553,17 @@ entities: rot: 3.141592653589793 rad pos: 72.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23664 components: - type: Transform pos: 70.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23666 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23669 @@ -150174,24 +149571,18 @@ entities: - type: Transform pos: 74.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23672 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23674 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23700 components: - type: MetaData @@ -150200,24 +149591,18 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,-41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23706 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23708 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23709 @@ -150228,8 +149613,6 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23710 components: - type: MetaData @@ -150238,32 +149621,24 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23712 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23715 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23718 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 23817 @@ -150272,8 +149647,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23838 @@ -150282,8 +149655,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23861 @@ -150294,8 +149665,6 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,-25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23877 components: - type: MetaData @@ -150304,16 +149673,12 @@ entities: rot: 1.5707963267948966 rad pos: 89.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 24003 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24004 @@ -150322,8 +149687,6 @@ entities: rot: 3.141592653589793 rad pos: 82.5,-27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24257 @@ -150332,16 +149695,12 @@ entities: rot: 1.5707963267948966 rad pos: 101.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28136 components: - type: Transform rot: 3.141592653589793 rad pos: 121.5,-17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28138 @@ -150350,8 +149709,6 @@ entities: rot: -1.5707963267948966 rad pos: 120.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29325 @@ -150359,8 +149716,6 @@ entities: - type: Transform pos: 72.5,7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29326 @@ -150368,8 +149723,6 @@ entities: - type: Transform pos: 73.5,7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasThermoMachineFreezer @@ -150379,29 +149732,21 @@ entities: - type: Transform pos: -6.5,29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 14324 components: - type: Transform pos: 32.5,-28.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15377 components: - type: Transform pos: 57.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 17622 components: - type: Transform pos: 30.5,51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23655 components: - type: MetaData @@ -150412,15 +149757,11 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#FF1212FF' - - type: AtmosDevice - joinedGrid: 13329 - uid: 23687 components: - type: Transform pos: 77.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23820 components: - type: Transform @@ -150429,29 +149770,21 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#03FCD3FF' - - type: AtmosDevice - joinedGrid: 13329 - uid: 26548 components: - type: Transform pos: 83.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 27830 components: - type: Transform pos: 93.5,36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 27831 components: - type: Transform pos: 97.5,36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasThermoMachineHeater entities: - uid: 23660 @@ -150464,36 +149797,26 @@ entities: parent: 13329 - type: AtmosPipeColor color: '#FF1212FF' - - type: AtmosDevice - joinedGrid: 13329 - uid: 23688 components: - type: Transform pos: 75.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23707 components: - type: Transform pos: 96.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23818 components: - type: Transform pos: 74.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26549 components: - type: Transform pos: 85.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: GasValve entities: - uid: 5628 @@ -150504,8 +149827,6 @@ entities: parent: 13329 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 13329 - uid: 15388 components: - type: Transform @@ -150514,8 +149835,6 @@ entities: parent: 13329 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 13329 - uid: 23644 components: - type: MetaData @@ -150526,8 +149845,6 @@ entities: parent: 13329 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23834 @@ -150540,8 +149857,6 @@ entities: parent: 13329 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24255 @@ -150552,8 +149867,6 @@ entities: parent: 13329 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24256 @@ -150564,8 +149877,6 @@ entities: parent: 13329 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVentPump @@ -150576,8 +149887,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 451 @@ -150586,8 +149895,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 452 @@ -150596,8 +149903,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 453 @@ -150605,8 +149910,6 @@ entities: - type: Transform pos: -10.5,22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 461 @@ -150615,8 +149918,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 552 @@ -150625,8 +149926,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 565 @@ -150635,8 +149934,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 567 @@ -150645,8 +149942,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 568 @@ -150655,8 +149950,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,28.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 569 @@ -150665,8 +149958,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 571 @@ -150674,8 +149965,6 @@ entities: - type: Transform pos: -11.5,41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 572 @@ -150684,8 +149973,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 610 @@ -150693,8 +149980,6 @@ entities: - type: Transform pos: -15.5,40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 624 @@ -150702,8 +149987,6 @@ entities: - type: Transform pos: -13.5,10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1541 @@ -150712,8 +149995,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1552 @@ -150722,8 +150003,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1554 @@ -150731,8 +150010,6 @@ entities: - type: Transform pos: -0.5,15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1616 @@ -150740,8 +150017,6 @@ entities: - type: Transform pos: -10.5,-0.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2077 @@ -150750,8 +150025,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2191 @@ -150760,8 +150033,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-8.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2192 @@ -150770,8 +150041,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2193 @@ -150780,8 +150049,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2300 @@ -150790,8 +150057,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2550 @@ -150799,8 +150064,6 @@ entities: - type: Transform pos: -17.5,-2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4459 @@ -150809,8 +150072,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4468 @@ -150819,8 +150080,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4585 @@ -150829,8 +150088,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4666 @@ -150839,8 +150096,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4667 @@ -150849,8 +150104,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5524 @@ -150859,8 +150112,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,55.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5550 @@ -150869,8 +150120,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,57.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5642 @@ -150878,8 +150127,6 @@ entities: - type: Transform pos: -30.5,68.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5643 @@ -150888,8 +150135,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,58.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5658 @@ -150897,8 +150142,6 @@ entities: - type: Transform pos: -22.5,61.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5659 @@ -150907,8 +150150,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,50.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5668 @@ -150917,8 +150158,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5704 @@ -150927,8 +150166,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,71.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5705 @@ -150937,8 +150174,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,71.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5720 @@ -150947,8 +150182,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,70.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5723 @@ -150957,8 +150190,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,61.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6223 @@ -150967,8 +150198,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6228 @@ -150977,8 +150206,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6904 @@ -150987,8 +150214,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6907 @@ -150997,8 +150222,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8136 @@ -151007,8 +150230,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8140 @@ -151017,8 +150238,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8165 @@ -151027,8 +150246,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8256 @@ -151037,8 +150254,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8421 @@ -151047,8 +150262,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8452 @@ -151057,8 +150270,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8471 @@ -151067,8 +150278,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8472 @@ -151077,8 +150286,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8473 @@ -151087,8 +150294,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8474 @@ -151097,8 +150302,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8531 @@ -151106,8 +150309,6 @@ entities: - type: Transform pos: 30.5,30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8532 @@ -151116,8 +150317,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8542 @@ -151125,8 +150324,6 @@ entities: - type: Transform pos: 31.5,19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8552 @@ -151135,8 +150332,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,23.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8556 @@ -151145,8 +150340,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8557 @@ -151155,8 +150348,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8572 @@ -151165,8 +150356,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8593 @@ -151175,8 +150364,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8595 @@ -151185,8 +150372,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8597 @@ -151195,8 +150380,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8599 @@ -151204,8 +150387,6 @@ entities: - type: Transform pos: 24.5,19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8603 @@ -151214,8 +150395,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9294 @@ -151223,8 +150402,6 @@ entities: - type: Transform pos: 14.5,4.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9295 @@ -151232,8 +150409,6 @@ entities: - type: Transform pos: 8.5,4.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9297 @@ -151242,8 +150417,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9298 @@ -151252,8 +150425,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9948 @@ -151262,8 +150433,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9950 @@ -151272,8 +150441,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10058 @@ -151282,8 +150449,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10083 @@ -151292,8 +150457,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10084 @@ -151302,8 +150465,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11041 @@ -151312,8 +150473,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-32.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11045 @@ -151321,8 +150480,6 @@ entities: - type: Transform pos: -0.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11047 @@ -151331,8 +150488,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11095 @@ -151341,8 +150496,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11098 @@ -151351,8 +150504,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11109 @@ -151360,8 +150511,6 @@ entities: - type: Transform pos: 18.5,-14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11128 @@ -151370,8 +150519,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11129 @@ -151380,8 +150527,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11154 @@ -151390,8 +150535,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12761 @@ -151400,8 +150543,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12762 @@ -151410,8 +150551,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-60.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12766 @@ -151420,8 +150559,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13102 @@ -151430,8 +150567,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13106 @@ -151440,8 +150575,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13108 @@ -151450,8 +150583,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13542 @@ -151460,8 +150591,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13556 @@ -151470,8 +150599,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13560 @@ -151480,8 +150607,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13561 @@ -151490,8 +150615,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13564 @@ -151500,8 +150623,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14281 @@ -151510,8 +150631,6 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14295 @@ -151520,8 +150639,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14312 @@ -151530,8 +150647,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14313 @@ -151539,8 +150654,6 @@ entities: - type: Transform pos: 41.5,-22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14316 @@ -151549,8 +150662,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14321 @@ -151559,8 +150670,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14322 @@ -151569,8 +150678,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14330 @@ -151579,8 +150686,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14333 @@ -151589,8 +150694,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14342 @@ -151598,8 +150701,6 @@ entities: - type: Transform pos: 42.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14359 @@ -151608,8 +150709,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14360 @@ -151618,8 +150717,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14452 @@ -151628,8 +150725,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14486 @@ -151638,8 +150733,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14489 @@ -151648,8 +150741,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14490 @@ -151658,8 +150749,6 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14522 @@ -151668,8 +150757,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14524 @@ -151678,8 +150765,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14526 @@ -151688,8 +150773,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14545 @@ -151698,8 +150781,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14562 @@ -151708,8 +150789,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14563 @@ -151718,8 +150797,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-4.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14584 @@ -151728,8 +150805,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14590 @@ -151738,8 +150813,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16672 @@ -151748,8 +150821,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16673 @@ -151757,8 +150828,6 @@ entities: - type: Transform pos: 49.5,43.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16742 @@ -151767,8 +150836,6 @@ entities: rot: 3.141592653589793 rad pos: 71.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16752 @@ -151777,8 +150844,6 @@ entities: rot: 3.141592653589793 rad pos: 71.5,42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17291 @@ -151787,8 +150852,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,65.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17297 @@ -151796,8 +150859,6 @@ entities: - type: Transform pos: 10.5,50.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17387 @@ -151805,8 +150866,6 @@ entities: - type: Transform pos: 12.5,37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17388 @@ -151815,8 +150874,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17392 @@ -151825,8 +150882,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,44.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17393 @@ -151835,8 +150890,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,54.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17401 @@ -151845,8 +150898,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17403 @@ -151855,8 +150906,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,59.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17404 @@ -151865,8 +150914,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,55.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17406 @@ -151875,8 +150922,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,48.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17451 @@ -151884,8 +150929,6 @@ entities: - type: Transform pos: 32.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17452 @@ -151893,8 +150936,6 @@ entities: - type: Transform pos: 35.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17453 @@ -151903,8 +150944,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17456 @@ -151912,8 +150951,6 @@ entities: - type: Transform pos: 28.5,46.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17457 @@ -151922,8 +150959,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,43.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17460 @@ -151932,8 +150967,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,44.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17466 @@ -151942,8 +150975,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17473 @@ -151952,8 +150983,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,59.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17501 @@ -151962,8 +150991,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,56.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17502 @@ -151972,8 +150999,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,54.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17543 @@ -151982,8 +151007,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,62.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17607 @@ -151992,8 +151015,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17721 @@ -152002,8 +151023,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,62.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17737 @@ -152012,8 +151031,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,59.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17738 @@ -152022,8 +151039,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,62.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17746 @@ -152031,8 +151046,6 @@ entities: - type: Transform pos: 8.5,66.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17747 @@ -152041,8 +151054,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,62.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17752 @@ -152050,8 +151061,6 @@ entities: - type: Transform pos: 15.5,66.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18796 @@ -152060,8 +151069,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,55.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19467 @@ -152070,8 +151077,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-52.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19468 @@ -152080,8 +151085,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-56.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19469 @@ -152090,8 +151093,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19495 @@ -152100,8 +151101,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-46.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19544 @@ -152110,8 +151109,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19852 @@ -152120,8 +151117,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20227 @@ -152129,8 +151124,6 @@ entities: - type: Transform pos: 76.5,-14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22669 @@ -152139,8 +151132,6 @@ entities: rot: 3.141592653589793 rad pos: 68.5,-10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22683 @@ -152148,8 +151139,6 @@ entities: - type: Transform pos: 59.5,-3.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22685 @@ -152158,8 +151147,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23671 @@ -152168,8 +151155,6 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,-32.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23801 @@ -152178,8 +151163,6 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24035 @@ -152188,8 +151171,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,-20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24893 @@ -152197,8 +151178,6 @@ entities: - type: Transform pos: 77.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25091 @@ -152206,8 +151185,6 @@ entities: - type: Transform pos: 86.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25330 @@ -152215,8 +151192,6 @@ entities: - type: Transform pos: 93.5,-11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25331 @@ -152225,8 +151200,6 @@ entities: rot: 3.141592653589793 rad pos: 93.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25332 @@ -152235,8 +151208,6 @@ entities: rot: 3.141592653589793 rad pos: 104.5,-17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25333 @@ -152245,8 +151216,6 @@ entities: rot: -1.5707963267948966 rad pos: 108.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25335 @@ -152255,8 +151224,6 @@ entities: rot: -1.5707963267948966 rad pos: 115.5,-24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25336 @@ -152265,8 +151232,6 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,-14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25343 @@ -152275,8 +151240,6 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,-9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25362 @@ -152285,8 +151248,6 @@ entities: rot: 1.5707963267948966 rad pos: 82.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25401 @@ -152295,8 +151256,6 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,0.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25402 @@ -152304,8 +151263,6 @@ entities: - type: Transform pos: 82.5,1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25403 @@ -152313,8 +151270,6 @@ entities: - type: Transform pos: 86.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25426 @@ -152322,8 +151277,6 @@ entities: - type: Transform pos: 94.5,-8.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25455 @@ -152332,8 +151285,6 @@ entities: rot: -1.5707963267948966 rad pos: 98.5,-14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25458 @@ -152342,8 +151293,6 @@ entities: rot: -1.5707963267948966 rad pos: 91.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25875 @@ -152351,8 +151300,6 @@ entities: - type: Transform pos: 89.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25900 @@ -152361,8 +151308,6 @@ entities: rot: 3.141592653589793 rad pos: 97.5,-21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25954 @@ -152371,8 +151316,6 @@ entities: rot: 1.5707963267948966 rad pos: 96.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27649 @@ -152381,8 +151324,6 @@ entities: rot: 1.5707963267948966 rad pos: 98.5,35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27659 @@ -152391,8 +151332,6 @@ entities: rot: 1.5707963267948966 rad pos: 86.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27660 @@ -152401,8 +151340,6 @@ entities: rot: 3.141592653589793 rad pos: 87.5,30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27858 @@ -152411,8 +151348,6 @@ entities: rot: -1.5707963267948966 rad pos: 98.5,29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28097 @@ -152420,8 +151355,6 @@ entities: - type: Transform pos: 125.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28116 @@ -152430,8 +151363,6 @@ entities: rot: -1.5707963267948966 rad pos: 124.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28139 @@ -152439,8 +151370,6 @@ entities: - type: Transform pos: 113.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28189 @@ -152448,8 +151377,6 @@ entities: - type: Transform pos: 61.5,17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28196 @@ -152457,8 +151384,6 @@ entities: - type: Transform pos: 55.5,7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28214 @@ -152467,8 +151392,6 @@ entities: rot: 3.141592653589793 rad pos: 97.5,5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28264 @@ -152477,8 +151400,6 @@ entities: rot: -1.5707963267948966 rad pos: 93.5,15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28265 @@ -152486,8 +151407,6 @@ entities: - type: Transform pos: 91.5,20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28268 @@ -152496,8 +151415,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28320 @@ -152506,8 +151423,6 @@ entities: rot: 3.141592653589793 rad pos: 82.5,20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28321 @@ -152516,8 +151431,6 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28322 @@ -152526,8 +151439,6 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28323 @@ -152536,8 +151447,6 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28324 @@ -152546,8 +151455,6 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28325 @@ -152556,8 +151463,6 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28326 @@ -152566,8 +151471,6 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28787 @@ -152576,8 +151479,6 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28792 @@ -152586,8 +151487,6 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28794 @@ -152596,8 +151495,6 @@ entities: rot: 3.141592653589793 rad pos: 77.5,14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28830 @@ -152606,8 +151503,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28831 @@ -152615,8 +151510,6 @@ entities: - type: Transform pos: 71.5,16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28842 @@ -152625,8 +151518,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28879 @@ -152635,8 +151526,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,28.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28880 @@ -152644,8 +151533,6 @@ entities: - type: Transform pos: 64.5,29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28881 @@ -152653,8 +151540,6 @@ entities: - type: Transform pos: 59.5,29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28887 @@ -152663,8 +151548,6 @@ entities: rot: 3.141592653589793 rad pos: 70.5,34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28888 @@ -152672,8 +151555,6 @@ entities: - type: Transform pos: 30.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28891 @@ -152681,8 +151562,6 @@ entities: - type: Transform pos: 46.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29745 @@ -152691,8 +151570,6 @@ entities: rot: 3.141592653589793 rad pos: 94.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29749 @@ -152701,8 +151578,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29751 @@ -152711,8 +151586,6 @@ entities: rot: -1.5707963267948966 rad pos: 96.5,47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29841 @@ -152721,8 +151594,6 @@ entities: rot: 3.141592653589793 rad pos: 107.5,42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29842 @@ -152730,8 +151601,6 @@ entities: - type: Transform pos: 107.5,56.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29843 @@ -152740,8 +151609,6 @@ entities: rot: -1.5707963267948966 rad pos: 102.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29844 @@ -152750,8 +151617,6 @@ entities: rot: 3.141592653589793 rad pos: 110.5,47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29847 @@ -152759,8 +151624,6 @@ entities: - type: Transform pos: 116.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29865 @@ -152769,8 +151632,6 @@ entities: rot: 3.141592653589793 rad pos: 119.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29866 @@ -152779,8 +151640,6 @@ entities: rot: 3.141592653589793 rad pos: 126.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30302 @@ -152789,8 +151648,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,46.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30303 @@ -152799,8 +151656,6 @@ entities: rot: -1.5707963267948966 rad pos: 80.5,50.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 31134 @@ -152809,8 +151664,6 @@ entities: rot: -1.5707963267948966 rad pos: 73.5,54.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 31136 @@ -152818,8 +151671,6 @@ entities: - type: Transform pos: 79.5,57.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 31148 @@ -152828,8 +151679,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,44.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 31164 @@ -152837,8 +151686,6 @@ entities: - type: Transform pos: 59.5,59.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34610 @@ -152847,8 +151694,6 @@ entities: rot: -1.5707963267948966 rad pos: 91.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -152858,8 +151703,6 @@ entities: - type: Transform pos: -10.5,9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 378 @@ -152868,8 +151711,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 387 @@ -152878,8 +151719,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,12.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 388 @@ -152888,8 +151727,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,13.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 389 @@ -152898,8 +151735,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 420 @@ -152908,8 +151743,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 421 @@ -152918,8 +151751,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 422 @@ -152927,8 +151758,6 @@ entities: - type: Transform pos: -6.5,26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 423 @@ -152937,8 +151766,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 530 @@ -152947,8 +151774,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 537 @@ -152956,8 +151781,6 @@ entities: - type: Transform pos: -16.5,35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 538 @@ -152966,8 +151789,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 587 @@ -152976,8 +151797,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 588 @@ -152986,8 +151805,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1544 @@ -152995,8 +151812,6 @@ entities: - type: Transform pos: 4.5,8.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1553 @@ -153005,8 +151820,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1555 @@ -153015,8 +151828,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,13.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1617 @@ -153025,8 +151836,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2075 @@ -153035,8 +151844,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2189 @@ -153044,8 +151851,6 @@ entities: - type: Transform pos: -8.5,-9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2190 @@ -153054,8 +151859,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2194 @@ -153063,8 +151866,6 @@ entities: - type: Transform pos: -12.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2307 @@ -153072,8 +151873,6 @@ entities: - type: Transform pos: -18.5,-11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2549 @@ -153082,8 +151881,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,0.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4463 @@ -153092,8 +151889,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,27.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4469 @@ -153102,8 +151897,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4586 @@ -153111,8 +151904,6 @@ entities: - type: Transform pos: -22.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4668 @@ -153121,8 +151912,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4669 @@ -153131,8 +151920,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4759 @@ -153141,8 +151928,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4760 @@ -153151,8 +151936,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5525 @@ -153161,8 +151944,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,53.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5533 @@ -153170,8 +151951,6 @@ entities: - type: Transform pos: -31.5,53.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5644 @@ -153180,8 +151959,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,52.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5660 @@ -153190,8 +151967,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,50.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5669 @@ -153200,8 +151975,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5721 @@ -153210,8 +151983,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,67.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5722 @@ -153220,8 +151991,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,61.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5753 @@ -153229,8 +151998,6 @@ entities: - type: Transform pos: -7.5,71.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6224 @@ -153238,8 +152005,6 @@ entities: - type: Transform pos: -11.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6229 @@ -153248,8 +152013,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6905 @@ -153258,8 +152021,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6908 @@ -153268,8 +152029,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8137 @@ -153278,8 +152037,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8141 @@ -153288,8 +152045,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8166 @@ -153298,8 +152053,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8263 @@ -153308,8 +152061,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8416 @@ -153317,8 +152068,6 @@ entities: - type: Transform pos: 51.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8453 @@ -153327,8 +152076,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,13.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8475 @@ -153337,8 +152084,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8476 @@ -153347,8 +152092,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8477 @@ -153357,8 +152100,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8478 @@ -153367,8 +152108,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8533 @@ -153376,8 +152115,6 @@ entities: - type: Transform pos: 35.5,18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8541 @@ -153386,8 +152123,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8551 @@ -153395,8 +152130,6 @@ entities: - type: Transform pos: 31.5,30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8553 @@ -153405,8 +152138,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8565 @@ -153414,8 +152145,6 @@ entities: - type: Transform pos: 18.5,18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8567 @@ -153424,8 +152153,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,13.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8571 @@ -153434,8 +152161,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8594 @@ -153444,8 +152169,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8596 @@ -153454,8 +152177,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8598 @@ -153463,8 +152184,6 @@ entities: - type: Transform pos: 32.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8600 @@ -153473,8 +152192,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8613 @@ -153483,8 +152200,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9329 @@ -153493,8 +152208,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,3.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9330 @@ -153503,8 +152216,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9331 @@ -153513,8 +152224,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9332 @@ -153522,8 +152231,6 @@ entities: - type: Transform pos: 13.5,4.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9949 @@ -153532,8 +152239,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9951 @@ -153542,8 +152247,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10081 @@ -153551,8 +152254,6 @@ entities: - type: Transform pos: 1.5,-23.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10082 @@ -153561,8 +152262,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11040 @@ -153571,8 +152270,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11046 @@ -153580,8 +152277,6 @@ entities: - type: Transform pos: -1.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11048 @@ -153590,8 +152285,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-23.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11096 @@ -153599,8 +152292,6 @@ entities: - type: Transform pos: 12.5,-11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11097 @@ -153609,8 +152300,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11108 @@ -153619,8 +152308,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11126 @@ -153628,8 +152315,6 @@ entities: - type: Transform pos: 19.5,-25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11127 @@ -153638,8 +152323,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11130 @@ -153648,8 +152331,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11155 @@ -153658,8 +152339,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12763 @@ -153668,8 +152347,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-59.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12764 @@ -153678,8 +152355,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-46.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12765 @@ -153688,8 +152363,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-55.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13103 @@ -153698,8 +152371,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13107 @@ -153708,8 +152379,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13109 @@ -153718,8 +152387,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13543 @@ -153727,8 +152394,6 @@ entities: - type: Transform pos: -33.5,-25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13559 @@ -153736,8 +152401,6 @@ entities: - type: Transform pos: -33.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13562 @@ -153746,8 +152409,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13563 @@ -153756,8 +152417,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-12.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13565 @@ -153766,8 +152425,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14283 @@ -153775,8 +152432,6 @@ entities: - type: Transform pos: 48.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14299 @@ -153784,8 +152439,6 @@ entities: - type: Transform pos: 56.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14314 @@ -153794,8 +152447,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14315 @@ -153804,8 +152455,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14317 @@ -153814,8 +152463,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-23.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14329 @@ -153824,8 +152471,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14331 @@ -153834,8 +152479,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14343 @@ -153843,8 +152486,6 @@ entities: - type: Transform pos: 44.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14345 @@ -153853,8 +152494,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14361 @@ -153863,8 +152502,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14362 @@ -153873,8 +152510,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14453 @@ -153883,8 +152518,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14487 @@ -153892,8 +152525,6 @@ entities: - type: Transform pos: 30.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14488 @@ -153902,8 +152533,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14498 @@ -153912,8 +152541,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14523 @@ -153921,8 +152548,6 @@ entities: - type: Transform pos: 42.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14525 @@ -153930,8 +152555,6 @@ entities: - type: Transform pos: 32.5,-16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14527 @@ -153940,8 +152563,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-17.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14544 @@ -153950,8 +152571,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14564 @@ -153960,8 +152579,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-4.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14565 @@ -153970,8 +152587,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-7.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14585 @@ -153979,8 +152594,6 @@ entities: - type: Transform pos: 15.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14591 @@ -153988,8 +152601,6 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16674 @@ -153997,8 +152608,6 @@ entities: - type: Transform pos: 50.5,43.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16675 @@ -154007,8 +152616,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16753 @@ -154017,8 +152624,6 @@ entities: rot: 3.141592653589793 rad pos: 74.5,42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17290 @@ -154027,8 +152632,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,64.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17360 @@ -154037,8 +152640,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,48.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17389 @@ -154047,8 +152648,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17390 @@ -154056,8 +152655,6 @@ entities: - type: Transform pos: 3.5,37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17391 @@ -154066,8 +152663,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,43.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17394 @@ -154076,8 +152671,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,52.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17395 @@ -154086,8 +152679,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,53.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17396 @@ -154096,8 +152687,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,53.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17397 @@ -154106,8 +152695,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,57.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17398 @@ -154116,8 +152703,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,48.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17399 @@ -154126,8 +152711,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17405 @@ -154136,8 +152719,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,48.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17448 @@ -154146,8 +152727,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,44.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17449 @@ -154155,8 +152734,6 @@ entities: - type: Transform pos: 33.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17450 @@ -154164,8 +152741,6 @@ entities: - type: Transform pos: 36.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17458 @@ -154173,8 +152748,6 @@ entities: - type: Transform pos: 29.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17459 @@ -154183,8 +152756,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17461 @@ -154193,8 +152764,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,44.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17467 @@ -154203,8 +152772,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,41.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17474 @@ -154213,8 +152780,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,58.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17499 @@ -154223,8 +152788,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,57.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17500 @@ -154233,8 +152796,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,55.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17544 @@ -154242,8 +152803,6 @@ entities: - type: Transform pos: 11.5,62.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17608 @@ -154252,8 +152811,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17720 @@ -154262,8 +152819,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,60.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17735 @@ -154272,8 +152827,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,62.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17736 @@ -154282,8 +152835,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,57.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17745 @@ -154291,8 +152842,6 @@ entities: - type: Transform pos: 6.5,66.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17748 @@ -154301,8 +152850,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,60.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17753 @@ -154310,8 +152857,6 @@ entities: - type: Transform pos: 13.5,66.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19529 @@ -154320,8 +152865,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-56.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19530 @@ -154330,8 +152873,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19531 @@ -154340,8 +152881,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-43.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19533 @@ -154350,8 +152889,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-43.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19545 @@ -154360,8 +152897,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19855 @@ -154370,8 +152905,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-47.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22670 @@ -154380,8 +152913,6 @@ entities: rot: -1.5707963267948966 rad pos: 68.5,-11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22684 @@ -154389,8 +152920,6 @@ entities: - type: Transform pos: 61.5,-3.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22686 @@ -154398,8 +152927,6 @@ entities: - type: Transform pos: 60.5,-10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23661 @@ -154408,8 +152935,6 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-32.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23802 @@ -154418,8 +152943,6 @@ entities: rot: -1.5707963267948966 rad pos: 75.5,-25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24027 @@ -154428,8 +152951,6 @@ entities: rot: 3.141592653589793 rad pos: 64.5,-20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24892 @@ -154438,8 +152959,6 @@ entities: rot: -1.5707963267948966 rad pos: 76.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25342 @@ -154447,8 +152966,6 @@ entities: - type: Transform pos: 72.5,-10.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25350 @@ -154457,8 +152974,6 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,-12.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25361 @@ -154467,8 +152982,6 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25380 @@ -154477,8 +152990,6 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-4.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25384 @@ -154486,8 +152997,6 @@ entities: - type: Transform pos: 77.5,-0.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25404 @@ -154495,8 +153004,6 @@ entities: - type: Transform pos: 86.5,-3.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25415 @@ -154505,8 +153012,6 @@ entities: rot: 3.141592653589793 rad pos: 88.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25427 @@ -154515,8 +153020,6 @@ entities: rot: 3.141592653589793 rad pos: 94.5,-2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25456 @@ -154525,8 +153028,6 @@ entities: rot: 3.141592653589793 rad pos: 98.5,-12.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25459 @@ -154535,8 +153036,6 @@ entities: rot: -1.5707963267948966 rad pos: 91.5,-3.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25498 @@ -154545,8 +153044,6 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,-11.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25505 @@ -154555,8 +153052,6 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-13.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25876 @@ -154564,8 +153059,6 @@ entities: - type: Transform pos: 91.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25877 @@ -154573,8 +153066,6 @@ entities: - type: Transform pos: 93.5,2.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25897 @@ -154582,8 +153073,6 @@ entities: - type: Transform pos: 104.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25898 @@ -154592,8 +153081,6 @@ entities: rot: -1.5707963267948966 rad pos: 112.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25899 @@ -154602,8 +153089,6 @@ entities: rot: 1.5707963267948966 rad pos: 97.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27676 @@ -154612,8 +153097,6 @@ entities: rot: -1.5707963267948966 rad pos: 96.5,35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27677 @@ -154621,8 +153104,6 @@ entities: - type: Transform pos: 88.5,36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27679 @@ -154631,8 +153112,6 @@ entities: rot: 3.141592653589793 rad pos: 88.5,30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28060 @@ -154640,8 +153119,6 @@ entities: - type: Transform pos: 95.5,5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28190 @@ -154649,8 +153126,6 @@ entities: - type: Transform pos: 66.5,18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28197 @@ -154659,8 +153134,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28198 @@ -154669,8 +153142,6 @@ entities: rot: 3.141592653589793 rad pos: 55.5,3.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28266 @@ -154678,8 +153149,6 @@ entities: - type: Transform pos: 92.5,20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28267 @@ -154688,8 +153157,6 @@ entities: rot: -1.5707963267948966 rad pos: 93.5,13.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28269 @@ -154698,8 +153165,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28327 @@ -154708,8 +153173,6 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28328 @@ -154718,8 +153181,6 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28329 @@ -154728,8 +153189,6 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28330 @@ -154738,8 +153197,6 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28331 @@ -154748,8 +153205,6 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,22.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28332 @@ -154758,8 +153213,6 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,25.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28333 @@ -154767,8 +153220,6 @@ entities: - type: Transform pos: 82.5,23.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28786 @@ -154777,8 +153228,6 @@ entities: rot: 1.5707963267948966 rad pos: 82.5,32.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28793 @@ -154787,8 +153236,6 @@ entities: rot: 3.141592653589793 rad pos: 77.5,35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28795 @@ -154796,8 +153243,6 @@ entities: - type: Transform pos: 87.5,14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28843 @@ -154806,8 +153251,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28875 @@ -154816,8 +153259,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28876 @@ -154826,8 +153267,6 @@ entities: rot: 3.141592653589793 rad pos: 64.5,31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28877 @@ -154835,8 +153274,6 @@ entities: - type: Transform pos: 69.5,34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28878 @@ -154845,8 +153282,6 @@ entities: rot: 3.141592653589793 rad pos: 69.5,29.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28889 @@ -154855,8 +153290,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28890 @@ -154865,8 +153298,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29280 @@ -154875,8 +153306,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,9.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29746 @@ -154884,8 +153313,6 @@ entities: - type: Transform pos: 98.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29748 @@ -154894,8 +153321,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29750 @@ -154903,8 +153328,6 @@ entities: - type: Transform pos: 59.5,39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29752 @@ -154913,8 +153336,6 @@ entities: rot: 1.5707963267948966 rad pos: 96.5,51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29838 @@ -154923,8 +153344,6 @@ entities: rot: 1.5707963267948966 rad pos: 99.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29839 @@ -154932,8 +153351,6 @@ entities: - type: Transform pos: 100.5,56.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29840 @@ -154942,8 +153359,6 @@ entities: rot: 3.141592653589793 rad pos: 100.5,42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29845 @@ -154951,8 +153366,6 @@ entities: - type: Transform pos: 110.5,51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29846 @@ -154961,8 +153374,6 @@ entities: rot: 3.141592653589793 rad pos: 112.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29863 @@ -154970,8 +153381,6 @@ entities: - type: Transform pos: 119.5,53.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29864 @@ -154979,8 +153388,6 @@ entities: - type: Transform pos: 126.5,53.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30315 @@ -154988,8 +153395,6 @@ entities: - type: Transform pos: 80.5,49.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30316 @@ -154998,8 +153403,6 @@ entities: rot: -1.5707963267948966 rad pos: 81.5,45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 31132 @@ -155007,8 +153410,6 @@ entities: - type: Transform pos: 80.5,57.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 31135 @@ -155017,8 +153418,6 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,46.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 31165 @@ -155026,8 +153425,6 @@ entities: - type: Transform pos: 65.5,59.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 31166 @@ -155036,8 +153433,6 @@ entities: rot: 3.141592653589793 rad pos: 58.5,46.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -155047,8 +153442,6 @@ entities: - type: Transform pos: 97.5,-36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23842 @@ -155057,8 +153450,6 @@ entities: rot: 3.141592653589793 rad pos: 101.5,-36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GeigerCounter @@ -161990,8 +160381,6 @@ entities: rot: 1.5707963267948966 rad pos: 110.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 23936 @@ -162000,8 +160389,6 @@ entities: rot: -1.5707963267948966 rad pos: 106.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - type: AtmosPipeColor color: '#FF1212FF' - proto: HighSecArmoryLocked @@ -162646,6 +161033,13 @@ entities: - type: Transform pos: 52.65521,42.350925 parent: 13329 +- proto: Jukebox + entities: + - uid: 32340 + components: + - type: Transform + pos: -21.5,21.5 + parent: 13329 - proto: KitchenKnife entities: - uid: 4792 @@ -166518,134 +164912,96 @@ entities: - type: Transform pos: 29.5,48.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13703 components: - type: Transform pos: -45.5,-5.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15423 components: - type: Transform pos: 57.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15430 components: - type: Transform pos: 59.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15431 components: - type: Transform pos: 60.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15432 components: - type: Transform pos: 61.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23806 components: - type: Transform pos: 71.5,-42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26001 components: - type: Transform pos: 73.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26002 components: - type: Transform pos: 72.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26003 components: - type: Transform pos: 71.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26004 components: - type: Transform pos: 70.5,-19.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31760 components: - type: Transform pos: 12.5,15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31784 components: - type: Transform pos: -46.5,-3.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32748 components: - type: Transform pos: 106.5,36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 33684 components: - type: Transform pos: 28.5,60.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 33685 components: - type: Transform pos: 28.5,59.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 33967 components: - type: Transform pos: 37.5,56.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 34455 components: - type: Transform pos: 106.5,-45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 35403 components: - type: Transform pos: 50.5,36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: NitrogenTankFilled entities: - uid: 3730 @@ -166660,15 +165016,11 @@ entities: - type: Transform pos: 59.5,-36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25993 components: - type: Transform pos: 73.5,-18.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: NitrousOxideTankFilled entities: - uid: 18617 @@ -166758,190 +165110,136 @@ entities: - type: Transform pos: -37.5,66.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 6770 components: - type: Transform pos: -3.5,75.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13031 components: - type: Transform pos: -43.5,-54.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13602 components: - type: Transform pos: 28.5,48.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13645 components: - type: Transform pos: -21.5,-30.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 13704 components: - type: Transform pos: -45.5,-6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15422 components: - type: Transform pos: 57.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15427 components: - type: Transform pos: 59.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15428 components: - type: Transform pos: 60.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15429 components: - type: Transform pos: 61.5,-39.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23807 components: - type: Transform pos: 75.5,-42.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25997 components: - type: Transform pos: 73.5,-20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25998 components: - type: Transform pos: 72.5,-20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25999 components: - type: Transform pos: 71.5,-20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26000 components: - type: Transform pos: 70.5,-20.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26523 components: - type: Transform pos: 74.5,-4.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26698 components: - type: Transform pos: 91.5,-14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 26909 components: - type: Transform pos: 77.5,3.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 31422 components: - type: Transform pos: 92.5,72.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32311 components: - type: Transform pos: 104.5,-53.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32399 components: - type: Transform pos: 38.5,-6.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32543 components: - type: Transform pos: 106.5,14.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32749 components: - type: Transform pos: 105.5,36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32772 components: - type: Transform pos: 116.5,32.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 33969 components: - type: Transform pos: 36.5,56.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 34456 components: - type: Transform pos: 107.5,-45.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 35402 components: - type: Transform pos: 49.5,36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: OxygenTankFilled entities: - uid: 28161 @@ -167698,22 +165996,16 @@ entities: - type: Transform pos: 59.5,-35.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23720 components: - type: Transform pos: 91.5,-15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23811 components: - type: Transform pos: 93.5,-34.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 22716 @@ -167955,6 +166247,11 @@ entities: - type: Transform pos: 110.5,30.5 parent: 13329 + - uid: 26763 + components: + - type: Transform + pos: 40.5,48.5 + parent: 13329 - proto: PortableGeneratorPacman entities: - uid: 13110 @@ -174601,7 +172898,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -188694,48 +186990,64 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,11.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,9.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 12170 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-14.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 14797 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-35.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 29165 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,18.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 29166 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,20.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 34394 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-52.5 parent: 13329 + - type: SpamEmitSound + enabled: False - uid: 34395 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-53.5 parent: 13329 + - type: SpamEmitSound + enabled: False - proto: SpawnMechRipley entities: - uid: 9642 @@ -189147,11 +187459,6 @@ entities: - type: Transform pos: -34.5,-8.5 parent: 13329 - - uid: 13248 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 13329 - proto: SpawnPointLawyer entities: - uid: 34617 @@ -190454,127 +188761,91 @@ entities: - type: Transform pos: 57.5,-40.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15433 components: - type: Transform pos: 59.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15434 components: - type: Transform pos: 60.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 15435 components: - type: Transform pos: 61.5,-37.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 19922 components: - type: Transform pos: 43.5,-51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 19923 components: - type: Transform pos: 42.5,-51.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23827 components: - type: Transform pos: 77.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23828 components: - type: Transform pos: 76.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23829 components: - type: Transform pos: 74.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23902 components: - type: Transform pos: 78.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23903 components: - type: Transform pos: 76.5,-31.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 23904 components: - type: Transform pos: 75.5,-33.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25994 components: - type: Transform pos: 73.5,-21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25995 components: - type: Transform pos: 72.5,-21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 25996 components: - type: Transform pos: 71.5,-21.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 28157 components: - type: Transform pos: 121.5,-15.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32540 components: - type: Transform pos: 107.5,16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - uid: 32541 components: - type: Transform pos: 106.5,16.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: Stunbaton entities: - uid: 10442 @@ -196996,8 +195267,6 @@ entities: rot: 1.5707963267948966 rad pos: 99.5,-36.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: TegCirculator entities: - uid: 24278 @@ -222374,8 +220643,6 @@ entities: - type: Transform pos: 93.5,-38.5 parent: 13329 - - type: AtmosDevice - joinedGrid: 13329 - proto: WeaponCapacitorRecharger entities: - uid: 2216 @@ -222794,6 +221061,16 @@ entities: - type: Transform pos: -26.5,74.5 parent: 13329 + - uid: 32338 + components: + - type: Transform + pos: -0.5,66.5 + parent: 13329 + - uid: 32339 + components: + - type: Transform + pos: 39.5,41.5 + parent: 13329 - uid: 32394 components: - type: Transform diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 1b0440c14c..44fe035892 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -8232,8 +8232,6 @@ entities: - 16117 - 14160 - 14231 - - type: AtmosDevice - joinedGrid: 5350 - uid: 15053 components: - type: Transform @@ -8244,8 +8242,6 @@ entities: devices: - 15261 - 15615 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16580 components: - type: Transform @@ -8259,8 +8255,6 @@ entities: - 1392 - 10185 - 10165 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16587 components: - type: Transform @@ -8275,8 +8269,6 @@ entities: - 769 - 16611 - 771 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16612 components: - type: Transform @@ -8293,8 +8285,6 @@ entities: - 747 - 755 - 24213 - - type: AtmosDevice - joinedGrid: 5350 - uid: 23905 components: - type: Transform @@ -8310,8 +8300,6 @@ entities: - 23385 - 23920 - 23921 - - type: AtmosDevice - joinedGrid: 5350 - uid: 23906 components: - type: Transform @@ -8323,8 +8311,6 @@ entities: - 23381 - 23909 - 23380 - - type: AtmosDevice - joinedGrid: 5350 - uid: 23907 components: - type: Transform @@ -8336,8 +8322,6 @@ entities: - 11834 - 23910 - 12033 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24320 components: - type: Transform @@ -8349,8 +8333,6 @@ entities: - 1581 - 24271 - 1584 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24321 components: - type: Transform @@ -8362,8 +8344,6 @@ entities: - 1611 - 24322 - 1610 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24324 components: - type: Transform @@ -8375,8 +8355,6 @@ entities: - 24323 - 12111 - 12116 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24325 components: - type: Transform @@ -8396,8 +8374,6 @@ entities: - 2367 - 12126 - 21107 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24331 components: - type: Transform @@ -8418,8 +8394,6 @@ entities: - 5673 - 12125 - 12124 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24332 components: - type: Transform @@ -8437,8 +8411,6 @@ entities: - 24335 - 2077 - 24334 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24337 components: - type: Transform @@ -8459,8 +8431,6 @@ entities: - 14286 - 3383 - 2075 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24340 components: - type: Transform @@ -8482,8 +8452,6 @@ entities: - 10801 - 7129 - 7130 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24343 components: - type: Transform @@ -8494,8 +8462,6 @@ entities: - 10789 - 10788 - 24344 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24345 components: - type: Transform @@ -8507,8 +8473,6 @@ entities: - 4402 - 4403 - 24346 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24347 components: - type: Transform @@ -8520,8 +8484,6 @@ entities: - 24348 - 9321 - 9335 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24349 components: - type: Transform @@ -8538,8 +8500,6 @@ entities: - 3501 - 4330 - 4329 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24352 components: - type: Transform @@ -8556,8 +8516,6 @@ entities: - 24353 - 4349 - 4348 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24355 components: - type: Transform @@ -8577,8 +8535,6 @@ entities: - 22260 - 20168 - 2063 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24359 components: - type: Transform @@ -8599,8 +8555,6 @@ entities: - 10797 - 5015 - 5017 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24361 components: - type: Transform @@ -8622,8 +8576,6 @@ entities: - 5572 - 10795 - 10796 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24364 components: - type: Transform @@ -8642,8 +8594,6 @@ entities: - 5503 - 5559 - 24368 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24374 components: - type: Transform @@ -8657,8 +8607,6 @@ entities: - 5808 - 5562 - 5536 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24377 components: - type: Transform @@ -8677,8 +8625,6 @@ entities: - 5577 - 10792 - 10793 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24380 components: - type: Transform @@ -8691,8 +8637,6 @@ entities: - 18336 - 5838 - 5839 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24382 components: - type: Transform @@ -8703,8 +8647,6 @@ entities: devices: - 18358 - 24383 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24384 components: - type: Transform @@ -8716,8 +8658,6 @@ entities: - 24385 - 17686 - 17674 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24386 components: - type: Transform @@ -8731,8 +8671,6 @@ entities: - 3543 - 4346 - 4347 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24389 components: - type: Transform @@ -8748,8 +8686,6 @@ entities: - 4143 - 4052 - 3835 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24392 components: - type: Transform @@ -8760,8 +8696,6 @@ entities: - 24393 - 4393 - 4392 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24394 components: - type: Transform @@ -8773,8 +8707,6 @@ entities: - 4328 - 24395 - 4326 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24396 components: - type: Transform @@ -8785,8 +8717,6 @@ entities: devices: - 24397 - 9491 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24398 components: - type: Transform @@ -8805,8 +8735,6 @@ entities: - 7127 - 9337 - 9338 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24401 components: - type: Transform @@ -8817,8 +8745,6 @@ entities: - 9223 - 9225 - 24402 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24403 components: - type: Transform @@ -8834,8 +8760,6 @@ entities: - 7078 - 7103 - 7102 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24406 components: - type: Transform @@ -8848,8 +8772,6 @@ entities: - 7088 - 6482 - 6481 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24408 components: - type: Transform @@ -8867,8 +8789,6 @@ entities: - 7093 - 4244 - 7092 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24411 components: - type: Transform @@ -8883,8 +8803,6 @@ entities: - 7086 - 7803 - 6471 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24413 components: - type: Transform @@ -8896,8 +8814,6 @@ entities: - 7089 - 24414 - 6483 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24415 components: - type: Transform @@ -8909,8 +8825,6 @@ entities: - 24417 - 7090 - 7083 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24418 components: - type: Transform @@ -8923,8 +8837,6 @@ entities: - 7108 - 7085 - 7109 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24424 components: - type: Transform @@ -8937,8 +8849,6 @@ entities: - 7105 - 7104 - 7107 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24431 components: - type: Transform @@ -8949,8 +8859,6 @@ entities: - 6662 - 24432 - 6661 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24433 components: - type: Transform @@ -8962,8 +8870,6 @@ entities: - 7725 - 7724 - 24434 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24436 components: - type: Transform @@ -8974,8 +8880,6 @@ entities: - 7098 - 7101 - 24435 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24437 components: - type: Transform @@ -8987,8 +8891,6 @@ entities: - 24439 - 9939 - 9940 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24438 components: - type: Transform @@ -9000,8 +8902,6 @@ entities: - 7079 - 24440 - 7111 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24442 components: - type: Transform @@ -9012,8 +8912,6 @@ entities: - 7116 - 7112 - 24441 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24443 components: - type: Transform @@ -9025,8 +8923,6 @@ entities: - 7115 - 7113 - 24444 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24446 components: - type: Transform @@ -9044,8 +8940,6 @@ entities: - 2125 - 12105 - 12104 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24449 components: - type: Transform @@ -9063,8 +8957,6 @@ entities: - 2122 - 12102 - 12103 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24451 components: - type: Transform @@ -9076,8 +8968,6 @@ entities: - 24452 - 793 - 794 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24453 components: - type: Transform @@ -9088,8 +8978,6 @@ entities: - 827 - 24454 - 826 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24456 components: - type: Transform @@ -9100,8 +8988,6 @@ entities: - 813 - 814 - 24455 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24458 components: - type: Transform @@ -9121,8 +9007,6 @@ entities: - 12120 - 23740 - 23736 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24461 components: - type: Transform @@ -9138,8 +9022,6 @@ entities: - 23444 - 12143 - 12142 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24464 components: - type: Transform @@ -9170,8 +9052,6 @@ entities: - 2712 - 2717 - 2716 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24468 components: - type: Transform @@ -9190,8 +9070,6 @@ entities: - 2408 - 2642 - 2640 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24471 components: - type: Transform @@ -9209,8 +9087,6 @@ entities: - 2353 - 2658 - 2657 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24481 components: - type: Transform @@ -9228,8 +9104,6 @@ entities: - 12141 - 12139 - 4972 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24484 components: - type: Transform @@ -9240,8 +9114,6 @@ entities: devices: - 2620 - 3007 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24486 components: - type: Transform @@ -9252,8 +9124,6 @@ entities: - 2676 - 2698 - 24487 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24489 components: - type: Transform @@ -9264,8 +9134,6 @@ entities: - 2708 - 2707 - 24488 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24490 components: - type: Transform @@ -9281,8 +9149,6 @@ entities: - 24492 - 7341 - 7342 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24493 components: - type: Transform @@ -9293,8 +9159,6 @@ entities: devices: - 24494 - 12060 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24495 components: - type: Transform @@ -9305,8 +9169,6 @@ entities: - 12585 - 12586 - 24496 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24506 components: - type: Transform @@ -9318,8 +9180,6 @@ entities: - 24507 - 19002 - 19003 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24510 components: - type: Transform @@ -9336,8 +9196,6 @@ entities: - 24512 - 12049 - 12032 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24515 components: - type: Transform @@ -9346,8 +9204,6 @@ entities: - type: DeviceList devices: - 24516 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24517 components: - type: Transform @@ -9357,8 +9213,6 @@ entities: devices: - 11057 - 24514 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24520 components: - type: Transform @@ -9368,8 +9222,6 @@ entities: - type: DeviceList devices: - 24521 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24524 components: - type: Transform @@ -9381,8 +9233,6 @@ entities: - 24526 - 20992 - 20778 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24528 components: - type: Transform @@ -9394,8 +9244,6 @@ entities: - 21003 - 20780 - 24527 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24529 components: - type: Transform @@ -9407,8 +9255,6 @@ entities: - 24532 - 21098 - 20858 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24530 components: - type: Transform @@ -9420,8 +9266,6 @@ entities: - 24531 - 21099 - 20781 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24537 components: - type: Transform @@ -9439,8 +9283,6 @@ entities: - 21075 - 20821 - 19296 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24538 components: - type: Transform @@ -9455,8 +9297,6 @@ entities: - 20782 - 20741 - 21021 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24541 components: - type: Transform @@ -9467,8 +9307,6 @@ entities: - 24542 - 20783 - 21020 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24543 components: - type: Transform @@ -9482,8 +9320,6 @@ entities: - 19496 - 21100 - 21097 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24546 components: - type: Transform @@ -9496,8 +9332,6 @@ entities: - 24547 - 21027 - 20820 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24548 components: - type: Transform @@ -9508,8 +9342,6 @@ entities: - 24549 - 20819 - 22189 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24550 components: - type: Transform @@ -9520,8 +9352,6 @@ entities: - 24551 - 21068 - 20887 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24554 components: - type: Transform @@ -9543,8 +9373,6 @@ entities: - 20659 - 22023 - 22022 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24557 components: - type: Transform @@ -9562,8 +9390,6 @@ entities: - 19264 - 22020 - 22021 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24560 components: - type: Transform @@ -9584,8 +9410,6 @@ entities: - 26488 - 26489 - 22082 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24563 components: - type: Transform @@ -9596,8 +9420,6 @@ entities: - 24562 - 21608 - 21607 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24565 components: - type: Transform @@ -9608,8 +9430,6 @@ entities: - 21564 - 24564 - 21639 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24566 components: - type: Transform @@ -9621,8 +9441,6 @@ entities: - 24567 - 21640 - 21563 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24569 components: - type: Transform @@ -9637,8 +9455,6 @@ entities: - 15344 - 15333 - 15332 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24575 components: - type: Transform @@ -9654,8 +9470,6 @@ entities: - 26541 - 26536 - 5662 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24578 components: - type: Transform @@ -9670,8 +9484,6 @@ entities: - 14926 - 14740 - 14741 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24583 components: - type: Transform @@ -9683,8 +9495,6 @@ entities: - 24582 - 14739 - 14733 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24584 components: - type: Transform @@ -9697,8 +9507,6 @@ entities: - 14714 - 14728 - 24585 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24587 components: - type: Transform @@ -9710,8 +9518,6 @@ entities: - 14729 - 24586 - 14623 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24590 components: - type: Transform @@ -9731,8 +9537,6 @@ entities: - 15318 - 2687 - 14419 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24591 components: - type: Transform @@ -9744,8 +9548,6 @@ entities: - 24592 - 15334 - 15316 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24594 components: - type: Transform @@ -9759,8 +9561,6 @@ entities: - 15193 - 15541 - 15529 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24596 components: - type: Transform @@ -9772,8 +9572,6 @@ entities: - 15263 - 15232 - 24599 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24597 components: - type: Transform @@ -9785,8 +9583,6 @@ entities: - 24598 - 15233 - 15262 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24600 components: - type: Transform @@ -9808,8 +9604,6 @@ entities: - 15306 - 15264 - 15305 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24602 components: - type: Transform @@ -9820,8 +9614,6 @@ entities: - 16394 - 24603 - 16420 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24607 components: - type: Transform @@ -9837,8 +9629,6 @@ entities: - 16396 - 16400 - 16397 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25314 components: - type: Transform @@ -9848,8 +9638,6 @@ entities: devices: - 26237 - 25560 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26241 components: - type: Transform @@ -9861,8 +9649,6 @@ entities: - 26240 - 25923 - 25916 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26242 components: - type: Transform @@ -9873,8 +9659,6 @@ entities: - 25920 - 26239 - 25918 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26243 components: - type: Transform @@ -9887,8 +9671,6 @@ entities: - 25917 - 25921 - 25922 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26486 components: - type: Transform @@ -9908,8 +9690,6 @@ entities: - 5667 - 10800 - 10799 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26579 components: - type: Transform @@ -9923,8 +9703,6 @@ entities: - 19501 - 19500 - 19499 - - type: AtmosDevice - joinedGrid: 5350 - proto: AirCanister entities: - uid: 2431 @@ -9932,92 +9710,66 @@ entities: - type: Transform pos: 45.5,0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10663 components: - type: Transform pos: -36.5,34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11595 components: - type: Transform pos: 60.5,-30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 13468 components: - type: Transform pos: 24.5,46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16744 components: - type: Transform pos: -49.5,-36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 18497 components: - type: Transform pos: -55.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22588 components: - type: Transform pos: 7.5,-64.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22860 components: - type: Transform pos: -55.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24145 components: - type: Transform pos: 40.5,31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24682 components: - type: Transform pos: 45.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24708 components: - type: Transform pos: 51.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24709 components: - type: Transform pos: 51.5,-12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26480 components: - type: Transform pos: 110.5,2.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: Airlock entities: - uid: 7742 @@ -14519,8 +14271,6 @@ entities: - type: Transform pos: -23.5,-23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: Basketball entities: - uid: 7009 @@ -15147,37 +14897,51 @@ entities: - type: Transform pos: -9.5,57.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 16831 components: - type: Transform pos: -51.5,-23.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 16832 components: - type: Transform pos: -50.5,-23.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 22046 components: - type: Transform pos: -9.5,-60.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 22606 components: - type: Transform pos: 2.5,-64.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 24288 components: - type: Transform pos: 23.5,0.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 24760 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,32.5 parent: 5350 + - type: SpamEmitSound + enabled: False - proto: Blunt entities: - uid: 16507 @@ -15185,7 +14949,7 @@ entities: - type: Transform pos: -42.538452,-53.54715 parent: 5350 -- proto: BodyBag_Folded +- proto: BodyBagFolded entities: - uid: 23085 components: @@ -15243,22 +15007,18 @@ entities: - type: Transform pos: -34.485977,-4.4922357 parent: 5350 -- proto: BookDetective +- proto: BookRandomStory entities: - uid: 23095 components: - type: Transform pos: -27.456236,38.65242 parent: 5350 -- proto: BookEscalation - entities: - uid: 24686 components: - type: Transform pos: -34.513412,-6.2170644 parent: 5350 -- proto: BookEscalationSecurity - entities: - uid: 24687 components: - type: Transform @@ -15839,13 +15599,6 @@ entities: parent: 5350 - proto: BoxShotgunIncendiary entities: - - uid: 3116 - components: - - type: Transform - pos: 21.56827,-12.3393 - parent: 5350 - - type: BallisticAmmoProvider - unspawnedCount: 12 - uid: 10381 components: - type: Transform @@ -16034,6 +15787,27 @@ entities: - type: Transform pos: 33.661728,-15.593412 parent: 5350 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 6260 + components: + - type: Transform + pos: -9.5,32.5 + parent: 5350 +- proto: ButtonFrameExit + entities: + - uid: 14379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 5350 + - uid: 24781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 5350 - proto: CableApcExtension entities: - uid: 842 @@ -50436,29 +50210,21 @@ entities: - type: Transform pos: 69.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11815 components: - type: Transform pos: 48.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22335 components: - type: Transform pos: 24.5,-48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22336 components: - type: Transform pos: 25.5,-48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: Carpet entities: - uid: 1123 @@ -57857,6 +57623,11 @@ entities: - type: Transform pos: 0.5,-0.5 parent: 5350 + - uid: 1509 + components: + - type: Transform + pos: -33.5,38.5 + parent: 5350 - uid: 2089 components: - type: Transform @@ -58222,6 +57993,16 @@ entities: - 0 - 0 - 0 + - uid: 10421 + components: + - type: Transform + pos: 21.5,32.5 + parent: 5350 + - uid: 10497 + components: + - type: Transform + pos: 21.5,31.5 + parent: 5350 - uid: 11372 components: - type: Transform @@ -58508,29 +58289,6 @@ entities: - 0 - 0 - 0 - - uid: 23098 - components: - - type: Transform - pos: -31.5,40.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 23929 components: - type: Transform @@ -58541,6 +58299,58 @@ entities: - type: Transform pos: 59.5,12.5 parent: 5350 + - uid: 24232 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 5350 + - uid: 24646 + components: + - type: Transform + pos: -33.5,39.5 + parent: 5350 + - uid: 24753 + components: + - type: Transform + pos: 19.5,-53.5 + parent: 5350 + - uid: 24775 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 5350 + - uid: 24777 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 5350 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 2686 + components: + - type: Transform + pos: 21.5,33.5 + parent: 5350 + - uid: 6259 + components: + - type: Transform + pos: -33.5,37.5 + parent: 5350 + - uid: 24231 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 5350 + - uid: 24625 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 5350 + - uid: 24776 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 5350 - proto: ClosetFireFilled entities: - uid: 1274 @@ -60643,18 +60453,6 @@ entities: - type: Transform pos: 34.50193,-3.4687605 parent: 5350 -- proto: ClothingHeadHatHairflower - entities: - - uid: 1950 - components: - - type: Transform - pos: 6.785658,-13.56077 - parent: 5350 - - uid: 22074 - components: - - type: Transform - pos: -27.485363,-69.41039 - parent: 5350 - proto: ClothingHeadHatHetmanHat entities: - uid: 14102 @@ -60759,13 +60557,6 @@ entities: - type: Transform pos: 35.36405,-25.43441 parent: 5350 -- proto: ClothingHeadHatWarden - entities: - - uid: 1509 - components: - - type: Transform - pos: -1.5043283,29.792747 - parent: 5350 - proto: ClothingHeadHatWelding entities: - uid: 22292 @@ -60819,6 +60610,11 @@ entities: - type: Transform pos: -5.3470535,40.47909 parent: 5350 + - uid: 22969 + components: + - type: Transform + pos: -11.516786,-53.52606 + parent: 5350 - proto: ClothingHeadHelmetEVA entities: - uid: 7303 @@ -60848,13 +60644,6 @@ entities: - type: Transform pos: -1.3440819,37.75625 parent: 5350 -- proto: ClothingHeadHelmetScaf - entities: - - uid: 22969 - components: - - type: Transform - pos: -11.516786,-53.52606 - parent: 5350 - proto: ClothingHeadHelmetTemplar entities: - uid: 6163 @@ -61150,6 +60939,11 @@ entities: parent: 5350 - proto: ClothingOuterArmorBasic entities: + - uid: 22968 + components: + - type: Transform + pos: -11.485536,-54.27606 + parent: 5350 - uid: 26620 components: - type: Transform @@ -61211,13 +61005,6 @@ entities: - type: Transform pos: -1.6097069,37.740623 parent: 5350 -- proto: ClothingOuterArmorScaf - entities: - - uid: 22968 - components: - - type: Transform - pos: -11.485536,-54.27606 - parent: 5350 - proto: ClothingOuterBioScientist entities: - uid: 22530 @@ -63378,6 +63165,9 @@ entities: - type: Transform pos: 108.5,-7.5 parent: 5350 + - type: SingletonDeviceNetServer + active: False + available: False - proto: Crowbar entities: - uid: 10811 @@ -63492,15 +63282,11 @@ entities: - type: Transform pos: -26.5,-25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 14624 components: - type: Transform pos: -28.5,-25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: CryoxadoneBeakerSmall entities: - uid: 23499 @@ -71472,8 +71258,6 @@ entities: - 14675 - 14231 - 11136 - - type: AtmosDevice - joinedGrid: 5350 - uid: 15374 components: - type: Transform @@ -71491,8 +71275,6 @@ entities: - 14419 - 16220 - 24601 - - type: AtmosDevice - joinedGrid: 5350 - uid: 15635 components: - type: Transform @@ -71510,8 +71292,6 @@ entities: - 14419 - 16220 - 24601 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16586 components: - type: Transform @@ -71524,8 +71304,6 @@ entities: - 4085 - 1393 - 1392 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16614 components: - type: Transform @@ -71539,8 +71317,6 @@ entities: - 22826 - 22835 - 24213 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16615 components: - type: Transform @@ -71555,8 +71331,6 @@ entities: - 22826 - 22835 - 24213 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24327 components: - type: Transform @@ -71573,8 +71347,6 @@ entities: - 2369 - 2368 - 2367 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24328 components: - type: Transform @@ -71596,8 +71368,6 @@ entities: - 26531 - 26533 - 26532 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24329 components: - type: Transform @@ -71617,8 +71387,6 @@ entities: - 5670 - 5672 - 5673 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24333 components: - type: Transform @@ -71633,8 +71401,6 @@ entities: - 5660 - 5642 - 24335 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24336 components: - type: Transform @@ -71652,8 +71418,6 @@ entities: - 5665 - 5666 - 5667 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24342 components: - type: Transform @@ -71671,8 +71435,6 @@ entities: - 6495 - 6493 - 6494 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24351 components: - type: Transform @@ -71687,8 +71449,6 @@ entities: - 3504 - 3502 - 3501 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24354 components: - type: Transform @@ -71703,8 +71463,6 @@ entities: - 3624 - 3695 - 24353 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24356 components: - type: Transform @@ -71721,8 +71479,6 @@ entities: - 22260 - 20168 - 2063 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24360 components: - type: Transform @@ -71739,8 +71495,6 @@ entities: - 5579 - 5580 - 3543 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24363 components: - type: Transform @@ -71760,8 +71514,6 @@ entities: - 5574 - 5573 - 5572 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24365 components: - type: Transform @@ -71775,8 +71527,6 @@ entities: - 5574 - 5809 - 5810 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24366 components: - type: Transform @@ -71787,8 +71537,6 @@ entities: - 5809 - 5810 - 24368 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24373 components: - type: Transform @@ -71799,8 +71547,6 @@ entities: - 24375 - 5807 - 5808 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24378 components: - type: Transform @@ -71817,8 +71563,6 @@ entities: - 5575 - 5576 - 5577 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24381 components: - type: Transform @@ -71829,8 +71573,6 @@ entities: - 24379 - 18335 - 18336 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24387 components: - type: Transform @@ -71842,8 +71584,6 @@ entities: - 3577 - 24388 - 3543 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24391 components: - type: Transform @@ -71856,8 +71596,6 @@ entities: - 3624 - 3577 - 24390 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24399 components: - type: Transform @@ -71870,8 +71608,6 @@ entities: - 6495 - 6493 - 6494 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24404 components: - type: Transform @@ -71885,8 +71621,6 @@ entities: - 8143 - 8142 - 19747 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24409 components: - type: Transform @@ -71898,8 +71632,6 @@ entities: - 8143 - 8142 - 24410 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24416 components: - type: Transform @@ -71909,8 +71641,6 @@ entities: - type: DeviceList devices: - 24417 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24419 components: - type: Transform @@ -71920,8 +71650,6 @@ entities: - type: DeviceList devices: - 24420 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24447 components: - type: Transform @@ -71937,8 +71665,6 @@ entities: - 2126 - 2127 - 2125 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24450 components: - type: Transform @@ -71954,8 +71680,6 @@ entities: - 2124 - 2123 - 2122 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24459 components: - type: Transform @@ -71973,8 +71697,6 @@ entities: - 3263 - 23740 - 23736 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24462 components: - type: Transform @@ -71988,8 +71710,6 @@ entities: - 6932 - 23448 - 23444 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24465 components: - type: Transform @@ -72015,8 +71735,6 @@ entities: - 2411 - 2410 - 2409 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24467 components: - type: Transform @@ -72033,8 +71751,6 @@ entities: - 2406 - 2407 - 2408 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24470 components: - type: Transform @@ -72051,8 +71767,6 @@ entities: - 2410 - 2409 - 2353 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24482 components: - type: Transform @@ -72064,8 +71778,6 @@ entities: - 2360 - 24483 - 2353 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24491 components: - type: Transform @@ -72079,8 +71791,6 @@ entities: - 8896 - 8895 - 24492 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24511 components: - type: Transform @@ -72094,8 +71804,6 @@ entities: - 11565 - 11564 - 24512 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24513 components: - type: Transform @@ -72109,8 +71817,6 @@ entities: - 11517 - 11518 - 11519 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24523 components: - type: Transform @@ -72125,8 +71831,6 @@ entities: - 14205 - 14206 - 24522 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24525 components: - type: Transform @@ -72137,8 +71841,6 @@ entities: devices: - 9777 - 24526 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24533 components: - type: Transform @@ -72151,8 +71853,6 @@ entities: - 19500 - 19499 - 24534 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24535 components: - type: Transform @@ -72168,8 +71868,6 @@ entities: - 19501 - 24536 - 19296 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24539 components: - type: Transform @@ -72181,8 +71879,6 @@ entities: - 24540 - 19295 - 19296 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24545 components: - type: Transform @@ -72194,8 +71890,6 @@ entities: - 19498 - 19497 - 19496 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24553 components: - type: Transform @@ -72213,8 +71907,6 @@ entities: - 14208 - 14205 - 14206 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24556 components: - type: Transform @@ -72230,8 +71922,6 @@ entities: - 19262 - 19263 - 19264 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24558 components: - type: Transform @@ -72247,8 +71937,6 @@ entities: - 4681 - 14271 - 4680 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24577 components: - type: Transform @@ -72262,8 +71950,6 @@ entities: - 14927 - 14926 - 11136 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24588 components: - type: Transform @@ -72281,8 +71967,6 @@ entities: - 15193 - 2687 - 14419 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24593 components: - type: Transform @@ -72295,8 +71979,6 @@ entities: - 15029 - 15192 - 15193 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24832 components: - type: Transform @@ -72312,8 +71994,6 @@ entities: - 26489 - 22082 - 24561 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26481 components: - type: Transform @@ -72325,8 +72005,6 @@ entities: - 26541 - 26536 - 5662 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26487 components: - type: Transform @@ -72345,8 +72023,6 @@ entities: - 14286 - 3383 - 2075 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26543 components: - type: Transform @@ -72362,8 +72038,6 @@ entities: - 14208 - 14209 - 14210 - - type: AtmosDevice - joinedGrid: 5350 - proto: FireAxeCabinetFilled entities: - uid: 1096 @@ -72459,6 +72133,12 @@ entities: - type: Transform pos: -1.5,-59.5 parent: 5350 + - uid: 5345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-15.5 + parent: 5350 - uid: 14264 components: - type: Transform @@ -73596,11 +73276,6 @@ entities: - type: Transform pos: -40.5,-40.5 parent: 5350 - - uid: 24753 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 5350 - uid: 24754 components: - type: Transform @@ -74332,11 +74007,21 @@ entities: parent: 5350 - proto: FoodPoppy entities: + - uid: 1950 + components: + - type: Transform + pos: 6.785658,-13.56077 + parent: 5350 - uid: 22073 components: - type: Transform pos: -19.505331,-64.46194 parent: 5350 + - uid: 22074 + components: + - type: Transform + pos: -27.485363,-69.41039 + parent: 5350 - proto: FoodTinPeachesMaint entities: - uid: 22958 @@ -74378,8 +74063,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasMinerCarbonDioxide @@ -74389,8 +74072,6 @@ entities: - type: Transform pos: 68.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasMinerNitrogen entities: - uid: 11574 @@ -74398,8 +74079,6 @@ entities: - type: Transform pos: 52.5,-29.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasMinerOxygen entities: - uid: 11585 @@ -74407,8 +74086,6 @@ entities: - type: Transform pos: 56.5,-29.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasMixer entities: - uid: 11798 @@ -74417,16 +74094,12 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19374 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasMixerFlipped entities: - uid: 11805 @@ -74435,8 +74108,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasOutletInjector entities: - uid: 10990 @@ -74445,8 +74116,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#27E312FF' - uid: 10991 @@ -74455,8 +74124,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#27E312FF' - uid: 10992 @@ -74465,8 +74132,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#27E312FF' - uid: 10993 @@ -74475,8 +74140,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-20.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#27E312FF' - uid: 10994 @@ -74485,8 +74148,6 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#27E312FF' - uid: 10995 @@ -74495,8 +74156,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#27E312FF' - uid: 11431 @@ -74505,24 +74164,18 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-32.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11452 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19390 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-55.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasPassiveGate entities: - uid: 11191 @@ -74530,8 +74183,6 @@ entities: - type: Transform pos: 59.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasPassiveVent entities: - uid: 10505 @@ -74540,16 +74191,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10981 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-26.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10983 @@ -74558,8 +74205,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 10984 @@ -74568,8 +74213,6 @@ entities: rot: 3.141592653589793 rad pos: 57.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#947507FF' - uid: 10985 @@ -74578,8 +74221,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#947507FF' - uid: 10986 @@ -74588,8 +74229,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#947507FF' - uid: 10987 @@ -74598,8 +74237,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#947507FF' - uid: 10988 @@ -74608,8 +74245,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#947507FF' - uid: 10989 @@ -74618,8 +74253,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#B342F5FF' - uid: 16406 @@ -74628,64 +74261,48 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-58.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19391 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-55.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19400 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-54.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25932 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25933 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,2.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25934 components: - type: Transform rot: -1.5707963267948966 rad pos: 113.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25935 components: - type: Transform rot: -1.5707963267948966 rad pos: 111.5,-4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25936 components: - type: Transform rot: 3.141592653589793 rad pos: 104.5,-16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasPipeBend entities: - uid: 510 @@ -104421,8 +104038,6 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8937 @@ -104431,16 +104046,12 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 8995 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8996 @@ -104449,8 +104060,6 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-2.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9029 @@ -104458,16 +104067,12 @@ entities: - type: Transform pos: 63.5,-4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10163 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10182 @@ -104476,8 +104081,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10662 @@ -104486,16 +104089,12 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10806 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10946 @@ -104504,8 +104103,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10947 @@ -104514,8 +104111,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11120 @@ -104524,8 +104119,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 11121 @@ -104534,8 +104127,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 11243 @@ -104543,120 +104134,88 @@ entities: - type: Transform pos: 68.5,-27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11244 components: - type: Transform pos: 70.5,-27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11438 components: - type: Transform pos: 44.5,-25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11439 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11497 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11800 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11801 components: - type: Transform pos: 46.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11802 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11806 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11807 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11808 components: - type: Transform pos: 48.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 13462 components: - type: Transform pos: 24.5,46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16742 components: - type: Transform pos: -49.5,-36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16743 components: - type: Transform pos: -50.5,-36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 18496 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 18507 components: - type: Transform pos: -58.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18508 @@ -104664,8 +104223,6 @@ entities: - type: Transform pos: -57.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19369 @@ -104674,69 +104231,51 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19371 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-53.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19372 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19373 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-52.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19375 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19376 components: - type: Transform pos: 13.5,-48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19377 components: - type: Transform pos: 15.5,-48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19402 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-54.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25893 components: - type: Transform pos: 110.5,2.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasPressurePump entities: - uid: 2653 @@ -104744,8 +104283,6 @@ entities: - type: Transform pos: 34.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2682 @@ -104754,16 +104291,12 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,-12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 3130 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3186 @@ -104772,22 +104305,16 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10543 components: - type: Transform pos: 51.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10660 components: - type: Transform pos: -35.5,33.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10966 @@ -104796,24 +104323,18 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,-20.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10967 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-20.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10968 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-21.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10969 @@ -104822,47 +104343,35 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,-16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10970 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10971 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 10972 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11006 components: - type: Transform pos: 55.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11009 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11015 @@ -104871,16 +104380,12 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,-8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11124 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 11138 @@ -104889,8 +104394,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11249 @@ -104898,23 +104401,17 @@ entities: - type: Transform pos: 68.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11250 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11428 components: - type: Transform pos: 47.5,-25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#000000FF' - uid: 11430 @@ -104922,30 +104419,22 @@ entities: - type: Transform pos: 47.5,-30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11435 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11449 components: - type: Transform pos: 43.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 13461 components: - type: Transform pos: 24.5,45.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14726 @@ -104954,8 +104443,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16739 @@ -104963,8 +104450,6 @@ entities: - type: Transform pos: -49.5,-38.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18495 @@ -104973,8 +104458,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19378 @@ -104982,24 +104465,18 @@ entities: - type: Transform pos: 13.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19379 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 20852 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-40.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25874 @@ -105007,8 +104484,6 @@ entities: - type: Transform pos: 110.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasThermoMachineFreezer @@ -105018,57 +104493,41 @@ entities: - type: Transform pos: 33.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11364 components: - type: Transform pos: 54.5,-18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11365 components: - type: Transform pos: 55.5,-18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11496 components: - type: Transform pos: 42.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11803 components: - type: Transform pos: 49.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16018 components: - type: Transform pos: -29.5,-25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19368 components: - type: Transform pos: 6.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19542 components: - type: Transform pos: 29.5,-38.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasThermoMachineHeater entities: - uid: 11366 @@ -105076,22 +104535,16 @@ entities: - type: Transform pos: 56.5,-18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11797 components: - type: Transform pos: 45.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 19370 components: - type: Transform pos: 6.5,-52.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: GasValve entities: - uid: 10979 @@ -105101,8 +104554,6 @@ entities: parent: 5350 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19380 @@ -105113,8 +104564,6 @@ entities: parent: 5350 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 5350 - uid: 19381 components: - type: Transform @@ -105123,8 +104572,6 @@ entities: parent: 5350 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 5350 - uid: 19401 components: - type: Transform @@ -105133,8 +104580,6 @@ entities: parent: 5350 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 5350 - proto: GasVentPump entities: - uid: 747 @@ -105142,8 +104587,6 @@ entities: - type: Transform pos: -17.5,-1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 768 @@ -105151,8 +104594,6 @@ entities: - type: Transform pos: -5.5,2.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 771 @@ -105161,8 +104602,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 793 @@ -105171,8 +104610,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 813 @@ -105180,8 +104617,6 @@ entities: - type: Transform pos: 11.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 827 @@ -105189,8 +104624,6 @@ entities: - type: Transform pos: -4.5,-3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 837 @@ -105199,8 +104632,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 994 @@ -105209,8 +104640,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1584 @@ -105219,8 +104648,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1611 @@ -105229,8 +104656,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2077 @@ -105238,8 +104663,6 @@ entities: - type: Transform pos: -21.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2624 @@ -105248,8 +104671,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2642 @@ -105258,8 +104679,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2656 @@ -105268,16 +104687,12 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 2657 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2676 @@ -105286,8 +104701,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2708 @@ -105296,8 +104709,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2711 @@ -105306,8 +104717,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2713 @@ -105316,8 +104725,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2716 @@ -105326,8 +104733,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3007 @@ -105336,8 +104741,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3835 @@ -105346,8 +104749,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4143 @@ -105356,8 +104757,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4244 @@ -105366,8 +104765,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4328 @@ -105376,8 +104773,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4329 @@ -105385,8 +104780,6 @@ entities: - type: Transform pos: -27.5,6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4346 @@ -105395,8 +104788,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4348 @@ -105404,8 +104795,6 @@ entities: - type: Transform pos: -32.5,6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4373 @@ -105414,8 +104803,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4374 @@ -105424,8 +104811,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4378 @@ -105434,8 +104819,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4392 @@ -105444,8 +104827,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4402 @@ -105453,8 +104834,6 @@ entities: - type: Transform pos: -21.5,14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4457 @@ -105462,8 +104841,6 @@ entities: - type: Transform pos: -42.5,31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4972 @@ -105472,8 +104849,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-20.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5017 @@ -105482,8 +104857,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5558 @@ -105492,8 +104865,6 @@ entities: rot: 3.141592653589793 rad pos: -70.5,5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5559 @@ -105502,8 +104873,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5560 @@ -105512,8 +104881,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5561 @@ -105521,8 +104888,6 @@ entities: - type: Transform pos: -63.5,-6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5562 @@ -105530,8 +104895,6 @@ entities: - type: Transform pos: -67.5,-8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5563 @@ -105539,8 +104902,6 @@ entities: - type: Transform pos: -70.5,-6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5838 @@ -105549,8 +104910,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-17.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6471 @@ -105559,8 +104918,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6549 @@ -105568,8 +104925,6 @@ entities: - type: Transform pos: -7.5,60.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6602 @@ -105578,8 +104933,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,44.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6662 @@ -105587,8 +104940,6 @@ entities: - type: Transform pos: 8.5,44.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6694 @@ -105597,8 +104948,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7074 @@ -105607,8 +104956,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7075 @@ -105617,8 +104964,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7076 @@ -105627,8 +104972,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7077 @@ -105637,8 +104980,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7078 @@ -105647,8 +104988,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7079 @@ -105657,8 +104996,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7083 @@ -105667,8 +105004,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,39.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7084 @@ -105677,8 +105012,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,43.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7085 @@ -105687,8 +105020,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,44.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7086 @@ -105697,8 +105028,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,45.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7091 @@ -105706,8 +105035,6 @@ entities: - type: Transform pos: -6.5,38.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7101 @@ -105716,8 +105043,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,32.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7102 @@ -105726,8 +105051,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7104 @@ -105736,8 +105059,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,39.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7115 @@ -105746,8 +105067,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7116 @@ -105755,8 +105074,6 @@ entities: - type: Transform pos: 6.5,19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7117 @@ -105764,8 +105081,6 @@ entities: - type: Transform pos: 11.5,18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7125 @@ -105774,8 +105089,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7127 @@ -105784,8 +105097,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7130 @@ -105794,8 +105105,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7193 @@ -105804,8 +105113,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7194 @@ -105814,8 +105121,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7195 @@ -105824,8 +105129,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7197 @@ -105833,8 +105136,6 @@ entities: - type: Transform pos: -0.5,51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7337 @@ -105843,8 +105144,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7342 @@ -105853,8 +105152,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7388 @@ -105863,8 +105160,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,56.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7725 @@ -105873,8 +105168,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,39.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8847 @@ -105883,8 +105176,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9225 @@ -105892,8 +105183,6 @@ entities: - type: Transform pos: -16.5,27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9321 @@ -105901,8 +105190,6 @@ entities: - type: Transform pos: -24.5,27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9338 @@ -105911,8 +105198,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,21.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9491 @@ -105920,8 +105205,6 @@ entities: - type: Transform pos: -39.5,40.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9939 @@ -105930,8 +105213,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10185 @@ -105940,8 +105221,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10788 @@ -105949,8 +105228,6 @@ entities: - type: Transform pos: -11.5,16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10791 @@ -105959,8 +105236,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10793 @@ -105969,8 +105244,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10795 @@ -105979,8 +105252,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10797 @@ -105989,8 +105260,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10799 @@ -105999,8 +105268,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10802 @@ -106009,8 +105276,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11092 @@ -106019,8 +105284,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11242 @@ -106029,8 +105292,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 11867 @@ -106039,8 +105300,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-17.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12033 @@ -106052,8 +105311,6 @@ entities: - type: DeviceNetwork deviceLists: - 23907 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12049 @@ -106061,8 +105318,6 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 12051 @@ -106071,8 +105326,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,-6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12059 @@ -106081,8 +105334,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12060 @@ -106090,8 +105341,6 @@ entities: - type: Transform pos: 39.5,8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12103 @@ -106100,8 +105349,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12104 @@ -106110,8 +105357,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12111 @@ -106120,8 +105365,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12118 @@ -106129,8 +105372,6 @@ entities: - type: Transform pos: -17.5,-5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12120 @@ -106139,8 +105380,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12122 @@ -106149,8 +105388,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12124 @@ -106158,8 +105395,6 @@ entities: - type: Transform pos: -0.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12126 @@ -106167,8 +105402,6 @@ entities: - type: Transform pos: 16.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12131 @@ -106177,8 +105410,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12139 @@ -106187,8 +105418,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12142 @@ -106197,8 +105426,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12150 @@ -106206,8 +105433,6 @@ entities: - type: Transform pos: 20.5,7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12400 @@ -106216,8 +105441,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12585 @@ -106226,8 +105449,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12694 @@ -106236,8 +105457,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,32.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12792 @@ -106246,8 +105465,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12793 @@ -106255,8 +105472,6 @@ entities: - type: Transform pos: 27.5,23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12795 @@ -106265,8 +105480,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12797 @@ -106275,8 +105488,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,22.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12990 @@ -106285,8 +105496,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,17.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12994 @@ -106295,8 +105504,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,17.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13004 @@ -106305,8 +105512,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,41.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13025 @@ -106315,8 +105520,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,39.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13027 @@ -106325,8 +105528,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13031 @@ -106335,8 +105536,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,40.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13032 @@ -106345,8 +105544,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,42.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13046 @@ -106355,8 +105552,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,49.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14160 @@ -106365,8 +105560,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14575 @@ -106374,8 +105567,6 @@ entities: - type: Transform pos: -14.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14623 @@ -106384,8 +105575,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-32.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14626 @@ -106394,8 +105583,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-33.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14633 @@ -106404,8 +105591,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14714 @@ -106413,8 +105598,6 @@ entities: - type: Transform pos: -27.5,-31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14739 @@ -106423,8 +105606,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14740 @@ -106432,8 +105613,6 @@ entities: - type: Transform pos: -20.5,-35.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15232 @@ -106442,8 +105621,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15233 @@ -106452,8 +105629,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15264 @@ -106462,8 +105637,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15306 @@ -106472,8 +105645,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15316 @@ -106482,8 +105653,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-41.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15318 @@ -106492,8 +105661,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-42.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15344 @@ -106502,8 +105669,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15345 @@ -106512,8 +105677,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15529 @@ -106522,8 +105685,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-56.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15530 @@ -106532,8 +105693,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-55.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15531 @@ -106542,8 +105701,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-58.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15615 @@ -106551,8 +105708,6 @@ entities: - type: Transform pos: -7.5,-31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16393 @@ -106560,8 +105715,6 @@ entities: - type: Transform pos: -42.5,-45.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16394 @@ -106570,8 +105723,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16396 @@ -106580,8 +105731,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-54.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16397 @@ -106590,8 +105739,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16398 @@ -106600,8 +105747,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-55.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17267 @@ -106610,8 +105755,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17473 @@ -106620,8 +105763,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17488 @@ -106630,8 +105771,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17665 @@ -106640,8 +105779,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17673 @@ -106650,8 +105787,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17674 @@ -106660,8 +105795,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18358 @@ -106670,8 +105803,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19001 @@ -106680,8 +105811,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,32.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19002 @@ -106690,8 +105819,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,35.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19003 @@ -106699,8 +105826,6 @@ entities: - type: Transform pos: 56.5,38.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19004 @@ -106708,8 +105833,6 @@ entities: - type: Transform pos: 50.5,36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20658 @@ -106718,8 +105841,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-26.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20741 @@ -106728,8 +105849,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-40.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20778 @@ -106737,8 +105856,6 @@ entities: - type: Transform pos: 11.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20779 @@ -106747,8 +105864,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20780 @@ -106757,8 +105872,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20781 @@ -106767,8 +105880,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-35.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20782 @@ -106777,8 +105888,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-40.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20783 @@ -106786,8 +105895,6 @@ entities: - type: Transform pos: 2.5,-31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20819 @@ -106796,8 +105903,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20820 @@ -106805,8 +105910,6 @@ entities: - type: Transform pos: 8.5,-49.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20821 @@ -106815,8 +105918,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20857 @@ -106824,15 +105925,11 @@ entities: - type: Transform pos: 28.5,-35.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 20858 components: - type: Transform pos: 21.5,-37.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20860 @@ -106841,8 +105938,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-42.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20887 @@ -106851,8 +105946,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-55.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20898 @@ -106861,8 +105954,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-59.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20976 @@ -106871,8 +105962,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21010 @@ -106881,8 +105970,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21100 @@ -106891,8 +105978,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-43.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21160 @@ -106900,8 +105985,6 @@ entities: - type: Transform pos: 32.5,-41.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21607 @@ -106910,8 +105993,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-68.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21609 @@ -106920,8 +106001,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-73.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21610 @@ -106930,8 +106009,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-73.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21611 @@ -106940,8 +106017,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-73.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21638 @@ -106950,8 +106025,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-71.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21639 @@ -106960,8 +106033,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-73.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21640 @@ -106969,8 +106040,6 @@ entities: - type: Transform pos: -24.5,-64.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21643 @@ -106979,8 +106048,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-71.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21644 @@ -106988,8 +106055,6 @@ entities: - type: Transform pos: -7.5,-61.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22018 @@ -106998,8 +106063,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-55.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22020 @@ -107008,8 +106071,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-44.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22022 @@ -107018,8 +106079,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22184 @@ -107027,8 +106086,6 @@ entities: - type: Transform pos: 19.5,-49.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23372 @@ -107039,8 +106096,6 @@ entities: - type: DeviceNetwork deviceLists: - 23905 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23379 @@ -107048,8 +106103,6 @@ entities: - type: Transform pos: 50.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23380 @@ -107061,8 +106114,6 @@ entities: - type: DeviceNetwork deviceLists: - 23906 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23385 @@ -107073,8 +106124,6 @@ entities: - type: DeviceNetwork deviceLists: - 23905 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23510 @@ -107083,8 +106132,6 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25560 @@ -107092,8 +106139,6 @@ entities: - type: Transform pos: 93.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25675 @@ -107101,8 +106146,6 @@ entities: - type: Transform pos: 104.5,19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25677 @@ -107111,8 +106154,6 @@ entities: rot: 3.141592653589793 rad pos: 104.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25891 @@ -107120,8 +106161,6 @@ entities: - type: Transform pos: 99.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25892 @@ -107129,8 +106168,6 @@ entities: - type: Transform pos: 109.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25916 @@ -107139,8 +106176,6 @@ entities: rot: 1.5707963267948966 rad pos: 102.5,-3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25917 @@ -107149,8 +106184,6 @@ entities: rot: 1.5707963267948966 rad pos: 103.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25918 @@ -107159,8 +106192,6 @@ entities: rot: -1.5707963267948966 rad pos: 105.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25919 @@ -107169,8 +106200,6 @@ entities: rot: 3.141592653589793 rad pos: 104.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -107180,8 +106209,6 @@ entities: - type: Transform pos: -13.5,-1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 769 @@ -107189,8 +106216,6 @@ entities: - type: Transform pos: 0.5,2.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 772 @@ -107199,8 +106224,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 794 @@ -107209,8 +106232,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 814 @@ -107219,8 +106240,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 826 @@ -107228,8 +106247,6 @@ entities: - type: Transform pos: -0.5,-3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 841 @@ -107238,8 +106255,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 995 @@ -107248,8 +106263,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1581 @@ -107257,8 +106270,6 @@ entities: - type: Transform pos: -16.5,-16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1610 @@ -107267,8 +106278,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2586 @@ -107277,8 +106286,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2620 @@ -107287,8 +106294,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2640 @@ -107297,8 +106302,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2641 @@ -107307,8 +106310,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2658 @@ -107317,8 +106318,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2698 @@ -107326,8 +106325,6 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2699 @@ -107336,8 +106333,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2707 @@ -107346,8 +106341,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2712 @@ -107356,8 +106349,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2714 @@ -107366,8 +106357,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2717 @@ -107376,8 +106365,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3266 @@ -107386,8 +106373,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-20.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4052 @@ -107396,8 +106381,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4326 @@ -107405,8 +106388,6 @@ entities: - type: Transform pos: -41.5,26.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4330 @@ -107415,8 +106396,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4347 @@ -107425,8 +106404,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4349 @@ -107435,8 +106412,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4387 @@ -107445,8 +106420,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4393 @@ -107455,8 +106428,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4403 @@ -107465,8 +106436,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5015 @@ -107474,8 +106443,6 @@ entities: - type: Transform pos: -50.5,-2.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5503 @@ -107484,8 +106451,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5536 @@ -107494,8 +106459,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5839 @@ -107504,8 +106467,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6548 @@ -107514,8 +106475,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,60.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6556 @@ -107524,8 +106483,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6557 @@ -107534,8 +106491,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6558 @@ -107544,8 +106499,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6661 @@ -107553,8 +106506,6 @@ entities: - type: Transform pos: 10.5,44.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7087 @@ -107563,8 +106514,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,33.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7088 @@ -107573,8 +106522,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7089 @@ -107583,8 +106530,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,38.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7090 @@ -107593,8 +106538,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,37.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7092 @@ -107603,8 +106546,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7093 @@ -107613,8 +106554,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7094 @@ -107623,8 +106562,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7095 @@ -107633,8 +106570,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7098 @@ -107643,8 +106578,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7103 @@ -107652,8 +106585,6 @@ entities: - type: Transform pos: 8.5,31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7105 @@ -107662,8 +106593,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,37.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7107 @@ -107671,8 +106600,6 @@ entities: - type: Transform pos: 13.5,42.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7108 @@ -107680,8 +106607,6 @@ entities: - type: Transform pos: -2.5,43.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7109 @@ -107690,8 +106615,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,42.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7110 @@ -107700,8 +106623,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,44.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7111 @@ -107710,8 +106631,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7112 @@ -107719,8 +106638,6 @@ entities: - type: Transform pos: 2.5,19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7113 @@ -107729,8 +106646,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7114 @@ -107738,8 +106653,6 @@ entities: - type: Transform pos: 12.5,18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7126 @@ -107748,8 +106661,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7128 @@ -107757,8 +106668,6 @@ entities: - type: Transform pos: -8.5,24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7129 @@ -107767,8 +106676,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7155 @@ -107777,8 +106684,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,47.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7339 @@ -107787,15 +106692,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 7341 components: - type: Transform pos: 37.5,3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7389 @@ -107804,8 +106705,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7724 @@ -107814,8 +106713,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,40.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7802 @@ -107824,8 +106721,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,56.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7803 @@ -107834,8 +106729,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,47.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9223 @@ -107843,8 +106736,6 @@ entities: - type: Transform pos: -17.5,27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9335 @@ -107853,8 +106744,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9337 @@ -107863,8 +106752,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,21.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9940 @@ -107873,8 +106760,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10165 @@ -107882,8 +106767,6 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10789 @@ -107891,8 +106774,6 @@ entities: - type: Transform pos: -9.5,16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10790 @@ -107901,8 +106782,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,6.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10792 @@ -107910,8 +106789,6 @@ entities: - type: Transform pos: -58.5,-7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10796 @@ -107920,8 +106797,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10798 @@ -107929,8 +106804,6 @@ entities: - type: Transform pos: -39.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10800 @@ -107939,8 +106812,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10801 @@ -107948,8 +106819,6 @@ entities: - type: Transform pos: -0.5,9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11057 @@ -107958,8 +106827,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-22.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11432 @@ -107968,16 +106835,12 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-32.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11833 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11834 @@ -107989,8 +106852,6 @@ entities: - type: DeviceNetwork deviceLists: - 23907 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12032 @@ -107999,8 +106860,6 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12050 @@ -108008,8 +106867,6 @@ entities: - type: Transform pos: 52.5,-7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12102 @@ -108018,8 +106875,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,1.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12105 @@ -108028,8 +106883,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12116 @@ -108038,8 +106891,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12121 @@ -108048,8 +106899,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12123 @@ -108058,8 +106907,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12125 @@ -108068,8 +106915,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12130 @@ -108078,8 +106923,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12141 @@ -108088,8 +106931,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12143 @@ -108097,8 +106938,6 @@ entities: - type: Transform pos: 26.5,3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12151 @@ -108106,8 +106945,6 @@ entities: - type: Transform pos: 22.5,7.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12401 @@ -108116,8 +106953,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12586 @@ -108126,8 +106961,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,8.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12695 @@ -108136,8 +106969,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,33.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12729 @@ -108146,8 +106977,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12754 @@ -108156,8 +106985,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,27.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12757 @@ -108166,8 +106993,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,25.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12794 @@ -108175,8 +107000,6 @@ entities: - type: Transform pos: 29.5,23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12796 @@ -108184,8 +107007,6 @@ entities: - type: Transform pos: 13.5,14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12833 @@ -108194,8 +107015,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12834 @@ -108204,8 +107023,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12835 @@ -108214,8 +107031,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12995 @@ -108223,8 +107038,6 @@ entities: - type: Transform pos: 20.5,15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12996 @@ -108232,8 +107045,6 @@ entities: - type: Transform pos: 26.5,15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13005 @@ -108241,8 +107052,6 @@ entities: - type: Transform pos: 33.5,41.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13026 @@ -108251,8 +107060,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13028 @@ -108260,8 +107067,6 @@ entities: - type: Transform pos: 33.5,18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13029 @@ -108270,8 +107075,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,42.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13030 @@ -108280,8 +107083,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,40.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13045 @@ -108290,8 +107091,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14231 @@ -108300,8 +107099,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14660 @@ -108310,8 +107107,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14728 @@ -108319,8 +107114,6 @@ entities: - type: Transform pos: -25.5,-33.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14729 @@ -108329,8 +107122,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14733 @@ -108339,8 +107130,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14741 @@ -108349,8 +107138,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14742 @@ -108359,8 +107146,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14924 @@ -108369,8 +107154,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-35.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15261 @@ -108379,8 +107162,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-35.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15262 @@ -108389,8 +107170,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15263 @@ -108399,8 +107178,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15305 @@ -108408,8 +107185,6 @@ entities: - type: Transform pos: -35.5,-46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15307 @@ -108417,8 +107192,6 @@ entities: - type: Transform pos: -23.5,-46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15319 @@ -108427,8 +107200,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-43.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15332 @@ -108436,8 +107207,6 @@ entities: - type: Transform pos: -11.5,-47.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15333 @@ -108446,8 +107215,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15334 @@ -108456,8 +107223,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-43.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15348 @@ -108466,8 +107231,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-49.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15541 @@ -108476,8 +107239,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-54.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15542 @@ -108486,8 +107247,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-57.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16117 @@ -108496,8 +107255,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16399 @@ -108506,40 +107263,30 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-55.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16400 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-52.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16420 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-47.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16421 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-52.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 17686 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17704 @@ -108548,8 +107295,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20659 @@ -108557,8 +107302,6 @@ entities: - type: Transform pos: -2.5,-23.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20992 @@ -108566,8 +107309,6 @@ entities: - type: Transform pos: 10.5,-29.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21003 @@ -108575,8 +107316,6 @@ entities: - type: Transform pos: 21.5,-30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21005 @@ -108585,8 +107324,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21011 @@ -108595,8 +107332,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-29.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21020 @@ -108604,8 +107339,6 @@ entities: - type: Transform pos: 2.5,-29.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21021 @@ -108614,8 +107347,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-35.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21027 @@ -108624,8 +107355,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21068 @@ -108634,8 +107363,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-56.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21074 @@ -108643,8 +107370,6 @@ entities: - type: Transform pos: 7.5,-54.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21075 @@ -108653,8 +107378,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-44.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21097 @@ -108663,8 +107386,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-41.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21098 @@ -108672,8 +107393,6 @@ entities: - type: Transform pos: 20.5,-37.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21099 @@ -108681,8 +107400,6 @@ entities: - type: Transform pos: 15.5,-36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21107 @@ -108691,8 +107408,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21161 @@ -108701,8 +107416,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-43.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21562 @@ -108711,8 +107424,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-66.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21563 @@ -108721,8 +107432,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-67.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21564 @@ -108731,8 +107440,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-73.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21608 @@ -108741,8 +107448,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-69.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21645 @@ -108750,8 +107455,6 @@ entities: - type: Transform pos: -5.5,-61.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21646 @@ -108760,8 +107463,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-71.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22019 @@ -108770,8 +107471,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-57.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22021 @@ -108780,8 +107479,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-46.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22023 @@ -108790,8 +107487,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22183 @@ -108800,8 +107495,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22189 @@ -108810,8 +107503,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-49.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23381 @@ -108823,8 +107514,6 @@ entities: - type: DeviceNetwork deviceLists: - 23906 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23383 @@ -108835,8 +107524,6 @@ entities: - type: DeviceNetwork deviceLists: - 23905 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23384 @@ -108847,8 +107534,6 @@ entities: - type: DeviceNetwork deviceLists: - 23905 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23509 @@ -108857,8 +107542,6 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24334 @@ -108867,8 +107550,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-18.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25920 @@ -108877,47 +107558,35 @@ entities: rot: -1.5707963267948966 rad pos: 103.5,4.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25921 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,2.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25922 components: - type: Transform rot: 1.5707963267948966 rad pos: 111.5,-0.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25923 components: - type: Transform rot: 1.5707963267948966 rad pos: 106.5,-3.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 25924 components: - type: Transform pos: 104.5,-13.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 26578 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-37.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -108928,8 +107597,6 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10949 @@ -108938,8 +107605,6 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - type: AtmosPipeColor color: '#FF1212FF' - proto: Girder @@ -112501,11 +111166,6 @@ entities: - type: Transform pos: -7.5,-22.5 parent: 5350 - - uid: 14379 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 5350 - uid: 14380 components: - type: Transform @@ -112641,11 +111301,6 @@ entities: - type: Transform pos: -4.5,-29.5 parent: 5350 - - uid: 14570 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 5350 - uid: 14589 components: - type: Transform @@ -117173,6 +115828,13 @@ entities: - type: Transform pos: -5.530875,40.73829 parent: 5350 +- proto: Jukebox + entities: + - uid: 14370 + components: + - type: Transform + pos: 22.5,0.5 + parent: 5350 - proto: KitchenElectricGrill entities: - uid: 2485 @@ -117615,6 +116277,47 @@ entities: - type: Transform pos: 42.475327,0.6797509 parent: 5350 +- proto: LockableButtonMedical + entities: + - uid: 6251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 5350 + - uid: 24780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 5350 +- proto: LockableButtonSecurity + entities: + - uid: 6261 + components: + - type: Transform + pos: -9.5,32.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 8903: + - Pressed: Toggle + 7745: + - Pressed: Toggle + 8904: + - Pressed: Toggle + 7746: + - Pressed: Toggle + 7749: + - Pressed: Toggle + 8905: + - Pressed: Toggle + 10420: + - Pressed: Toggle + 16241: + - Pressed: Toggle + 14794: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 9033 @@ -120394,85 +119097,61 @@ entities: - type: Transform pos: 52.5,-30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11813 components: - type: Transform pos: 47.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11814 components: - type: Transform pos: 47.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11827 components: - type: Transform pos: 47.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 16745 components: - type: Transform pos: -50.5,-36.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22337 components: - type: Transform pos: 26.5,-48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22338 components: - type: Transform pos: 27.5,-48.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22589 components: - type: Transform pos: 6.5,-64.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22654 components: - type: Transform pos: 40.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22655 components: - type: Transform pos: 39.5,-28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22859 components: - type: Transform pos: -53.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 24146 components: - type: Transform pos: 41.5,31.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: NitrogenTankFilled entities: - uid: 15569 @@ -120492,8 +119171,6 @@ entities: - type: Transform pos: 48.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: NitrousOxideTankFilled entities: - uid: 15571 @@ -120603,99 +119280,71 @@ entities: - type: Transform pos: 52.5,28.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11584 components: - type: Transform pos: 56.5,-30.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11816 components: - type: Transform pos: 46.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11817 components: - type: Transform pos: 46.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11818 components: - type: Transform pos: 46.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 17340 components: - type: Transform pos: -47.5,-39.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22331 components: - type: Transform pos: 26.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22332 components: - type: Transform pos: 26.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22333 components: - type: Transform pos: 27.5,-50.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22334 components: - type: Transform pos: 27.5,-51.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22524 components: - type: Transform pos: 37.5,-56.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22643 components: - type: Transform pos: -17.5,-44.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22858 components: - type: Transform pos: -54.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 23859 components: - type: Transform pos: 55.5,24.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: OxygenTankFilled entities: - uid: 1305 @@ -121457,22 +120106,16 @@ entities: - type: Transform pos: 46.5,20.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 9184 components: - type: Transform pos: 47.5,20.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11598 components: - type: Transform pos: 69.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 19347 @@ -128998,11 +127641,6 @@ entities: - type: Transform pos: -6.5,-57.5 parent: 5350 - - uid: 23099 - components: - - type: Transform - pos: -33.5,39.5 - parent: 5350 - uid: 23100 components: - type: Transform @@ -133952,40 +132590,6 @@ entities: - type: DeviceLinkSink links: - 3063 - - uid: 6250 - components: - - type: Transform - pos: -3.5,26.5 - parent: 5350 - - uid: 6251 - components: - - type: Transform - pos: -1.5,26.5 - parent: 5350 - - uid: 6259 - components: - - type: Transform - pos: -12.5,26.5 - parent: 5350 - - type: DeviceLinkSink - links: - - 5345 - - uid: 6260 - components: - - type: Transform - pos: -9.5,26.5 - parent: 5350 - - type: DeviceLinkSink - links: - - 5345 - - uid: 6261 - components: - - type: Transform - pos: -7.5,26.5 - parent: 5350 - - type: DeviceLinkSink - links: - - 5345 - uid: 6474 components: - type: Transform @@ -134019,29 +132623,61 @@ entities: links: - 7364 - uid: 7745 + components: + - type: Transform + pos: -12.5,26.5 + parent: 5350 + - type: DeviceLinkSink + links: + - 6261 + - uid: 7746 + components: + - type: Transform + pos: -9.5,26.5 + parent: 5350 + - type: DeviceLinkSink + links: + - 6261 + - uid: 7749 + components: + - type: Transform + pos: -7.5,26.5 + parent: 5350 + - type: DeviceLinkSink + links: + - 6261 + - uid: 8903 components: - type: Transform pos: -13.5,26.5 parent: 5350 - type: DeviceLinkSink links: - - 5345 - - uid: 7746 + - 6261 + - uid: 8904 components: - type: Transform pos: -10.5,26.5 parent: 5350 - type: DeviceLinkSink links: - - 5345 - - uid: 7749 + - 6261 + - uid: 8905 components: - type: Transform pos: -6.5,26.5 parent: 5350 - type: DeviceLinkSink links: - - 5345 + - 6261 + - uid: 10420 + components: + - type: Transform + pos: -3.5,26.5 + parent: 5350 + - type: DeviceLinkSink + links: + - 6261 - uid: 10479 components: - type: Transform @@ -134066,6 +132702,14 @@ entities: - type: DeviceLinkSink links: - 10482 + - uid: 14794 + components: + - type: Transform + pos: -1.5,26.5 + parent: 5350 + - type: DeviceLinkSink + links: + - 6261 - uid: 14914 components: - type: Transform @@ -134108,6 +132752,14 @@ entities: - type: DeviceLinkSink links: - 14913 + - uid: 16241 + components: + - type: Transform + pos: -2.5,26.5 + parent: 5350 + - type: DeviceLinkSink + links: + - 6261 - uid: 19429 components: - type: Transform @@ -134655,25 +133307,6 @@ entities: - Pressed: Toggle 4746: - Pressed: Toggle - - uid: 5345 - components: - - type: Transform - pos: -9.5,32.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 7745: - - Pressed: Toggle - 6259: - - Pressed: Toggle - 7746: - - Pressed: Toggle - 6260: - - Pressed: Toggle - 6261: - - Pressed: Toggle - 7749: - - Pressed: Toggle - uid: 7364 components: - type: Transform @@ -138154,6 +136787,18 @@ entities: - type: Transform pos: -5.417899,-39.628685 parent: 5350 +- proto: SpaceHeater + entities: + - uid: 23098 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 5350 + - uid: 23099 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 5350 - proto: SpacemenFigureSpawner entities: - uid: 11010 @@ -138173,11 +136818,15 @@ entities: - type: Transform pos: -10.5,57.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 24289 components: - type: Transform pos: -61.5,-7.5 parent: 5350 + - type: SpamEmitSound + enabled: False - proto: SpaceVillainArcadeFilled entities: - uid: 16833 @@ -138185,11 +136834,15 @@ entities: - type: Transform pos: -49.5,-23.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 22605 components: - type: Transform pos: 0.5,-64.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 24761 components: - type: Transform @@ -138202,11 +136855,15 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,33.5 parent: 5350 + - type: SpamEmitSound + enabled: False - uid: 26490 components: - type: Transform pos: -67.5,-17.5 parent: 5350 + - type: SpamEmitSound + enabled: False - proto: SpawnMobAlexander entities: - uid: 10982 @@ -138263,23 +136920,6 @@ entities: - type: Transform pos: 58.5,-11.5 parent: 5350 -- proto: SpawnMobDrone - entities: - - uid: 8903 - components: - - type: Transform - pos: 42.5,-2.5 - parent: 5350 - - uid: 8904 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 5350 - - uid: 8905 - components: - - type: Transform - pos: 42.5,-0.5 - parent: 5350 - proto: SpawnMobFoxRenault entities: - uid: 1083 @@ -139489,85 +138129,61 @@ entities: - type: Transform pos: 45.5,-26.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11627 components: - type: Transform pos: 69.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11819 components: - type: Transform pos: 49.5,-11.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11820 components: - type: Transform pos: 49.5,-10.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11821 components: - type: Transform pos: 49.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11822 components: - type: Transform pos: 56.5,-16.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11823 components: - type: Transform pos: 56.5,-15.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 11824 components: - type: Transform pos: 56.5,-14.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 12020 components: - type: Transform pos: 49.5,-17.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 12023 components: - type: Transform pos: 48.5,-17.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22329 components: - type: Transform pos: 27.5,-52.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - uid: 22330 components: - type: Transform pos: 26.5,-52.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: SubstationBasic entities: - uid: 23 @@ -144489,8 +143105,6 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-34.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: TegCirculator entities: - uid: 11277 @@ -157822,6 +156436,12 @@ entities: - type: Transform pos: 8.5,23.5 parent: 5350 + - uid: 6250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 5350 - uid: 6270 components: - type: Transform @@ -159672,6 +158292,12 @@ entities: - type: Transform pos: -38.5,-33.5 parent: 5350 + - uid: 14570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 5350 - uid: 14585 components: - type: Transform @@ -163462,15 +162088,6 @@ entities: - type: Transform pos: 66.5,-5.5 parent: 5350 -- proto: WarpPoint - entities: - - uid: 24231 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 5350 - - type: WarpPoint - location: Sci Lobby - proto: WaterCooler entities: - uid: 2088 @@ -163629,8 +162246,6 @@ entities: - type: Transform pos: 48.5,-9.5 parent: 5350 - - type: AtmosDevice - joinedGrid: 5350 - proto: WeaponCapacitorRecharger entities: - uid: 1036 @@ -164800,21 +163415,11 @@ entities: - type: Transform pos: -27.5,-38.5 parent: 5350 - - uid: 14370 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 5350 - uid: 14410 components: - type: Transform pos: -25.5,-38.5 parent: 5350 - - uid: 14794 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 5350 - uid: 15351 components: - type: Transform diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml new file mode 100644 index 0000000000..47109ea20e --- /dev/null +++ b/Resources/Maps/oasis.yml @@ -0,0 +1,180378 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorArcadeBlue2 + 7: FloorAsteroidSand + 9: FloorAsteroidSandRed + 12: FloorAstroGrass + 13: FloorAstroIce + 14: FloorAstroSnow + 15: FloorBar + 17: FloorBlue + 18: FloorBlueCircuit + 22: FloorBrokenWood + 23: FloorCarpetClown + 28: FloorClown + 29: FloorConcrete + 31: FloorConcreteSmooth + 32: FloorDark + 33: FloorDarkDiagonal + 36: FloorDarkMini + 37: FloorDarkMono + 38: FloorDarkOffset + 39: FloorDarkPavement + 41: FloorDarkPlastic + 47: FloorFreezer + 48: FloorGlass + 50: FloorGrass + 54: FloorGrayConcrete + 55: FloorGrayConcreteMono + 57: FloorGreenCircuit + 61: FloorHydro + 63: FloorJungleAstroGrass + 64: FloorKitchen + 66: FloorLino + 67: FloorLowDesert + 68: FloorMetalDiamond + 74: FloorMowedAstroGrass + 79: FloorPlanetGrass + 82: FloorReinforced + 83: FloorReinforcedHardened + 96: FloorSteel + 101: FloorSteelDiagonal + 106: FloorSteelMini + 108: FloorSteelOffset + 111: FloorTechMaint + 112: FloorTechMaint2 + 113: FloorTechMaint3 + 115: FloorWhite + 119: FloorWhiteMini + 120: FloorWhiteMono + 121: FloorWhiteOffset + 123: FloorWhitePavementVertical + 124: FloorWhitePlastic + 125: FloorWood + 127: FloorWoodTile + 128: Lattice + 129: Plating + 132: PlatingBurnt + 133: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: map 100 + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + desc: Oasis + name: Oasis + - type: Transform + pos: -0.5104167,-0.5 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: HwAAAAACHwAAAAACHwAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHwAAAAADHwAAAAAAHwAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAADHwAAAAACHwAAAAACHwAAAAABHQAAAAACHQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABgQAAAAAATwAAAAAADAAAAAACDAAAAAAASgAAAAAADAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAAHQAAAAABHQAAAAADgQAAAAAADAAAAAACDAAAAAABDAAAAAABDAAAAAADDAAAAAABDAAAAAACDAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAABHQAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAACHQAAAAABSgAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAAHQAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAAHQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADHQAAAAAAHQAAAAABMgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAABDAAAAAAAHQAAAAACHQAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADDAAAAAAADAAAAAACHQAAAAABHQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACSgAAAAAAHQAAAAADHQAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAAHQAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAAADAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAACHQAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADDAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAAHQAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAAADAAAAAACDAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: HQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHwAAAAAAHwAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAADHwAAAAAAHwAAAAAADwAAAAABgQAAAAAASgAAAAAASgAAAAAANgAAAAABNgAAAAABSgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAHQAAAAADHQAAAAACHwAAAAAAHwAAAAABDwAAAAABDwAAAAABSgAAAAAASgAAAAAANgAAAAACNgAAAAADSgAAAAAADAAAAAACSgAAAAAASgAAAAAASgAAAAAADAAAAAACgQAAAAAAHQAAAAABHQAAAAACHQAAAAAADwAAAAACDwAAAAAADwAAAAABSgAAAAAANgAAAAABNgAAAAACNgAAAAADDAAAAAADSgAAAAAASgAAAAAASgAAAAAADAAAAAACDAAAAAADgQAAAAAAHQAAAAAAHQAAAAACDwAAAAAADwAAAAADDwAAAAABNgAAAAADNgAAAAACNgAAAAACDAAAAAABDAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADDAAAAAAAgQAAAAAAHQAAAAACDwAAAAADDwAAAAAADwAAAAADNgAAAAADNgAAAAACNgAAAAADSgAAAAAASgAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAABSgAAAAAASgAAAAAASgAAAAAAHQAAAAAADwAAAAADDwAAAAAADwAAAAAANgAAAAABNgAAAAABNgAAAAADMgAAAAAASgAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAADSgAAAAAASgAAAAAASgAAAAAAHQAAAAACDwAAAAACDwAAAAAADwAAAAAADAAAAAAANgAAAAAANgAAAAAASgAAAAAASgAAAAAADwAAAAACDwAAAAAADwAAAAABDwAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAADwAAAAABDwAAAAAADwAAAAABDAAAAAAANgAAAAABNgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACgQAAAAAAHQAAAAACDwAAAAABDwAAAAAADAAAAAADDAAAAAACNgAAAAAANgAAAAACNgAAAAAANgAAAAAASgAAAAAASgAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAABMgAAAAAAHQAAAAAADwAAAAABDAAAAAAADAAAAAAASgAAAAAANgAAAAABNgAAAAADNgAAAAABNgAAAAADNgAAAAABDAAAAAADDAAAAAABDAAAAAABMgAAAAAAMgAAAAAAMgAAAAAAHQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAABNgAAAAAANgAAAAABNgAAAAABNgAAAAAANgAAAAAANgAAAAAANgAAAAADNgAAAAACNgAAAAAAHQAAAAADSgAAAAAADwAAAAACDwAAAAADDwAAAAABSgAAAAAADAAAAAABNgAAAAACNgAAAAADNgAAAAABNgAAAAABNgAAAAADNgAAAAADNgAAAAADNgAAAAABNgAAAAACHQAAAAADSgAAAAAADwAAAAAADwAAAAACDwAAAAACSgAAAAAADAAAAAACNgAAAAACNgAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAAANgAAAAACSgAAAAAAHQAAAAACSgAAAAAADwAAAAABDwAAAAACDwAAAAADSgAAAAAADAAAAAABNgAAAAADNgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAAANgAAAAAAgQAAAAAAHQAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: HQAAAAADHQAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACDAAAAAABDAAAAAADMgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAADHQAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAADHQAAAAAANgAAAAABNgAAAAAANgAAAAABNgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAABHQAAAAAANgAAAAAANgAAAAABNgAAAAACNgAAAAACNgAAAAAANgAAAAADNgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAACHQAAAAAASgAAAAAASgAAAAAANgAAAAACNgAAAAABNgAAAAADNgAAAAABNgAAAAABNgAAAAADNgAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAAHQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAAANgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAADHQAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAADSgAAAAAASgAAAAAASgAAAAAAHQAAAAACHQAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAAANgAAAAADNgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAAHQAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAABNwAAAAAANwAAAAADSgAAAAAASgAAAAAANgAAAAACNgAAAAABNgAAAAADSgAAAAAASgAAAAAAHQAAAAADHQAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAABNwAAAAAANwAAAAABSgAAAAAASgAAAAAANgAAAAADNgAAAAADNgAAAAADSgAAAAAASgAAAAAAHQAAAAABHQAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAABNwAAAAAANwAAAAABSgAAAAAASgAAAAAASgAAAAAANgAAAAACNgAAAAAASgAAAAAASgAAAAAAHQAAAAAAHQAAAAAAgQAAAAAADAAAAAABDAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAABNgAAAAACNgAAAAACSgAAAAAAHQAAAAAAHQAAAAADHQAAAAABgQAAAAAADAAAAAABDAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAADNgAAAAABNgAAAAACSgAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABgQAAAAAADAAAAAACDAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAADNgAAAAABNgAAAAABSgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAABNgAAAAADgQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: NgAAAAABNgAAAAADNgAAAAACNgAAAAAANgAAAAACNgAAAAAANgAAAAAANgAAAAABNgAAAAAANgAAAAACNgAAAAAANgAAAAACNgAAAAABNgAAAAAANgAAAAABHQAAAAABNgAAAAAAMgAAAAAANwAAAAABNwAAAAAAMgAAAAAANgAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAABDAAAAAAADAAAAAACSgAAAAAAgQAAAAAAHQAAAAAANgAAAAADNwAAAAACNwAAAAADNwAAAAAASgAAAAAANgAAAAAASgAAAAAAMgAAAAAASgAAAAAASgAAAAAASgAAAAAAMgAAAAAADAAAAAACSgAAAAAASgAAAAAAHQAAAAACNgAAAAAANwAAAAABNwAAAAABSgAAAAAASgAAAAAANgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAABNgAAAAABMgAAAAAANwAAAAAASgAAAAAAMgAAAAAANgAAAAADNgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAANgAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAADNgAAAAADSgAAAAAAMgAAAAAASgAAAAAASgAAAAAASgAAAAAAMgAAAAAANgAAAAAANgAAAAAANgAAAAACHQAAAAAANgAAAAABDAAAAAAADAAAAAAASgAAAAAANgAAAAABSgAAAAAASgAAAAAADAAAAAAADAAAAAAASgAAAAAANgAAAAACNgAAAAADNgAAAAABNgAAAAADNgAAAAADHQAAAAADNgAAAAAADAAAAAADMgAAAAAASgAAAAAASgAAAAAAMgAAAAAADAAAAAADDAAAAAADSgAAAAAANgAAAAADNgAAAAACNgAAAAABNgAAAAAANgAAAAAANgAAAAACHQAAAAACNgAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADDAAAAAACNgAAAAADNgAAAAACNgAAAAADNgAAAAACNgAAAAACSgAAAAAASgAAAAAAHQAAAAADNgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAABNgAAAAAANgAAAAABNgAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAANgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAABNgAAAAABNgAAAAADNgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAADNgAAAAAASgAAAAAAMgAAAAAASgAAAAAASgAAAAAAMgAAAAAANgAAAAAANgAAAAACNgAAAAABSgAAAAAASgAAAAAADAAAAAAADAAAAAADDAAAAAABgQAAAAAAHQAAAAADNgAAAAADSgAAAAAADAAAAAACDAAAAAACSgAAAAAANgAAAAAANgAAAAAANgAAAAACNgAAAAAASgAAAAAADAAAAAAADAAAAAABDAAAAAABgQAAAAAAHQAAAAADHQAAAAAANgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAACNgAAAAACNgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAABgQAAAAAAHQAAAAADHQAAAAAAHQAAAAAANgAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAADNgAAAAADNgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAHQAAAAACHQAAAAADHwAAAAABHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHwAAAAACHwAAAAAC + version: 6 + -1,1: + ind: -1,1 + tiles: SgAAAAAADwAAAAADDwAAAAABDwAAAAADSgAAAAAANgAAAAACNgAAAAADNgAAAAAANgAAAAACNgAAAAACNgAAAAAANgAAAAADNgAAAAADNgAAAAABSgAAAAAAHQAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAADNgAAAAADNgAAAAAANgAAAAACNgAAAAADNgAAAAACSgAAAAAAHQAAAAABgQAAAAAADAAAAAABDAAAAAADSgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAYAAAAAACgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAYAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIAAAAAABYAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAfQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABfQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAACfQAAAAADfQAAAAACfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: fAAAAAAAfAAAAAACfAAAAAAAfAAAAAADfAAAAAABfAAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAAfAAAAAACfAAAAAABfAAAAAACfAAAAAAAfAAAAAADfAAAAAADfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQwAAAAABQwAAAAACDAAAAAAASgAAAAAAgQAAAAAAgQAAAAAAfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQwAAAAABQwAAAAACDAAAAAADSgAAAAAAfAAAAAACgQAAAAAAfAAAAAABfAAAAAACgQAAAAAAfAAAAAACfAAAAAADfAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAQwAAAAAFQwAAAAADDAAAAAAASgAAAAAAfAAAAAADgQAAAAAAfAAAAAACfAAAAAADgQAAAAAAfAAAAAACfAAAAAABfAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQwAAAAABQwAAAAAEDAAAAAAASgAAAAAAfAAAAAACgQAAAAAAfAAAAAABfAAAAAACgQAAAAAAfAAAAAADfAAAAAABfAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAASgAAAAAAOQAAAAAAYAAAAAADOQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAASgAAAAAAOQAAAAAAYAAAAAABOQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAASgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAASgAAAAAAOQAAAAAAKQAAAAADOQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAAOQAAAAAAYAAAAAAAOQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADgQAAAAAASgAAAAAAOQAAAAAAYAAAAAAAOQAAAAAAYAAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAACgQAAAAAASgAAAAAAIAAAAAADgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAACgQAAAAAASgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAASgAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABHQAAAAAB + version: 6 + -2,0: + ind: -2,0 + tiles: YAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACHQAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAAAHQAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAADwAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAADwAAAAABDwAAAAADDwAAAAABDwAAAAACgQAAAAAADwAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADwAAAAACDwAAAAAADwAAAAABDwAAAAACKQAAAAADDwAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAACKQAAAAAADwAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAAAKQAAAAAADwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAABDwAAAAADDwAAAAABDwAAAAAAKQAAAAABDwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAAKQAAAAADDwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAABDwAAAAAADwAAAAAADwAAAAACKQAAAAABDwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAADgQAAAAAADwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAABgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAACgQAAAAAADAAAAAAASgAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAAC + version: 6 + 0,1: + ind: 0,1 + tiles: HQAAAAADHQAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAABSgAAAAAASgAAAAAASgAAAAAAHQAAAAACHQAAAAACSgAAAAAADAAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATwAAAAACTwAAAAADTwAAAAABTwAAAAABYAAAAAACYAAAAAADKQAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACKQAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYAAAAAACYAAAAAABKQAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAKQAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYAAAAAABYAAAAAADgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAKQAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAC + version: 6 + 1,1: + ind: 1,1 + tiles: DAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAAADAAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAACgQAAAAAAfwAAAAACfwAAAAABfwAAAAABfwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfQAAAAADfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABIAAAAAADgQAAAAAAfwAAAAACfQAAAAACfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfwAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAfwAAAAADfwAAAAABfwAAAAADfwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAcAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: HQAAAAAAHQAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAHQAAAAABHQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACSgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABgQAAAAAAKQAAAAABgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADSgAAAAAASgAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAACKQAAAAABKQAAAAACKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAKQAAAAABKQAAAAADSgAAAAAASgAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADSgAAAAAADAAAAAAAgQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAABKQAAAAAAKQAAAAADKQAAAAABDAAAAAADDAAAAAADgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAACKQAAAAADKQAAAAADKQAAAAACDAAAAAAADAAAAAABgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAAAKQAAAAACKQAAAAADgQAAAAAAKQAAAAADKQAAAAABDAAAAAAADAAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAADKQAAAAABKQAAAAADKQAAAAABKQAAAAADKQAAAAADgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABDAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACSgAAAAAADAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAACSgAAAAAADAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAADKQAAAAAAKQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAABSgAAAAAADAAAAAABDAAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAABSgAAAAAADAAAAAAADAAAAAACgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABSgAAAAAADAAAAAABDAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAD + version: 6 + 1,-1: + ind: 1,-1 + tiles: NgAAAAABNgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADSgAAAAAASgAAAAAANwAAAAACgQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADSgAAAAAASgAAAAAANwAAAAADgQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAASgAAAAAASgAAAAAANwAAAAADgQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAAAKQAAAAABbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAACKQAAAAABSgAAAAAASgAAAAAANwAAAAACgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAACKQAAAAADSgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAACKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACSgAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAACgQAAAAAAKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAADAAAAAACDAAAAAADgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADDAAAAAAADAAAAAADgQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAABKQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAACSgAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAABSgAAAAAADAAAAAACgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAACSgAAAAAASgAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAAAKQAAAAABSgAAAAAASgAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAADKQAAAAAASgAAAAAASgAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADHQAAAAAAHQAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAD + version: 6 + 1,-2: + ind: 1,-2 + tiles: fQAAAAABfQAAAAABgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAKQAAAAAAKQAAAAADIQAAAAABKQAAAAADKQAAAAAAfQAAAAADfQAAAAADfwAAAAADfQAAAAAAfQAAAAADgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAKQAAAAADKQAAAAADgQAAAAAAKQAAAAADKQAAAAADfQAAAAACfQAAAAABgQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAACKQAAAAADKQAAAAAAKQAAAAABKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAADKQAAAAADKQAAAAAAKQAAAAABKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAACKQAAAAADKQAAAAACKQAAAAACKQAAAAACKQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAC + version: 6 + 0,-2: + ind: 0,-2 + tiles: YAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAACYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAABYAAAAAADYAAAAAACbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAKQAAAAACKQAAAAABKQAAAAADKQAAAAABKQAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAABYAAAAAABYAAAAAACKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADYAAAAAACYAAAAAABgQAAAAAAKQAAAAACKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAABYAAAAAAAYAAAAAADgQAAAAAAKQAAAAABKQAAAAACKQAAAAABgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAABgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAACYAAAAAABYAAAAAABgQAAAAAAKQAAAAACKQAAAAACKQAAAAACgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABfwAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAAAYAAAAAADYAAAAAABgQAAAAAAKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAADNwAAAAAANwAAAAACNwAAAAACHQAAAAABHQAAAAABSgAAAAAASgAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAACDAAAAAADDAAAAAABDAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: cwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAACKQAAAAABKQAAAAACgQAAAAAAYAAAAAADcwAAAAAAcwAAAAACgQAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAAAYAAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAABcwAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAACKQAAAAADgQAAAAAAYAAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAACgQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAABKQAAAAADKQAAAAAAKQAAAAADgQAAAAAAYAAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADgQAAAAAAYAAAAAADcwAAAAABcwAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAABKQAAAAABKQAAAAACKQAAAAADgQAAAAAAYAAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAADgQAAAAAAQwAAAAAFQwAAAAABQwAAAAACQwAAAAABgQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAACgQAAAAAAQwAAAAAEQwAAAAACQwAAAAAFQwAAAAAFgQAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAYAAAAAADgQAAAAAADAAAAAAASgAAAAAADAAAAAACDAAAAAAAgQAAAAAAQwAAAAAEQwAAAAABQwAAAAAFQwAAAAACgQAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHQAAAAAC + version: 6 + -2,-2: + ind: -2,-2 + tiles: cwAAAAABcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAADgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADbAAAAAAAbAAAAAAAbAAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAABbAAAAAAAbAAAAAAAbAAAAAAAcwAAAAADgQAAAAAAcwAAAAACcwAAAAACcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAADgQAAAAAAfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAfAAAAAADfAAAAAAAfAAAAAACfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAACfAAAAAABfAAAAAAAfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAfAAAAAABfAAAAAACfAAAAAADfAAAAAADgQAAAAAAfAAAAAACfAAAAAACfAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAACfAAAAAACfAAAAAADfAAAAAACgQAAAAAAfAAAAAAAfAAAAAABfAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAACDAAAAAADDAAAAAABfAAAAAAAfAAAAAAAfAAAAAADfAAAAAACgQAAAAAAfAAAAAACfAAAAAADfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACfAAAAAADfAAAAAACfAAAAAABfAAAAAAAgQAAAAAAgQAAAAAAfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABSgAAAAAAMgAAAAAAMgAAAAAAfAAAAAAAfAAAAAACfAAAAAADfAAAAAABfAAAAAADfAAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADSgAAAAAAMgAAAAAASgAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: KQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAIAAAAAADbAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADKQAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAIAAAAAAAbAAAAAAAIAAAAAADIQAAAAAAYAAAAAADYAAAAAACYAAAAAADIQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADbAAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIQAAAAADIAAAAAADbAAAAAAAIAAAAAABgQAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABYAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAbAAAAAAAIAAAAAACYAAAAAABRAAAAAAARAAAAAAARAAAAAAAIAAAAAABYAAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAADcwAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAADYAAAAAAAdwAAAAADdwAAAAABdwAAAAACcwAAAAACcwAAAAACcwAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAdwAAAAACdwAAAAADdwAAAAADcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAdwAAAAABdwAAAAABdwAAAAABcwAAAAAAcwAAAAACgQAAAAAAfAAAAAADfAAAAAADfAAAAAADfAAAAAAAfAAAAAABfAAAAAADgQAAAAAAfAAAAAABfAAAAAAAYAAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAADfAAAAAACfAAAAAAAfAAAAAAAfAAAAAADfAAAAAAAfAAAAAABgQAAAAAAfAAAAAABfAAAAAACfAAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAACfAAAAAABfAAAAAADfAAAAAABfAAAAAABfAAAAAABgQAAAAAAfAAAAAAAfAAAAAABfAAAAAABcwAAAAABcwAAAAACcwAAAAACcwAAAAACcwAAAAADfAAAAAABfAAAAAACfAAAAAAAfAAAAAADfAAAAAADfAAAAAAAfAAAAAAAfAAAAAADfAAAAAABfAAAAAABfAAAAAADcwAAAAABcwAAAAABcwAAAAAAcwAAAAACcwAAAAADfAAAAAAAfAAAAAAAfAAAAAADfAAAAAABfAAAAAABfAAAAAAAfAAAAAACfAAAAAAAfAAAAAACfAAAAAACfAAAAAACeQAAAAAAeQAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAAfAAAAAABfAAAAAAAfAAAAAAAfAAAAAABfAAAAAAAfAAAAAABgQAAAAAAfAAAAAABfAAAAAADfAAAAAABeQAAAAAAeQAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAfAAAAAADfAAAAAAAfAAAAAACfAAAAAACfAAAAAADfAAAAAABgQAAAAAAfAAAAAADfAAAAAABfAAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAABfAAAAAABfAAAAAADfAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAADgQAAAAAAfAAAAAAAfAAAAAABYAAAAAAC + version: 6 + 0,-3: + ind: 0,-3 + tiles: YAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADZQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAZQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAADJQAAAAACJQAAAAADJQAAAAABJQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAADJQAAAAABJQAAAAACJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAAAYAAAAAADJQAAAAABJQAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAACYAAAAAADJQAAAAAAJQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABJQAAAAACJQAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAADJQAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADJQAAAAABJQAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADJQAAAAAAJQAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACJQAAAAACJQAAAAACJQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACJQAAAAAAJQAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACJQAAAAAAJQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAJQAAAAABJQAAAAABJQAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAABJQAAAAACJQAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAACJQAAAAACJQAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: HAAAAAAAHAAAAAAAHAAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAADKQAAAAADKQAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAKQAAAAABKQAAAAADHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAABKQAAAAAAIAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAACKQAAAAADKQAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACIAAAAAAAIAAAAAADIAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADfQAAAAADfQAAAAACfQAAAAACgQAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAcwAAAAADcwAAAAADcwAAAAACgQAAAAAAcwAAAAACcwAAAAABfQAAAAAAfQAAAAABfQAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAABcwAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAACgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAACIAAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAAB + version: 6 + 1,-3: + ind: 1,-3 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAJQAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACJQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAJQAAAAABYAAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADdwAAAAABdwAAAAAAdwAAAAADJQAAAAACYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAAAYAAAAAADdwAAAAACdwAAAAAAdwAAAAABJQAAAAADYAAAAAAAYAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABdwAAAAAAdwAAAAADdwAAAAADJQAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADJQAAAAAAYAAAAAADgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAACYAAAAAACgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAKQAAAAAAKQAAAAACYAAAAAAAYAAAAAACgQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABfwAAAAADgQAAAAAAgQAAAAAAfwAAAAABgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAKQAAAAACKQAAAAADIQAAAAACKQAAAAAAKQAAAAAB + version: 6 + 2,-2: + ind: 2,-2 + tiles: KQAAAAAAKQAAAAADKQAAAAABKQAAAAADKQAAAAABKQAAAAACKQAAAAABIQAAAAACKQAAAAADKQAAAAADKQAAAAABKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAACKQAAAAADKQAAAAABgQAAAAAAgQAAAAAAIQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAABKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAADKQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAAAKQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAABKQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACIQAAAAABKQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKQAAAAABKQAAAAABKQAAAAAAgQAAAAAAJwAAAAABJwAAAAABJwAAAAACgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKQAAAAABKQAAAAAAKQAAAAABgQAAAAAAJwAAAAACJwAAAAAAJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAACKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAACKQAAAAADKQAAAAACKQAAAAABgQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAAC + version: 6 + 2,-3: + ind: 2,-3 + tiles: gQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAABbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAIQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAdwAAAAAAYAAAAAACYAAAAAABgQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAADJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACdwAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAdwAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAACKQAAAAADIQAAAAAAKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAJAAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAACIQAAAAABKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: KQAAAAACgQAAAAAAKQAAAAACKQAAAAACgQAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAADKQAAAAADgQAAAAAAKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAAAJwAAAAADJwAAAAADJwAAAAAAJwAAAAABJwAAAAABKQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAABKQAAAAABKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAABJwAAAAACJwAAAAABJwAAAAACJwAAAAACJwAAAAADKQAAAAACKQAAAAACKQAAAAACKQAAAAAAKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAABKQAAAAABKQAAAAACJwAAAAABJwAAAAADJwAAAAABJwAAAAAAJwAAAAACKQAAAAABKQAAAAAAKQAAAAACKQAAAAABKQAAAAADKQAAAAADKQAAAAABKQAAAAABKQAAAAABKQAAAAADKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAfQAAAAADfQAAAAADfQAAAAADfQAAAAACIQAAAAAAIQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAADgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfwAAAAAAIQAAAAACIQAAAAACgQAAAAAAgQAAAAAAfwAAAAACgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABfwAAAAADfQAAAAABfQAAAAAAfQAAAAABfwAAAAABfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACgQAAAAAAfwAAAAAAfwAAAAADfwAAAAADfwAAAAADfQAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAACfQAAAAAAfwAAAAACfQAAAAABgQAAAAAAKQAAAAABKQAAAAABfwAAAAAAfQAAAAADfQAAAAADfQAAAAAAfwAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAADgQAAAAAAfQAAAAAAgQAAAAAAKQAAAAABKQAAAAADgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAKQAAAAADKQAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAD + version: 6 + 2,0: + ind: 2,0 + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAALwAAAAAAYAAAAAAAYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAACYAAAAAABLwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAALwAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAAYAAAAAABLwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACgQAAAAAAfQAAAAADfQAAAAACfwAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAfQAAAAAAfQAAAAAAfwAAAAACfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAACfQAAAAAAfQAAAAADfwAAAAADfQAAAAABfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAfQAAAAABfQAAAAABfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: KQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAABfwAAAAADfwAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfwAAAAAAgQAAAAAAgQAAAAAAfwAAAAABgQAAAAAAgQAAAAAAFgAAAAAFfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfwAAAAACgQAAAAAAfAAAAAACfAAAAAACgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfwAAAAAAgQAAAAAAfAAAAAABfAAAAAADgQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAABfwAAAAADgQAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAcQAAAAAAcQAAAAABcQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADbwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfwAAAAACgQAAAAAAgQAAAAAAfQAAAAADLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAAB + version: 6 + -3,-2: + ind: -3,-2 + tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAIAAAAAADIAAAAAADIAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABKQAAAAABKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAADKQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADKQAAAAABKQAAAAAAYAAAAAAAYAAAAAACKQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAB + version: 6 + -3,0: + ind: -3,0 + tiles: YAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAYAAAAAADYAAAAAACbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAADwAAAAAADwAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAACgQAAAAAADwAAAAAADwAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABgQAAAAAADwAAAAACDwAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAADwAAAAAADwAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAIAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAACgQAAAAAAYAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAIAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAABgQAAAAAAYAAAAAACKQAAAAADgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAIAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAADgQAAAAAAYAAAAAACKQAAAAACgQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACgQAAAAAAIAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAIAAAAAABgQAAAAAAYAAAAAADKQAAAAABgQAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAABIQAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAYAAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAHBwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABIAAAAAADYAAAAAAAYAAAAAABYAAAAAACIAAAAAAAKQAAAAAAKQAAAAAB + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAKBwAAAAAKBwAAAAAJgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAIgAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAABZQAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADgQAAAAAATwAAAAADTwAAAAACTwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAATwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAFBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACfQAAAAAAFgAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAADfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADFgAAAAAGfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: cAAAAAAAcQAAAAACcQAAAAACcQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAcQAAAAADcQAAAAACcQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAcQAAAAACcQAAAAACcQAAAAADcQAAAAACcQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAADIQAAAAAAIQAAAAACIQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAJAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: JQAAAAACJQAAAAACYAAAAAAAYAAAAAABZQAAAAADYAAAAAAAYAAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAACJQAAAAADYAAAAAABYAAAAAABgQAAAAAAcAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABZQAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAcAAAAAAAfQAAAAABfQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAABgQAAAAAAZQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAcQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAKQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAcQAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAgQAAAAAAZQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAIQAAAAACIQAAAAADIQAAAAABIQAAAAADIQAAAAADIQAAAAABIQAAAAAAIQAAAAADIQAAAAABIQAAAAABIQAAAAADKQAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADIQAAAAADIQAAAAABIQAAAAAAIQAAAAADIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABKQAAAAADKQAAAAACKQAAAAACKQAAAAAAKQAAAAADKQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: YAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACJQAAAAACYAAAAAADYAAAAAABZQAAAAADYAAAAAAAYAAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADJQAAAAAAYAAAAAACYAAAAAABZQAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADJQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACfQAAAAACfQAAAAABfQAAAAABfQAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACJQAAAAADYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAABfQAAAAAAfQAAAAABfQAAAAADfQAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABJQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAALwAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAALwAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAKQAAAAACYAAAAAADYAAAAAADgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAfQAAAAABfQAAAAACfQAAAAACfwAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAKQAAAAACKQAAAAACKQAAAAABgQAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: YAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABDAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAADAAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABLwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACLwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACLwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAALwAAAAAAYAAAAAAALwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACJAAAAAAAJAAAAAADKQAAAAAAgQAAAAAAgAAAAAAAUgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABJAAAAAACJAAAAAACKQAAAAACgQAAAAAAgAAAAAAAEgAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAJAAAAAABJAAAAAADKQAAAAABgQAAAAAAgAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAABJAAAAAACJAAAAAAAKQAAAAADgQAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: KQAAAAABKQAAAAABKQAAAAADKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAACgQAAAAAAKQAAAAADKQAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAACKQAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAACgQAAAAAAKQAAAAACKQAAAAABKQAAAAAAKQAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAKQAAAAADKQAAAAABKQAAAAACKQAAAAADKQAAAAADKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAABKQAAAAADKQAAAAACKQAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAABKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAIQAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACDAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAIQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACDAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADDAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAAAgQAAAAAAJwAAAAADJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAACJwAAAAACJwAAAAADgQAAAAAAJwAAAAABJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAADgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: fQAAAAAAfwAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAABYAAAAAABbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAABgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAAAgQAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAADKQAAAAADKQAAAAACKQAAAAABKQAAAAABKQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAAAKQAAAAACKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAADKQAAAAABKQAAAAACKQAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAACKQAAAAACbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAACKQAAAAACbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAKQAAAAABKQAAAAACbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAKQAAAAACKQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: gAAAAAAAgAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAKQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: YAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAKQAAAAADbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADJAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAABYAAAAAABYAAAAAADYAAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: gQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: gAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: EgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAgQAAAAAAEgAAAAAAIAAAAAACgQAAAAAAKQAAAAADgQAAAAAAKQAAAAACJAAAAAACJAAAAAABKQAAAAADgQAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAKQAAAAAAKQAAAAADKQAAAAACKQAAAAACJAAAAAABJAAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAJAAAAAABJAAAAAAAKQAAAAAAgQAAAAAAAAAAAAAAUgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACKQAAAAABKQAAAAABKQAAAAADgQAAAAAAgAAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAEgAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: gAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: gAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAfQAAAAABfQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfwAAAAACfQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAgQAAAAAAfQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-4: + ind: -4,-4 + tiles: gAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + 1,-5: + ind: 1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAALBwAAAAAGBwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: AAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAABJQAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAABYAAAAAACYAAAAAADUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAJQAAAAAAJQAAAAADYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADZQAAAAACZQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAABZQAAAAAAZQAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAbAAAAAAAbAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: gQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-3: + ind: -5,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-4: + ind: -5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + version: 6 + 4,-3: + ind: 4,-3 + tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-5: + ind: -4,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + version: 6 + -5,-5: + ind: -5,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAA + version: 6 + 3,-4: + ind: 3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-4: + ind: 4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: gAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 720: 42.99683,-1.538444 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 721: 39.96558,-1.975944 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 974: -57,-9 + 975: -56,-9 + 976: -55,-9 + 977: -55,-10 + 978: -56,-10 + 979: -57,-10 + 980: -57,-11 + 981: -56,-11 + 982: -55,-11 + 983: -55,-12 + 984: -56,-12 + 985: -57,-12 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 725: 40,-3 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 2778: 35,-25 + 2779: 35,-26 + 2780: 32,-25 + 2781: 32,-24 + 2782: 32,-22 + 2893: 7,-38 + 3024: 15,-40 + 3025: 15,-41 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: BotLeft + decals: + 722: 43,-3 + 723: 42,-3 + 724: 41,-3 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 2894: 7,-38 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 2895: 7,-38 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1785: 49,-37 + 1786: 49,-38 + 2397: -7,-51 + 2398: -5,-53 + - node: + color: '#C74EBDB2' + id: BrickCornerOverlayNE + decals: + 2990: -18,-25 + - node: + color: '#EFB34196' + id: BrickCornerOverlayNE + decals: + 2540: 5,51 + 3155: -3,42 + - node: + color: '#F9801DB2' + id: BrickCornerOverlayNE + decals: + 3003: -22,-25 + - node: + color: '#FED83DB2' + id: BrickCornerOverlayNE + decals: + 2996: -15,-25 + - node: + color: '#C74EBDB2' + id: BrickCornerOverlayNW + decals: + 2991: -20,-25 + - node: + color: '#EFB34196' + id: BrickCornerOverlayNW + decals: + 2541: 3,51 + 3154: -6,42 + - node: + color: '#F9801DB2' + id: BrickCornerOverlayNW + decals: + 3002: -23,-25 + - node: + color: '#FED83DB2' + id: BrickCornerOverlayNW + decals: + 2997: -16,-25 + - node: + color: '#C74EBDB2' + id: BrickCornerOverlaySE + decals: + 2993: -18,-26 + - node: + color: '#EFB34196' + id: BrickCornerOverlaySE + decals: + 2542: 5,49 + 3152: -3,41 + - node: + color: '#F9801DB2' + id: BrickCornerOverlaySE + decals: + 3000: -22,-26 + - node: + color: '#FED83DB2' + id: BrickCornerOverlaySE + decals: + 2998: -15,-26 + - node: + color: '#C74EBDB2' + id: BrickCornerOverlaySW + decals: + 2992: -20,-26 + - node: + color: '#EFB34196' + id: BrickCornerOverlaySW + decals: + 2494: 7,40 + 2543: 3,49 + 3153: -6,41 + - node: + color: '#F9801DB2' + id: BrickCornerOverlaySW + decals: + 3001: -23,-26 + - node: + color: '#FED83DB2' + id: BrickCornerOverlaySW + decals: + 2999: -16,-26 + - node: + color: '#EFB34196' + id: BrickLineOverlayE + decals: + 2505: 9,50 + 2506: 9,48 + 2507: 9,47 + 2515: 19,50 + 2526: 19,51 + 2527: 9,51 + 2546: 5,50 + 2548: 3,50 + - node: + color: '#C74EBDB2' + id: BrickLineOverlayN + decals: + 2994: -19,-25 + 3005: -20,-27 + 3006: -18,-27 + 3012: -19,-27 + - node: + color: '#EFB34196' + id: BrickLineOverlayN + decals: + 2508: 10,46 + 2509: 11,46 + 2510: 15,46 + 2511: 16,46 + 2545: 4,51 + 2551: 4,49 + 3156: -4,42 + 3157: -5,42 + - node: + color: '#F9801DB2' + id: BrickLineOverlayN + decals: + 3004: -23,-27 + 3013: -22,-27 + - node: + color: '#FED83DB2' + id: BrickLineOverlayN + decals: + 3007: -15,-27 + 3011: -16,-27 + - node: + color: '#C74EBDB2' + id: BrickLineOverlayS + decals: + 2995: -19,-26 + - node: + color: '#EFB34196' + id: BrickLineOverlayS + decals: + 2547: 4,49 + 2549: 4,51 + 3158: -5,41 + 3159: -4,41 + - node: + color: '#EFB34196' + id: BrickLineOverlayW + decals: + 2495: 7,41 + 2496: 7,42 + 2497: 7,43 + 2498: 7,44 + 2499: 7,45 + 2500: 7,46 + 2501: 7,47 + 2502: 7,48 + 2503: 7,49 + 2504: 7,50 + 2512: 17,47 + 2513: 17,48 + 2514: 17,50 + 2525: 17,51 + 2528: 7,51 + 2544: 3,50 + 2550: 5,50 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 885: -53,8 + 886: -52,7 + 1778: 42,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 883: -55,8 + 887: -57,7 + 1777: 40,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 888: -52,5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 889: -57,5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 631: 22,4 + 896: -53,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 897: -55,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 632: 22,9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 627: 22,8 + 628: 22,7 + 629: 22,6 + 630: 22,5 + 898: -52,6 + 2575: 27,42 + 2576: 27,43 + 2577: 30,42 + 2578: 30,43 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 884: -54,8 + 895: -56,7 + 1779: 41,-40 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 890: -56,5 + 891: -55,5 + 892: -54,5 + 893: -53,5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 894: -57,6 + 2579: 31,42 + 2580: 31,43 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 735: -1,-34 + 2381: -4,-50 + 2445: 32,-38 + 3138: -28,42 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 151: 18,-19 + 152: 19,-18 + 2382: -8,-50 + 2444: 29,-38 + 3139: -33,42 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 734: -1,-39 + 2383: -4,-54 + 2453: 32,-40 + 3140: -28,40 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 2384: -8,-54 + 2449: 29,-40 + 3141: -33,40 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 2373: -8,-44 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 2374: -8,-48 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 732: -2,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 156: 19,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 731: -2,-39 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 726: -2,-40 + 727: -1,-38 + 728: -1,-37 + 729: -1,-36 + 730: -1,-35 + 733: -2,-33 + 1866: 17,30 + 2375: -8,-47 + 2376: -8,-46 + 2377: -8,-45 + 2385: -4,-53 + 2386: -4,-52 + 2387: -4,-51 + 2452: 32,-39 + 3142: -28,41 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 154: 20,-18 + 155: 21,-18 + 2388: -5,-50 + 2389: -6,-50 + 2390: -7,-50 + 2446: 30,-38 + 2450: 31,-38 + 3148: -32,42 + 3149: -31,42 + 3150: -30,42 + 3151: -29,42 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 2391: -5,-54 + 2392: -6,-54 + 2393: -7,-54 + 2447: 30,-40 + 2448: 31,-40 + 3144: -32,40 + 3145: -31,40 + 3146: -30,40 + 3147: -29,40 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 150: 18,-20 + 153: 18,-21 + 1867: 12,30 + 2378: -8,-47 + 2379: -8,-46 + 2380: -8,-45 + 2394: -8,-53 + 2395: -8,-52 + 2396: -8,-51 + 2451: 29,-39 + 3143: -33,41 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteCornerNe + decals: + 3226: -27,43 + 3236: -36,4 + 3238: -42,5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 620: 24,9 + 623: 24,8 + - node: + color: '#4B709CFF' + id: BrickTileWhiteCornerNe + decals: + 464: -24,-35 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 241: -5,-33 + 242: -5,-38 + 505: -25,-26 + 516: -29,-26 + 568: -24,-39 + 2417: 28,-35 + 2439: 37,-37 + - node: + color: '#765428FF' + id: BrickTileWhiteCornerNe + decals: + 3390: -53,-17 + - node: + color: '#9FED58B3' + id: BrickTileWhiteCornerNe + decals: + 2590: -46,-30 + - node: + color: '#BC863FFF' + id: BrickTileWhiteCornerNe + decals: + 3279: -49,3 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 848: -11,-47 + 2245: 16,-35 + 2246: 12,-43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 1602: 51,-3 + 1766: 42,-41 + 1780: 42,-40 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 3160: -2,43 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 585: -30,-27 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteCornerNw + decals: + 3227: -34,43 + 3237: -44,5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 610: 21,8 + 615: 20,8 + 621: 23,9 + 622: 23,8 + 3268: -44,-9 + - node: + color: '#4B709CFF' + id: BrickTileWhiteCornerNw + decals: + 463: -27,-35 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 235: -10,-38 + 236: -10,-33 + 504: -27,-26 + 515: -33,-26 + 569: -28,-39 + 738: -2,-39 + 2416: 27,-35 + - node: + color: '#765428FF' + id: BrickTileWhiteCornerNw + decals: + 3389: -58,-17 + - node: + color: '#9FED58B3' + id: BrickTileWhiteCornerNw + decals: + 2591: -48,-30 + - node: + color: '#BC863FFF' + id: BrickTileWhiteCornerNw + decals: + 3278: -51,3 + 3415: -51,-2 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 849: -14,-47 + 2239: 6,-43 + 2240: 14,-35 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 1601: 49,-3 + 1781: 40,-40 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 3171: -7,43 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 583: -32,-27 + 584: -32,-27 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteCornerSe + decals: + 3228: -27,39 + 3240: -36,3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 619: 24,4 + 624: 24,5 + 625: 24,5 + - node: + color: '#4B709CFF' + id: BrickTileWhiteCornerSe + decals: + 466: -24,-37 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 237: -5,-35 + 238: -5,-40 + 502: -25,-30 + 514: -29,-30 + 566: -24,-42 + 2437: 34,-42 + 2438: 37,-38 + - node: + color: '#765428FF' + id: BrickTileWhiteCornerSe + decals: + 3392: -53,-24 + - node: + color: '#9FED58B3' + id: BrickTileWhiteCornerSe + decals: + 2588: -46,-31 + - node: + color: '#BC863FFF' + id: BrickTileWhiteCornerSe + decals: + 3287: -49,-5 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 847: -11,-51 + 2241: 12,-45 + 2242: 16,-44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 1603: 51,-4 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 3161: -2,40 + 3176: 10,40 + 3181: 19,39 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 582: -30,-29 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteCornerSw + decals: + 3229: -34,39 + 3239: -44,3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 611: 21,5 + 614: 20,5 + 618: 23,4 + 626: 23,5 + 3267: -44,-11 + - node: + color: '#4B709CFF' + id: BrickTileWhiteCornerSw + decals: + 465: -27,-37 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 239: -10,-40 + 240: -10,-35 + 503: -27,-30 + 517: -33,-30 + 567: -28,-42 + 737: -2,-34 + 2440: 27,-42 + - node: + color: '#765428FF' + id: BrickTileWhiteCornerSw + decals: + 3391: -58,-24 + - node: + color: '#9FED58B3' + id: BrickTileWhiteCornerSw + decals: + 2589: -48,-31 + - node: + color: '#BC863FFF' + id: BrickTileWhiteCornerSw + decals: + 3288: -51,-5 + 3414: -51,1 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 850: -14,-51 + 2243: 6,-45 + 2244: 14,-44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 1604: 49,-4 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 3169: -7,40 + 3180: 17,39 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 586: -32,-29 + - node: + color: '#169C9CFF' + id: BrickTileWhiteEndE + decals: + 415: -15,-30 + - node: + color: '#4B709CFF' + id: BrickTileWhiteEndE + decals: + 471: -25,-36 + - node: + color: '#F38BAAFF' + id: BrickTileWhiteEndE + decals: + 409: -21,-30 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndS + decals: + 1767: 42,-42 + - node: + color: '#169C9CFF' + id: BrickTileWhiteEndW + decals: + 414: -17,-30 + - node: + color: '#4B709CFF' + id: BrickTileWhiteEndW + decals: + 472: -26,-36 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndW + decals: + 1765: 40,-41 + - node: + color: '#F38BAAFF' + id: BrickTileWhiteEndW + decals: + 408: -23,-30 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteInnerNe + decals: + 3257: -44,1 + 3265: -42,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 1368: 33,-8 + - node: + color: '#4B709CFF' + id: BrickTileWhiteInnerNe + decals: + 484: -27,-37 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 2443: 28,-37 + - node: + color: '#9FED58B3' + id: BrickTileWhiteInnerNe + decals: + 2598: -48,-31 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerNe + decals: + 3296: -53,-2 + 3297: -53,3 + 3334: -53,1 + 3335: -53,2 + 3336: -53,3 + 3337: -53,-3 + 3338: -53,-4 + 3339: -53,-5 + 3340: -53,-6 + 3341: -53,-7 + 3342: -53,-8 + 3343: -53,-9 + 3344: -53,-10 + 3345: -53,-11 + 3346: -53,-12 + 3347: -53,-13 + 3348: -53,-15 + 3366: -58,3 + 3367: -57,3 + 3368: -56,3 + 3369: -55,3 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 2130: 3,-48 + 2133: 3,-45 + 2160: 17,-37 + 2161: 17,-36 + 2162: 17,-35 + 2163: 17,-34 + 2164: 15,-34 + 2165: 14,-34 + 2166: 13,-34 + 2174: 12,-42 + 2175: 11,-42 + 2176: 10,-42 + 2177: 9,-42 + 2178: 8,-42 + 2179: 7,-42 + 2180: 6,-42 + 2181: 5,-42 + 2189: 4,-34 + 2190: 8,-34 + 2191: 11,-40 + 2223: 8,-47 + 2224: 21,-44 + 2229: 13,-46 + 2238: 18,-45 + 2290: 5,-39 + 2343: -9,-42 + 2344: -8,-42 + 2345: -7,-42 + 2346: -7,-43 + 2352: -7,-46 + 2353: -7,-45 + 2356: -7,-49 + 2357: -6,-49 + 2358: -5,-49 + 2359: -5,-49 + 2360: -4,-49 + 2361: -3,-49 + 2362: -3,-50 + 2363: -3,-51 + 2364: -3,-52 + 2365: -3,-53 + 2366: -3,-54 + 2367: -3,-55 + 2918: 17,-42 + 2920: 17,-38 + 2921: 17,-39 + 2922: 17,-40 + 2923: 17,-43 + 2928: 20,-43 + 2929: 19,-43 + 2930: 18,-43 + 3020: 14,-42 + - node: + color: '#D4D4D428' + id: BrickTileWhiteInnerNe + decals: + 1375: 30,-3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 1434: 52,-6 + 1435: 52,-7 + 1436: 53,-8 + 1437: 54,-8 + 1438: 54,-9 + 1439: 54,-14 + 1440: 54,-16 + 1441: 54,-18 + 1442: 54,-17 + 1443: 54,-19 + 1444: 52,-8 + 1445: 54,-15 + 1446: 54,-13 + 1447: 50,-6 + 1448: 48,-6 + 1471: 47,-8 + 1472: 46,-8 + 1491: 40,-15 + 1492: 40,-14 + 1493: 40,-13 + 1494: 40,-12 + 1495: 39,-11 + 1496: 37,-11 + 1497: 36,-11 + 1498: 35,-11 + 1499: 34,-11 + 1500: 33,-11 + 1501: 31,-11 + 1502: 30,-11 + 1553: 42,-21 + 1554: 42,-20 + 1575: 52,-16 + 1576: 51,-16 + 1577: 49,-16 + 1578: 48,-16 + 1579: 47,-16 + 1591: 47,-15 + 1592: 47,-14 + 1593: 47,-13 + 1594: 47,-12 + 1595: 47,-11 + 1596: 47,-10 + 1621: 40,-24 + 1623: 42,-24 + 1640: 39,-25 + 1641: 42,-25 + 1642: 42,-26 + 1643: 42,-28 + 1644: 42,-29 + 1645: 42,-30 + 1675: 38,-35 + 1697: 38,-31 + 1698: 37,-31 + 1699: 36,-31 + 1700: 35,-31 + 1701: 34,-31 + 1702: 33,-31 + 1703: 32,-31 + 1704: 31,-31 + 1705: 30,-31 + 1715: 40,-32 + 1728: 44,-32 + 1729: 43,-32 + 1730: 42,-32 + 1731: 44,-33 + 1732: 44,-34 + 1733: 43,-35 + 1734: 43,-36 + 1743: 39,-37 + 1751: 43,-39 + 1752: 43,-40 + 1753: 43,-41 + 1754: 43,-42 + 1772: 40,-39 + 1775: 39,-39 + 1783: 37,-42 + 2783: 54,-10 + 2899: 40,-25 + 2905: 42,-23 + 2907: 42,-22 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 1808: 6,38 + 1809: 5,38 + 1810: 4,38 + 1811: 8,38 + 1812: 8,37 + 1813: 8,36 + 1814: 8,35 + 1815: 8,34 + 1816: 8,31 + 1817: 8,30 + 1862: 5,31 + 1883: 19,31 + 1898: 25,23 + 1899: 22,28 + 1900: 23,34 + 1901: 25,34 + 1902: 25,40 + 1903: 23,40 + 1917: 22,31 + 2552: 3,49 + 2556: 19,43 + 2569: 9,46 + 3119: 11,31 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteInnerNw + decals: + 3256: -35,1 + - node: + color: '#4B709CFF' + id: BrickTileWhiteInnerNw + decals: + 481: -24,-37 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 745: -1,-39 + - node: + color: '#9FED58B3' + id: BrickTileWhiteInnerNw + decals: + 2595: -46,-31 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNw + decals: + 1025: -48,-5 + 1026: -48,-5 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerNw + decals: + 3298: -53,3 + 3299: -55,3 + 3300: -56,3 + 3301: -57,3 + 3302: -58,3 + 3303: -58,2 + 3304: -58,1 + 3305: -58,0 + 3306: -58,-1 + 3307: -58,-8 + 3308: -58,-9 + 3309: -58,-10 + 3310: -58,-11 + 3311: -58,-12 + 3312: -58,-13 + 3313: -58,-14 + 3314: -58,-15 + 3402: -47,-5 + 3410: -47,-2 + 3419: -50,-2 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 2136: 5,-45 + 2141: 5,-42 + 2142: 6,-42 + 2143: 7,-42 + 2144: 8,-42 + 2145: 9,-42 + 2146: 10,-42 + 2147: 11,-42 + 2148: 12,-42 + 2149: 13,-42 + 2150: 13,-41 + 2151: 13,-40 + 2152: 13,-38 + 2153: 13,-37 + 2154: 13,-36 + 2155: 13,-35 + 2156: 13,-34 + 2157: 14,-34 + 2158: 15,-34 + 2159: 17,-34 + 2193: 6,-34 + 2194: 10,-34 + 2291: 9,-39 + 2330: -9,-55 + 2331: -9,-53 + 2332: -9,-52 + 2333: -9,-51 + 2334: -9,-50 + 2335: -9,-48 + 2336: -9,-47 + 2337: -9,-46 + 2338: -9,-44 + 2339: -9,-43 + 2340: -9,-42 + 2341: -8,-42 + 2342: -7,-42 + 2368: -3,-49 + 2369: -4,-49 + 2370: -5,-49 + 2371: -6,-49 + 2409: -1,-48 + 2924: 18,-43 + 2925: 19,-43 + 2926: 20,-43 + 2927: 21,-43 + 3021: 16,-42 + - node: + color: '#D4D4D428' + id: BrickTileWhiteInnerNw + decals: + 1376: 33,-3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 1449: 48,-6 + 1450: 48,-7 + 1451: 48,-8 + 1452: 47,-8 + 1453: 46,-8 + 1454: 46,-9 + 1455: 46,-10 + 1456: 46,-11 + 1457: 46,-12 + 1458: 46,-13 + 1459: 46,-14 + 1460: 46,-15 + 1469: 54,-8 + 1470: 53,-8 + 1473: 50,-6 + 1485: 52,-6 + 1503: 30,-11 + 1504: 30,-12 + 1505: 30,-13 + 1523: 39,-19 + 1526: 37,-18 + 1527: 37,-17 + 1528: 37,-16 + 1529: 37,-15 + 1530: 37,-14 + 1539: 31,-11 + 1540: 33,-11 + 1542: 34,-11 + 1543: 35,-11 + 1544: 36,-11 + 1545: 37,-11 + 1546: 39,-11 + 1580: 48,-16 + 1581: 49,-16 + 1582: 51,-16 + 1583: 52,-16 + 1584: 53,-15 + 1585: 53,-14 + 1586: 53,-13 + 1587: 53,-12 + 1588: 53,-11 + 1589: 53,-10 + 1590: 53,-16 + 1622: 42,-24 + 1624: 40,-24 + 1625: 40,-25 + 1626: 39,-25 + 1627: 39,-26 + 1628: 39,-27 + 1629: 39,-28 + 1630: 39,-29 + 1631: 40,-30 + 1673: 30,-34 + 1676: 40,-35 + 1688: 30,-35 + 1706: 30,-31 + 1707: 31,-31 + 1708: 32,-31 + 1709: 33,-31 + 1710: 34,-31 + 1711: 35,-31 + 1712: 36,-31 + 1713: 37,-31 + 1714: 38,-31 + 1716: 42,-32 + 1717: 43,-32 + 1718: 44,-32 + 1719: 40,-36 + 1720: 40,-37 + 1721: 39,-37 + 1762: 39,-42 + 1763: 39,-40 + 1764: 43,-39 + 1773: 40,-39 + 1774: 39,-39 + 2898: 42,-25 + 2903: 40,-23 + 2913: 40,-19 + 2914: 40,-20 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 1829: 8,38 + 1830: 6,38 + 1831: 5,38 + 1832: 4,38 + 1833: 4,37 + 1834: 4,34 + 1835: 4,31 + 1836: 4,30 + 1863: 7,31 + 1884: 21,31 + 1904: 25,40 + 1905: 27,40 + 1906: 27,34 + 1907: 25,28 + 1908: 25,34 + 1918: 28,31 + 2553: 5,49 + 2558: 20,43 + 2570: 17,46 + 3120: 18,31 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 1369: 33,-4 + - node: + color: '#4B709CFF' + id: BrickTileWhiteInnerSe + decals: + 483: -27,-35 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 427: -18,-29 + 2441: 34,-38 + - node: + color: '#80C71FFF' + id: BrickTileWhiteInnerSe + decals: + 1422: 53,-19 + - node: + color: '#8932B8FF' + id: BrickTileWhiteInnerSe + decals: + 1423: 49,-19 + - node: + color: '#9FED58B3' + id: BrickTileWhiteInnerSe + decals: + 2596: -48,-30 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerSe + decals: + 3315: -58,-15 + 3316: -57,-15 + 3317: -54,-15 + 3318: -53,-15 + 3319: -53,-13 + 3320: -53,-12 + 3321: -53,-11 + 3322: -53,-10 + 3323: -53,-9 + 3324: -53,-8 + 3325: -53,-7 + 3326: -53,-6 + 3327: -53,-4 + 3328: -53,-5 + 3329: -53,-3 + 3330: -53,-2 + 3331: -53,1 + 3332: -53,2 + 3333: -53,3 + 3349: -53,-15 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 2131: 3,-45 + 2132: 3,-42 + 2192: 11,-38 + 2195: 21,-42 + 2196: 17,-36 + 2197: 17,-35 + 2198: 17,-34 + 2199: 21,-44 + 2200: 20,-44 + 2201: 19,-44 + 2202: 18,-44 + 2203: 18,-45 + 2204: 17,-45 + 2205: 16,-45 + 2206: 15,-45 + 2207: 14,-45 + 2208: 13,-45 + 2209: 13,-46 + 2210: 12,-46 + 2211: 11,-46 + 2212: 10,-46 + 2213: 9,-46 + 2214: 8,-46 + 2215: 8,-47 + 2216: 5,-47 + 2217: 6,-47 + 2218: 7,-47 + 2292: 5,-35 + 2317: -3,-55 + 2318: -3,-54 + 2319: -3,-53 + 2320: -3,-52 + 2321: -3,-51 + 2322: -3,-50 + 2323: -3,-49 + 2324: -4,-55 + 2325: -5,-55 + 2326: -6,-55 + 2327: -7,-55 + 2328: -8,-55 + 2329: -9,-55 + 2347: -7,-43 + 2348: -7,-42 + 2349: -7,-45 + 2350: -7,-46 + 2351: -7,-48 + 2919: 17,-40 + 2931: 17,-42 + 2932: 17,-39 + 2933: 17,-38 + 2934: 17,-37 + 3022: 14,-39 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 1372: 31,-9 + 1461: 54,-8 + 1462: 54,-9 + 1463: 54,-13 + 1464: 54,-14 + 1465: 54,-15 + 1466: 54,-16 + 1467: 54,-17 + 1468: 54,-18 + 1520: 42,-21 + 1521: 42,-20 + 1522: 42,-19 + 1524: 38,-18 + 1525: 37,-18 + 1533: 34,-13 + 1534: 33,-13 + 1535: 32,-13 + 1536: 30,-13 + 1549: 40,-11 + 1550: 40,-12 + 1551: 40,-13 + 1552: 40,-14 + 1564: 47,-15 + 1565: 47,-14 + 1566: 47,-13 + 1567: 47,-12 + 1568: 47,-11 + 1569: 47,-10 + 1570: 47,-9 + 1571: 48,-9 + 1572: 49,-9 + 1599: 51,-9 + 1600: 52,-9 + 1638: 39,-29 + 1648: 40,-30 + 1649: 42,-30 + 1650: 42,-29 + 1651: 42,-28 + 1652: 42,-26 + 1653: 42,-25 + 1654: 42,-24 + 1671: 28,-31 + 1674: 38,-31 + 1677: 38,-35 + 1689: 30,-35 + 1690: 31,-35 + 1691: 32,-35 + 1692: 33,-35 + 1693: 34,-35 + 1694: 35,-35 + 1695: 36,-35 + 1696: 37,-35 + 1722: 43,-36 + 1723: 43,-35 + 1724: 43,-34 + 1725: 44,-34 + 1726: 44,-33 + 1727: 44,-32 + 1740: 40,-37 + 1741: 39,-37 + 1742: 42,-37 + 1755: 39,-42 + 1756: 40,-42 + 1757: 41,-42 + 1758: 43,-42 + 1759: 43,-41 + 1760: 43,-40 + 1761: 43,-39 + 1784: 37,-40 + 2784: 54,-12 + 2901: 40,-23 + 2904: 42,-23 + 2906: 42,-22 + 2912: 39,-18 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSe + decals: + 1818: 8,30 + 1819: 7,30 + 1820: 6,30 + 1821: 5,30 + 1822: 4,30 + 1823: 8,31 + 1824: 8,34 + 1825: 8,35 + 1826: 8,36 + 1827: 8,37 + 1828: 8,38 + 1865: 5,37 + 1882: 19,34 + 1909: 22,30 + 1910: 23,36 + 1911: 25,36 + 1912: 25,25 + 1920: 22,33 + 2554: 3,51 + 2557: 19,42 + 2568: 10,45 + 2582: 32,42 + 2583: 25,42 + 2585: 23,42 + 3121: 11,33 + - node: + color: '#F9801DFF' + id: BrickTileWhiteInnerSe + decals: + 1424: 45,-19 + - node: + color: '#4B709CFF' + id: BrickTileWhiteInnerSw + decals: + 482: -24,-35 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 426: -20,-29 + 744: -1,-34 + - node: + color: '#80C71FFF' + id: BrickTileWhiteInnerSw + decals: + 1427: 53,-19 + - node: + color: '#8932B8FF' + id: BrickTileWhiteInnerSw + decals: + 1426: 49,-19 + - node: + color: '#9FED58B3' + id: BrickTileWhiteInnerSw + decals: + 2597: -46,-30 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSw + decals: + 1027: -48,-2 + 1028: -48,-2 + - node: + color: '#BC863FFF' + id: BrickTileWhiteInnerSw + decals: + 3350: -53,-15 + 3351: -54,-15 + 3352: -57,-15 + 3353: -58,-15 + 3354: -58,-14 + 3355: -58,-13 + 3356: -58,-12 + 3357: -58,-11 + 3358: -58,-10 + 3359: -58,-9 + 3360: -58,-8 + 3361: -58,-7 + 3362: -58,0 + 3363: -58,1 + 3364: -58,2 + 3365: -58,3 + 3405: -47,2 + 3411: -47,-2 + 3418: -50,1 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 2134: 5,-42 + 2135: 5,-45 + 2167: 13,-34 + 2168: 13,-35 + 2169: 13,-36 + 2170: 13,-37 + 2171: 13,-38 + 2172: 13,-40 + 2173: 13,-41 + 2219: 6,-47 + 2220: 7,-47 + 2221: 8,-47 + 2222: 9,-46 + 2225: 10,-46 + 2226: 11,-46 + 2227: 12,-46 + 2228: 13,-46 + 2230: 14,-45 + 2231: 16,-45 + 2232: 15,-45 + 2233: 17,-45 + 2234: 18,-45 + 2235: 19,-44 + 2236: 20,-44 + 2237: 21,-44 + 2289: 9,-35 + 2298: -9,-48 + 2299: -5,-46 + 2300: -9,-47 + 2301: -9,-46 + 2302: -9,-44 + 2303: -9,-43 + 2304: -9,-42 + 2305: -9,-50 + 2306: -9,-51 + 2307: -9,-52 + 2308: -9,-53 + 2310: -9,-55 + 2311: -8,-55 + 2312: -7,-55 + 2313: -6,-55 + 2314: -5,-55 + 2315: -4,-55 + 2316: -3,-55 + 2405: -1,-42 + 3023: 16,-39 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 1371: 33,-9 + 1474: 48,-7 + 1475: 48,-6 + 1476: 46,-8 + 1477: 46,-9 + 1478: 46,-10 + 1479: 46,-11 + 1480: 46,-12 + 1481: 46,-13 + 1482: 46,-14 + 1506: 30,-13 + 1507: 32,-13 + 1508: 33,-13 + 1509: 34,-13 + 1510: 36,-13 + 1511: 37,-13 + 1512: 37,-14 + 1513: 37,-15 + 1514: 37,-16 + 1515: 37,-17 + 1516: 37,-18 + 1517: 38,-18 + 1518: 39,-18 + 1519: 39,-19 + 1537: 30,-12 + 1538: 30,-11 + 1555: 51,-9 + 1556: 52,-9 + 1557: 53,-9 + 1558: 53,-10 + 1559: 53,-11 + 1560: 53,-12 + 1561: 53,-13 + 1562: 53,-14 + 1563: 53,-15 + 1597: 48,-9 + 1598: 49,-9 + 1632: 40,-24 + 1633: 39,-25 + 1634: 39,-26 + 1635: 39,-27 + 1636: 39,-28 + 1637: 39,-29 + 1639: 40,-29 + 1646: 42,-30 + 1647: 40,-30 + 1672: 30,-31 + 1678: 38,-35 + 1679: 37,-35 + 1680: 36,-35 + 1681: 35,-35 + 1682: 34,-35 + 1683: 33,-35 + 1684: 32,-35 + 1685: 31,-35 + 1686: 30,-35 + 1687: 30,-34 + 1735: 44,-34 + 1736: 43,-37 + 1737: 42,-37 + 1738: 40,-37 + 1739: 39,-37 + 1744: 40,-35 + 1745: 40,-36 + 1746: 43,-42 + 1747: 41,-42 + 1748: 40,-42 + 1749: 39,-42 + 1750: 39,-40 + 1770: 42,-41 + 1776: 39,-39 + 2900: 42,-23 + 2902: 40,-23 + 2909: 40,-20 + 2910: 40,-19 + 2911: 40,-18 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 1841: 4,37 + 1842: 4,34 + 1843: 4,30 + 1844: 5,30 + 1845: 6,30 + 1846: 7,30 + 1847: 8,30 + 1848: 4,31 + 1849: 4,38 + 1864: 7,37 + 1872: 10,34 + 1881: 21,34 + 1913: 25,30 + 1914: 25,36 + 1915: 27,36 + 1916: 27,42 + 1919: 28,33 + 1934: 35,42 + 2555: 5,51 + 2559: 20,42 + 2584: 25,42 + 3122: 18,33 + 3191: 17,45 + - node: + color: '#F9801DFF' + id: BrickTileWhiteInnerSw + decals: + 1425: 45,-19 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteLineE + decals: + 3214: -27,40 + 3215: -27,41 + 3216: -27,42 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 1365: 33,-5 + 1366: 33,-7 + 1367: 33,-6 + - node: + color: '#4B709CFF' + id: BrickTileWhiteLineE + decals: + 469: -24,-36 + 473: -27,-36 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 243: -5,-39 + 244: -5,-34 + 418: -18,-31 + 419: -18,-30 + 508: -25,-29 + 509: -25,-28 + 510: -25,-27 + 518: -29,-29 + 519: -29,-28 + 520: -29,-27 + 573: -24,-40 + 574: -24,-41 + 2428: 34,-39 + 2429: 34,-40 + 2430: 34,-41 + 2442: 28,-36 + - node: + color: '#765428FF' + id: BrickTileWhiteLineE + decals: + 3376: -53,-18 + 3377: -53,-19 + 3378: -53,-20 + 3379: -53,-21 + 3380: -53,-22 + 3381: -53,-23 + - node: + color: '#80C71FFF' + id: BrickTileWhiteLineE + decals: + 1420: 53,-20 + - node: + color: '#8932B8FF' + id: BrickTileWhiteLineE + decals: + 1419: 49,-20 + - node: + color: '#9FED58B3' + id: BrickTileWhiteLineE + decals: + 2599: -45,-31 + 2600: -45,-30 + - node: + color: '#BC863FFF' + id: BrickTileWhiteLineE + decals: + 3273: -53,-14 + 3274: -53,-1 + 3275: -53,0 + 3281: -49,2 + 3282: -49,1 + 3283: -49,0 + 3284: -49,-1 + 3285: -49,-2 + 3286: -49,-4 + 3413: -49,-3 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 854: -11,-50 + 855: -11,-49 + 856: -11,-48 + 2126: 3,-43 + 2127: 3,-44 + 2128: 3,-46 + 2129: 3,-47 + 2183: 17,-41 + 2184: 21,-43 + 2185: 11,-39 + 2253: 12,-44 + 2254: 16,-43 + 2255: 16,-42 + 2256: 16,-41 + 2257: 16,-40 + 2258: 16,-39 + 2259: 16,-38 + 2260: 16,-37 + 2261: 16,-36 + 2283: 5,-38 + 2284: 5,-37 + 2285: 5,-36 + 2293: -7,-47 + 2295: -7,-44 + 2355: -11,-45 + 2399: -3,-47 + 2400: -3,-46 + 3016: 14,-41 + 3017: 14,-40 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 1655: 42,-27 + 1656: 43,-37 + 1659: 37,-41 + 1660: 38,-34 + 1661: 38,-33 + 1662: 38,-32 + 1668: 27,-27 + 1669: 28,-32 + 1670: 28,-33 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 1806: 8,32 + 1807: 8,33 + 1850: 5,32 + 1851: 5,33 + 1852: 5,34 + 1853: 5,35 + 1854: 5,36 + 1868: 17,30 + 1877: 19,32 + 1878: 19,33 + 1931: 22,32 + 2565: 10,44 + 2566: 10,43 + 2567: 10,42 + 2571: 19,44 + 2572: 19,45 + 2573: 20,42 + 2574: 20,43 + 3110: 11,32 + 3137: 17,34 + 3162: -2,41 + 3163: -2,42 + 3177: 10,41 + 3182: 19,40 + 3183: 19,41 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineE + decals: + 1416: 45,-20 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 588: -30,-28 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteLineN + decals: + 3217: -28,43 + 3218: -29,43 + 3219: -30,43 + 3220: -31,43 + 3221: -32,43 + 3222: -33,43 + 3248: -43,1 + 3249: -42,1 + 3250: -41,1 + 3251: -40,1 + 3252: -39,1 + 3253: -38,1 + 3254: -37,1 + 3255: -36,1 + 3259: -43,5 + 3260: -41,4 + 3261: -40,4 + 3262: -39,4 + 3263: -38,4 + 3264: -37,4 + - node: + color: '#169C9CFF' + id: BrickTileWhiteLineN + decals: + 413: -16,-30 + - node: + color: '#4B709CFF' + id: BrickTileWhiteLineN + decals: + 461: -26,-35 + 462: -25,-35 + 474: -26,-37 + 475: -26,-37 + 476: -25,-37 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 226: -8,-38 + 227: -7,-38 + 228: -6,-38 + 229: -9,-38 + 251: -8,-33 + 252: -7,-33 + 253: -6,-33 + 254: -9,-33 + 403: -17,-27 + 404: -21,-27 + 506: -26,-26 + 521: -30,-26 + 522: -31,-26 + 523: -32,-26 + 570: -27,-39 + 571: -26,-39 + 572: -25,-39 + 2418: 29,-37 + 2419: 30,-37 + 2420: 31,-37 + 2421: 32,-37 + 2422: 33,-37 + 2423: 34,-37 + 2424: 35,-37 + 2425: 36,-37 + - node: + color: '#765428FF' + id: BrickTileWhiteLineN + decals: + 3370: -55,-17 + 3371: -56,-17 + 3372: -57,-17 + 3373: -54,-17 + - node: + color: '#9FED58B3' + id: BrickTileWhiteLineN + decals: + 2587: -47,-31 + 2593: -47,-30 + - node: + color: '#BC863FFF' + id: BrickTileWhiteLineN + decals: + 3270: -54,3 + 3280: -50,3 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 845: -13,-47 + 846: -12,-47 + 2186: 16,-34 + 2187: 9,-34 + 2188: 5,-34 + 2247: 7,-43 + 2248: 8,-43 + 2249: 9,-43 + 2250: 10,-43 + 2251: 11,-43 + 2252: 15,-35 + 2280: 6,-39 + 2281: 7,-39 + 2282: 8,-39 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineN + decals: + 1373: 31,-3 + 1374: 32,-3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 1483: 49,-6 + 1484: 51,-6 + 1541: 32,-11 + 1547: 38,-11 + 1548: 40,-11 + 1574: 50,-16 + 1605: 50,-3 + 1619: 41,-32 + 1768: 41,-41 + 1771: 41,-39 + 1782: 41,-40 + 2897: 41,-25 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 1805: 7,38 + 1855: 6,31 + 1885: 23,28 + 1886: 24,28 + 1893: 24,40 + 1894: 26,40 + 1895: 24,34 + 1896: 26,34 + 1897: 26,23 + 1921: 23,31 + 1922: 24,31 + 1923: 25,31 + 1924: 26,31 + 1925: 27,31 + 3098: 17,31 + 3099: 16,31 + 3100: 15,31 + 3101: 14,31 + 3102: 13,31 + 3103: 12,31 + 3113: 12,33 + 3114: 13,33 + 3115: 14,33 + 3116: 15,33 + 3117: 16,33 + 3118: 17,33 + 3172: -6,43 + 3173: -5,43 + 3174: -4,43 + 3175: -3,43 + - node: + color: '#F38BAAFF' + id: BrickTileWhiteLineN + decals: + 410: -22,-30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 587: -31,-27 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteLineS + decals: + 3208: -33,39 + 3209: -32,39 + 3210: -31,39 + 3211: -30,39 + 3212: -29,39 + 3213: -28,39 + 3241: -37,3 + 3242: -38,3 + 3243: -39,3 + 3244: -40,3 + 3245: -41,3 + 3246: -42,3 + 3247: -43,3 + - node: + color: '#169C9CFF' + id: BrickTileWhiteLineS + decals: + 412: -16,-30 + - node: + color: '#4B709CFF' + id: BrickTileWhiteLineS + decals: + 467: -26,-37 + 468: -25,-37 + 478: -25,-35 + 479: -25,-35 + 480: -26,-35 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 230: -9,-35 + 231: -8,-35 + 232: -8,-35 + 233: -7,-35 + 234: -6,-35 + 247: -9,-40 + 248: -8,-40 + 249: -7,-40 + 250: -6,-40 + 420: -17,-29 + 421: -16,-29 + 422: -15,-29 + 423: -21,-29 + 424: -22,-29 + 425: -23,-29 + 507: -26,-30 + 527: -32,-30 + 528: -31,-30 + 529: -30,-30 + 530: -30,-30 + 575: -25,-42 + 576: -26,-42 + 577: -27,-42 + 2426: 36,-38 + 2427: 35,-38 + 2431: 33,-42 + 2432: 32,-42 + 2433: 31,-42 + 2434: 30,-42 + 2435: 29,-42 + 2436: 28,-42 + - node: + color: '#765428FF' + id: BrickTileWhiteLineS + decals: + 3382: -54,-24 + 3383: -55,-24 + 3384: -56,-24 + 3385: -57,-24 + - node: + color: '#80C71FFF' + id: BrickTileWhiteLineS + decals: + 1414: 52,-19 + 1415: 54,-19 + 1431: 51,-19 + - node: + color: '#8932B8FF' + id: BrickTileWhiteLineS + decals: + 1412: 48,-19 + 1413: 50,-19 + 1432: 47,-19 + - node: + color: '#9FED58B3' + id: BrickTileWhiteLineS + decals: + 2592: -47,-30 + 2594: -47,-31 + - node: + color: '#BC863FFF' + id: BrickTileWhiteLineS + decals: + 3271: -56,-15 + 3272: -55,-15 + 3289: -50,-5 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 857: -12,-51 + 858: -13,-51 + 2271: 7,-45 + 2272: 8,-45 + 2273: 9,-45 + 2274: 10,-45 + 2275: 11,-45 + 2276: 15,-44 + 2277: 6,-35 + 2278: 7,-35 + 2279: 8,-35 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 1370: 32,-9 + 1531: 35,-13 + 1532: 31,-13 + 1573: 50,-9 + 1606: 50,-4 + 1620: 41,-30 + 1657: 41,-37 + 1769: 41,-41 + 2896: 41,-23 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 1861: 6,37 + 1887: 23,30 + 1888: 24,30 + 1889: 26,25 + 1890: 26,36 + 1891: 24,36 + 1892: 26,42 + 1926: 23,33 + 1927: 24,33 + 1928: 25,33 + 1929: 26,33 + 1930: 27,33 + 1933: 34,42 + 2560: 15,45 + 2561: 14,45 + 2562: 13,45 + 2563: 12,45 + 2564: 11,45 + 2581: 33,42 + 2586: 24,42 + 3104: 12,33 + 3105: 13,33 + 3106: 14,33 + 3107: 15,33 + 3108: 16,33 + 3109: 17,33 + 3164: -3,40 + 3165: -4,40 + 3166: -5,40 + 3170: -6,40 + 3178: 9,40 + 3179: 8,40 + 3184: 18,39 + 3190: 16,45 + - node: + color: '#F38BAAFF' + id: BrickTileWhiteLineS + decals: + 411: -22,-30 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineS + decals: + 1410: 44,-19 + 1411: 46,-19 + 1433: 43,-19 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 589: -31,-29 + - node: + color: '#00BEBE7F' + id: BrickTileWhiteLineW + decals: + 3223: -34,42 + 3224: -34,41 + 3225: -34,40 + 3258: -44,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 612: 21,6 + 613: 21,7 + 616: 20,6 + 617: 20,7 + 3269: -44,-10 + - node: + color: '#4B709CFF' + id: BrickTileWhiteLineW + decals: + 470: -27,-36 + 477: -24,-36 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 245: -10,-34 + 246: -10,-39 + 416: -20,-31 + 417: -20,-30 + 511: -27,-29 + 512: -27,-27 + 513: -27,-28 + 524: -33,-29 + 525: -33,-28 + 526: -33,-27 + 578: -28,-41 + 579: -28,-40 + 736: -2,-33 + 739: -2,-40 + 740: -1,-35 + 741: -1,-36 + 742: -1,-37 + 743: -1,-38 + 2410: 27,-41 + 2411: 27,-40 + 2412: 27,-39 + 2413: 27,-38 + 2414: 27,-37 + 2415: 27,-36 + - node: + color: '#765428FF' + id: BrickTileWhiteLineW + decals: + 3386: -58,-23 + 3387: -58,-22 + 3388: -58,-21 + - node: + color: '#80C71FFF' + id: BrickTileWhiteLineW + decals: + 1421: 53,-20 + - node: + color: '#8932B8FF' + id: BrickTileWhiteLineW + decals: + 1418: 49,-20 + - node: + color: '#9FED58B3' + id: BrickTileWhiteLineW + decals: + 2601: -45,-31 + 2602: -45,-30 + - node: + color: '#BC863FFF' + id: BrickTileWhiteLineW + decals: + 3276: -51,-4 + 3277: -51,-3 + 3290: -47,-4 + 3291: -47,-3 + 3403: -47,0 + 3404: -47,1 + 3409: -47,-1 + 3412: -51,2 + 3416: -50,-1 + 3417: -50,0 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 851: -14,-50 + 852: -14,-49 + 853: -14,-48 + 2137: 5,-43 + 2138: 5,-44 + 2139: 5,-46 + 2140: 5,-47 + 2182: 13,-39 + 2262: 6,-44 + 2263: 14,-43 + 2264: 14,-42 + 2265: 14,-41 + 2266: 14,-39 + 2267: 14,-40 + 2268: 14,-38 + 2269: 14,-37 + 2270: 14,-36 + 2286: 9,-38 + 2287: 9,-37 + 2288: 9,-36 + 2294: -5,-47 + 2297: -9,-49 + 2309: -9,-54 + 2354: -9,-45 + 2401: -1,-46 + 2402: -1,-45 + 2403: -1,-44 + 2404: -1,-43 + 2408: -1,-47 + 3018: 16,-41 + 3019: 16,-40 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 1658: 39,-41 + 1663: 40,-34 + 1664: 40,-33 + 1665: 40,-32 + 1666: 30,-33 + 1667: 30,-32 + 2915: 40,-22 + 2916: 40,-21 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 1837: 4,32 + 1838: 4,33 + 1839: 4,35 + 1840: 4,36 + 1856: 7,32 + 1857: 7,33 + 1858: 7,34 + 1859: 7,35 + 1860: 7,36 + 1869: 12,30 + 1870: 10,33 + 1871: 10,32 + 1879: 21,32 + 1880: 21,33 + 1932: 28,32 + 3111: 18,32 + 3112: 12,34 + 3167: -7,41 + 3168: -7,42 + 3185: 17,40 + 3186: 17,41 + 3187: 17,42 + 3188: 17,43 + 3189: 17,44 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineW + decals: + 1417: 45,-20 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 590: -32,-28 + 591: -32,-28 + - node: + color: '#FFFFFFFF' + id: BushAOne + decals: + 2704: -12.173578,-13.16537 + - node: + color: '#FFFFFFFF' + id: BushAThree + decals: + 2661: 7.063609,-17.083809 + 2705: -12.954828,-13.13412 + 3037: -13.009358,7.995878 + 3042: -15.09027,11.031727 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 2706: -12.996495,-12.238287 + 2707: -6.0969057,-13.717453 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 3030: -11.007082,13.412277 + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 2655: 17.014423,-8.300894 + 2691: -4.785802,3.4705331 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 2710: -5.148989,-12.144537 + - node: + color: '#FFFFFFFF' + id: BushDTwo + decals: + 2647: 17.163681,15.561111 + 2648: 3.516313,17.119299 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 2649: 4.90173,16.900549 + 3034: -13.092692,9.881294 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 3039: -13.96527,9.885894 + 3041: -14.642353,10.979644 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 3031: -10.975832,14.18311 + 3035: -13.092692,9.006294 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 2703: -12.183994,-14.061203 + 3032: -10.996666,15.02686 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 3036: -13.009358,8.402128 + 3040: -14.017353,10.354644 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 2708: -5.1698227,-12.957037 + 3038: -14.02777,11.062977 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 2646: 17.194931,12.9986105 + 2709: -8.055239,-11.332037 + 3033: -11.044625,12.930744 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 2637: 6.2998166,3.7755318 + 2652: 17.076923,-7.467561 + 2653: 16.566507,-7.988394 + 2659: 7.2406926,-16.500475 + 2674: 3.5204434,-9.447139 + 2675: 3.2912767,-9.686723 + 2711: -8.044823,-11.092453 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 2638: 6.6984973,3.4174294 + 2654: 17.014423,-8.030061 + 2668: 7.441076,6.766222 + 3028: -17.569584,14.99561 + 3051: -4.0134697,4.9046235 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 2660: 6.6990256,-16.510893 + 3432: 58.245747,-2.973395 + 3433: 57.818665,-3.0463119 + 3434: 58.308247,-2.1817284 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 1315: 57.84424,1.1426643 + 1316: 58.21924,0.9864143 + 1317: 57.885906,-2.0552526 + 1318: 58.15674,-1.5865024 + 1319: 57.90674,0.18433094 + 2685: 6.6556993,14.650438 + 2692: -4.7441354,3.6892834 + 2717: -12.329075,-5.2076516 + 2718: -11.683241,-5.540985 + 3052: -4.2530527,4.29004 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 1322: 58.167156,-0.24275243 + 3065: -4.922404,-3.8768375 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 1323: 57.833824,-0.37816906 + 3067: -4.4328203,-4.7726707 + 3068: -4.3255215,-5.3247385 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 3027: -17.132084,16.266443 + 3066: -4.3703203,-4.199754 + 3431: 57.943665,-2.723395 + - node: + color: '#FFFFFFFF' + id: Bushg1 + decals: + 2656: 17.14984,-5.092561 + 2662: 8.53236,-17.187975 + 2696: 3.404969,-4.7533755 + 3043: -9.359586,2.9312673 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 2697: 4.175802,-4.0346255 + 3029: -16.8925,15.828943 + - node: + color: '#FFFFFFFF' + id: Bushg3 + decals: + 2615: -2.1416075,5.8916445 + 2616: -2.162441,14.072103 + 2617: 14.210857,2.3523626 + 2618: 17.866562,15.155413 + 2619: 18.231146,11.999163 + 2620: 3.059716,-17.07088 + 2621: -4.1298733,-14.029394 + 2622: -2.3702574,-5.9809127 + 2623: -8.961391,-10.053829 + 2624: -17.146135,-6.1901164 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 2657: 17.160257,-5.6342273 + 2686: 7.2077823,13.712938 + - node: + color: '#FFFFFFFF' + id: Bushh1 + decals: + 2634: 5.9211392,3.1419072 + 2639: 8.507914,15.796663 + 2640: 9.528748,15.46333 + 3050: -3.4732609,5.2424126 + - node: + color: '#FFFFFFFF' + id: Bushh2 + decals: + 2635: 5.087806,3.9127407 + 2641: 8.528747,14.473747 + 2719: -13.162408,-5.0826516 + 2720: -14.037408,-5.988902 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 2636: 7.181556,4.0273237 + 2645: 17.465765,12.071527 + 2721: -13.756159,-5.822237 + 2722: -13.901991,-8.228487 + 3047: -9.230458,4.9216795 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 2625: -17.677385,-15.149096 + 2626: -6.0205603,-17.117607 + 2627: -9.970078,-14.052947 + 2628: -9.887934,2.4137444 + 2629: -18.05108,15.0529785 + 2658: 6.2927756,-17.073393 + 2669: 15.850491,-4.61609 + 2671: 9.772904,-4.483665 + 2683: 13.70388,8.66825 + 2684: 7.1036158,14.358771 + 2687: -5.465275,9.849015 + 2688: -6.746525,10.213598 + 2701: 3.4466357,-5.461709 + 2736: -20.130556,-17.838984 + 2737: -16.849306,-19.984818 + 2738: -17.307638,-19.6619 + 2739: -19.265972,-20.13065 + 3055: -14.051299,-2.1793242 + 3058: -17.143507,-2.1316965 + 3059: -14.734559,-9.289597 + 3061: -14.390809,-9.633347 + 3062: -10.377625,-9.233512 + 3070: -3.5338547,-5.210155 + 3071: -4.8467765,-14.670914 + 3427: -2.6337829,9.646117 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 2630: -17.025719,17.03245 + 2631: 18.117056,13.867498 + 2676: 3.580893,-8.535644 + 2677: 8.918044,-3.98356 + 2678: 15.266736,-5.8692675 + 2679: 16.209822,-5.8538113 + 2680: 7.318463,5.66825 + 2681: 6.4642963,5.85575 + 2682: 14.620547,8.230751 + 2693: 6.318049,2.225238 + 2712: -8.044823,-13.97787 + 2713: -8.878156,-13.144537 + 2714: -5.867739,-11.154953 + 2715: -13.026991,-9.009735 + 2716: -11.860325,-5.124318 + 2740: -16.859722,-18.94315 + 3044: -8.75542,2.9208503 + 3049: -13.95071,2.256745 + 3056: -14.165881,-2.439741 + 3060: -14.713725,-9.602097 + 3063: -9.76849,-14.395954 + 3072: -4.450943,-14.608414 + 3428: -2.8004496,9.333617 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 2632: 17.117056,10.211248 + 2633: 9.26489,2.9960737 + 2663: 14.499886,6.958212 + 2664: 13.541552,7.447795 + 2665: 6.0254874,14.498462 + 2670: 16.579659,-3.9598398 + 2694: 7.224299,2.3710713 + 2695: 4.0082765,6.5204124 + 2702: 5.713353,-3.1926599 + 3026: -14.413333,18.172693 + 3046: -9.557503,5.8271008 + 3048: -14.0402975,2.506745 + 3429: -2.8212829,8.989867 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 2603: -15.13607,-18.199955 + 2604: -18.14605,-11.80234 + 2605: -13.963279,-4.177868 + 2606: -5.8667884,-5.4799514 + 2607: 8.061129,-4.427868 + 2608: 15.901968,-2.2820346 + 2609: 17.151968,2.9988291 + 2610: 9.610178,17.11985 + 2611: 4.0546904,17.078184 + 2612: 3.480264,5.210905 + 2613: -15.017622,18.057854 + 2614: -5.5270247,2.9853945 + 2650: 5.777904,17.049623 + 2651: 9.139725,14.0701685 + 2666: 6.567154,13.456795 + 2667: 6.441076,6.7870555 + 2672: 9.397904,-5.046165 + 2673: 4.3850265,-9.488806 + 2689: -6.2881913,9.494848 + 2690: -5.402775,10.869849 + 2698: 3.8528857,-4.5242085 + 2723: -11.037408,-8.100949 + 3053: -3.7009702,4.4983735 + 3054: -5.697132,-3.1168242 + 3064: -9.425084,-14.560988 + 3069: -3.5442712,-4.7830715 + - node: + color: '#FFFFFFFF' + id: Bushj1 + decals: + 2642: 8.789164,15.109163 + 2728: -19.824345,-10.10782 + 2729: -20.11601,-9.63907 + 2731: -20.011845,-8.243237 + 2732: -18.730595,-8.79532 + 2733: -18.873224,-10.013859 + 2734: -19.654474,-7.0659423 + 3445: -18.860361,-7.807997 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 2730: -18.793095,-6.868236 + 2735: -19.94614,-7.7117753 + 3443: -20.016611,-7.2975807 + 3444: -18.902029,-9.370498 + 3446: -19.318695,-8.485081 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 3430: -4.6337833,10.114867 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 2700: 3.0091357,-5.795042 + 3045: -10.00542,5.191684 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 2643: 15.903748,17.02583 + 2644: 18.067644,12.942497 + 2699: 4.8112187,-3.7846253 + - node: + color: '#FFFFFFFF' + id: Bushm4 + decals: + 2724: -10.9586735,-6.0094166 + 2725: -11.224603,-5.736016 + 2726: -13.307937,-8.381849 + 2727: -14.067469,-7.593817 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 1320: 58.021324,0.5489143 + 1321: 57.96924,-1.1594192 + 3435: 57.99387,-2.411529 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 3008: -19,-27 + 3009: -16,-27 + 3010: -22,-27 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerNe + decals: + 0: 2,2 + 37: 1,1 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerNw + decals: + 1: -2,2 + 38: -1,1 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerSe + decals: + 3: 2,-2 + 36: 1,-1 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerSw + decals: + 2: -2,-2 + 35: -1,-1 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerNe + decals: + 30: -2,-2 + 31: -2,-2 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerNw + decals: + 33: 2,-2 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerSe + decals: + 29: -2,2 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimInnerSw + decals: + 32: 2,2 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineE + decals: + 4: 2,-1 + 5: 2,0 + 6: 2,1 + 7: 2,1 + 26: -2,1 + 27: -2,0 + 28: -2,-1 + 42: 1,0 + 83: -2,-17 + 84: -2,-16 + 85: -2,-14 + 86: -2,-13 + 87: -2,-12 + 88: -2,-11 + 89: -2,-10 + 90: -2,-8 + 91: -2,-7 + 92: -2,-6 + 112: -2,6 + 113: -2,7 + 114: -2,8 + 115: -2,10 + 116: -2,11 + 117: -2,11 + 118: -2,12 + 119: -2,13 + 120: -2,14 + 121: -2,16 + 122: -2,17 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineN + decals: + 14: -1,2 + 15: 0,2 + 16: 1,2 + 17: -1,-2 + 18: 0,-2 + 19: 1,-2 + 39: 0,1 + 63: 17,-2 + 64: 16,-2 + 65: 14,-2 + 66: 13,-2 + 67: 12,-2 + 68: 11,-2 + 69: 10,-2 + 70: 8,-2 + 71: 7,-2 + 72: 6,-2 + 93: -6,-2 + 94: -7,-2 + 95: -8,-2 + 96: -10,-2 + 97: -11,-2 + 98: -12,-2 + 99: -13,-2 + 100: -16,-2 + 101: -17,-2 + 3057: -14,-2 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineS + decals: + 8: 1,-2 + 9: 0,-2 + 10: -1,-2 + 23: 1,2 + 24: 0,2 + 25: -1,2 + 34: 0,-1 + 41: 0,-1 + 53: 6,2 + 54: 7,2 + 55: 8,2 + 56: 10,2 + 57: 11,2 + 58: 12,2 + 59: 13,2 + 60: 14,2 + 61: 16,2 + 62: 17,2 + 102: -17,2 + 103: -16,2 + 104: -14,2 + 105: -13,2 + 106: -12,2 + 107: -11,2 + 108: -10,2 + 109: -8,2 + 110: -7,2 + 111: -6,2 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineW + decals: + 11: -2,-1 + 12: -2,0 + 13: -2,1 + 20: 2,-1 + 21: 2,0 + 22: 2,1 + 40: -1,0 + 43: 2,6 + 44: 2,7 + 45: 2,8 + 46: 2,10 + 47: 2,11 + 48: 2,12 + 49: 2,13 + 50: 2,14 + 51: 2,16 + 52: 2,17 + 73: 2,-6 + 74: 2,-7 + 75: 2,-8 + 76: 2,-10 + 77: 2,-11 + 78: 2,-12 + 79: 2,-13 + 80: 2,-14 + 81: 2,-16 + 82: 2,-17 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 1787: 50,-39 + 1788: 50,-38 + 1789: 50,-37 + 1790: 50,-36 + - node: + color: '#D381C996' + id: DiagonalOverlay + decals: + 2296: -10,-49 + 2372: -10,-45 + 3438: 4,-47 + 3439: 4,-46 + 3440: -2,-47 + 3441: -6,-47 + - node: + color: '#DE3A3A96' + id: DiagonalOverlay + decals: + 1607: 51,-2 + 1608: 49,-2 + 1609: 49,-5 + 1610: 51,-5 + 1611: 29,-33 + 1612: 29,-32 + 1613: 39,-34 + 1614: 39,-32 + 1615: 41,-31 + 1616: 44,-37 + 1617: 41,-38 + 1618: 38,-41 + 2908: 41,-24 + - node: + color: '#EFB34196' + id: DiagonalOverlay + decals: + 1873: 9,33 + 1874: 9,32 + 1875: 20,33 + 1876: 20,32 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 2806: 16.070688,16.03927 + 2837: 9.361443,4.4135666 + 2838: 8.71561,5.3614836 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 2807: 17.062426,11.239492 + 2808: 10.321154,17.060677 + 2841: 7.6635256,6.1948166 + 2842: 8.538526,6.2989836 + 2877: 9.51524,6.327868 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 2834: 10.111443,4.4344 + 2835: 8.663526,4.5594 + 2836: 8.05936,5.5073166 + 2878: 9.79649,6.7862015 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 2803: 3.1090877,15.838451 + 2804: 15.10194,16.174686 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 2805: 15.393607,16.737186 + 2839: 9.49686,5.1010666 + 2840: 9.080193,5.7260666 + 2843: 10.324566,5.2335067 + 2865: 16.988474,10.508276 + 2866: 16.363474,10.747859 + 2867: 11.000941,16.992361 + 2868: 11.6309395,17.170504 + 2884: 7.8013525,4.69695 + 2885: 9.145103,3.603201 + 2886: 9.15132,6.0905905 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 2876: 8.806907,6.8799515 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 2844: 15.255633,6.9409747 + 2845: 14.661882,7.545141 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 2846: 15.463966,7.690975 + 2848: 14.5844555,8.774308 + 2852: 14.978545,6.1768036 + 2853: 15.728544,6.3643036 + 2879: 14.814111,5.0989227 + 2880: 15.56411,4.4947557 + 2883: 12.9190645,9.799427 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 2797: 8.013186,3.1140726 + 2798: 10.378889,-5.012858 + 2799: 10.274722,-4.383773 + 2847: 15.219872,8.347224 + 2849: 13.9177885,8.774308 + 2850: 13.252036,8.115639 + 2851: 13.134795,8.926804 + 2854: 16.103544,7.1143036 + 2855: 16.42646,6.1143036 + 2856: 15.748611,5.544657 + 2881: 14.501611,4.234339 + 2882: 13.6690645,9.570259 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 2795: 7.160172,13.449887 + 2796: 5.483089,13.918637 + 2809: 12.341987,18.164845 + 2816: 4.084557,12.876521 + 2817: 6.313724,11.689021 + 2818: 9.0012245,11.564021 + 2824: 8.3553915,12.168188 + 2825: 6.730391,12.855688 + 2826: 5.105391,14.376521 + 2827: 2.9283073,14.741104 + 2829: 4.719974,13.105688 + 2830: 4.355391,14.585857 + 2831: 3.473161,14.394393 + 2832: 4.3585773,13.821476 + 2858: 2.299132,6.662748 + 2863: 4.7337813,6.6002483 + 2864: 4.5150313,6.0064983 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 2810: 14.633654,18.154427 + 2819: 7.6991415,11.939021 + 2820: 7.0533075,11.282771 + 2821: 8.1783085,11.241104 + 2859: 3.0178826,5.8710814 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 2811: 13.227404,18.091927 + 2813: 11.914904,18.11276 + 2814: 11.914904,18.11276 + 2822: 6.938724,12.168188 + 2823: 7.6158075,12.918188 + 2833: 3.4939945,13.592309 + 2860: 3.1637156,6.5481644 + 2861: 3.7887158,5.704415 + 2862: 3.9108648,7.0273314 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 2800: 3.8501334,-9.470912 + 2801: 4.3709664,-9.908412 + 2802: 3.6209664,-9.960495 + 2812: 13.966987,18.133595 + 2815: 15.123237,18.071095 + 2828: 5.136641,13.511938 + 2857: 2.2574656,5.8294144 + 2869: 9.849766,11.338729 + 2870: 9.047683,10.619978 + 2871: 4.7809443,7.692894 + 2872: 5.676778,7.797061 + 2873: 5.4059443,8.505394 + 2874: 5.8902392,6.890369 + 2875: 6.223573,8.400785 + - node: + color: '#00BEBE7F' + id: FullTileOverlayGreyscale + decals: + 3230: -26,40 + 3231: -26,42 + 3232: -43,2 + 3233: -42,2 + 3234: -37,2 + 3235: -36,2 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 717: 21,3 + 718: 23,3 + 719: 25,3 + 819: -33,-9 + 820: -29,-9 + 2917: -23,-36 + - node: + color: '#4A35194C' + id: FullTileOverlayGreyscale + decals: + 2746: -22,3 + 2747: -21,3 + 2748: -20,3 + 2749: -19,3 + 2750: -19,4 + 2751: -19,5 + 2752: -19,6 + 2753: -19,7 + 2754: -19,8 + 2755: -19,9 + 2756: -19,10 + 2757: -20,10 + 2758: -20,9 + 2759: -20,8 + 2760: -20,7 + 2761: -20,6 + 2762: -20,5 + 2763: -20,4 + 2764: -21,4 + 2765: -22,4 + 2766: -22,5 + 2767: -21,5 + 2768: -21,6 + 2769: -22,6 + 2770: -22,7 + 2771: -21,7 + 2772: -21,8 + 2773: -22,8 + 2774: -22,9 + 2775: -21,9 + 2776: -21,10 + 2777: -22,10 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 255: -8,-39 + 256: -7,-39 + 541: -26,-27 + 542: -26,-28 + 543: -26,-29 + 544: -12,-30 + 545: -12,-29 + 546: -11,-29 + 561: -26,-41 + 746: -3,-37 + 747: -3,-36 + 829: -29,-6 + 830: -33,-6 + 938: -28,-29 + 939: -28,-28 + 940: -24,-29 + 941: -24,-28 + - node: + color: '#765428FF' + id: FullTileOverlayGreyscale + decals: + 3374: -55,-16 + 3375: -56,-16 + - node: + color: '#951710FF' + id: FullTileOverlayGreyscale + decals: + 2454: 43,37 + 2455: 43,38 + 2456: 43,39 + 2457: 43,40 + 2458: 43,41 + 2459: 43,36 + 2460: 43,42 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 199: -33,-14 + 200: -30,-14 + 201: -26,-18 + 202: -31,-19 + 203: -31,-18 + 204: -31,-17 + 274: -26,-14 + 485: -30,-22 + 825: -31,-9 + 826: -31,-4 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 823: -31,-8 + 824: -31,-5 + - node: + color: '#BC863FFF' + id: FullTileOverlayGreyscale + decals: + 3292: -48,-3 + 3293: -48,-4 + 3294: -52,-1 + 3295: -52,0 + 3406: -48,0 + 3407: -48,1 + 3408: -48,-1 + 3420: -51,-1 + 3421: -51,0 + - node: + color: '#C6FF91FF' + id: FullTileOverlayGreyscale + decals: + 3075: -37,-35 + 3076: -37,-34 + 3077: -36,-34 + 3078: -35,-34 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 833: -29,-4 + 834: -33,-4 + - node: + color: '#D4D4D496' + id: FullTileOverlayGreyscale + decals: + 827: -29,-7 + 828: -33,-7 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 831: -29,-5 + 832: -33,-5 + 2792: 56,-10 + 2793: 56,-11 + 2794: 56,-12 + 3447: 32,-10 + 3448: 38,-10 + 3449: 40,-10 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 821: -29,-8 + 822: -33,-8 + 2943: -11,-39 + 2944: -19,-40 + 2989: -16,-38 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 604: 20,9 + 605: 21,9 + 606: 21,9 + 607: 22,9 + 608: 22,9 + 609: 25,9 + 633: 26,9 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 269: -9,-34 + 270: -6,-34 + 340: -20,-33 + 341: -19,-33 + 342: -18,-33 + 343: -17,-33 + 344: -16,-33 + 345: -15,-33 + 548: -13,-29 + 560: -26,-42 + - node: + color: '#639137FF' + id: HalfTileOverlayGreyscale + decals: + 651: 4,24 + 652: 5,24 + 653: 6,24 + 654: 7,24 + 655: 8,24 + 656: 9,24 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 163: -26,-15 + 164: -27,-15 + 165: -28,-15 + 166: -29,-15 + 167: -30,-15 + 168: -32,-15 + 205: -31,-15 + 486: -30,-23 + 487: -31,-23 + 488: -32,-23 + - node: + color: '#C6FF91FF' + id: HalfTileOverlayGreyscale + decals: + 3079: -36,-31 + 3080: -37,-31 + 3081: -38,-31 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 841: -13,-50 + 842: -12,-50 + 3014: 15,-42 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 1486: 45,-15 + 1487: 44,-15 + 1488: 43,-15 + 1489: 42,-15 + 1490: 41,-15 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 599: 20,4 + 600: 20,4 + 601: 21,4 + 602: 22,4 + 603: 25,4 + 634: 26,4 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 348: -15,-36 + 349: -16,-36 + 350: -17,-36 + 351: -18,-36 + 352: -20,-36 + 353: -19,-36 + 547: -13,-28 + 559: -26,-40 + - node: + color: '#639137FF' + id: HalfTileOverlayGreyscale180 + decals: + 643: 8,22 + 644: 7,22 + 645: 7,22 + 646: 6,22 + 647: 5,22 + 657: 4,19 + 658: 5,19 + 659: 6,19 + 660: 7,19 + 661: 7,19 + 662: 8,19 + 663: 9,19 + 676: 5,23 + 677: 8,23 + - node: + color: '#80C71FFF' + id: HalfTileOverlayGreyscale180 + decals: + 1428: 53,-20 + - node: + color: '#8932B8FF' + id: HalfTileOverlayGreyscale180 + decals: + 1429: 49,-20 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 160: -27,-17 + 161: -28,-17 + 162: -26,-17 + 169: -30,-21 + 170: -31,-21 + 171: -32,-21 + 489: -30,-24 + 490: -31,-24 + 491: -32,-24 + - node: + color: '#C6FF91FF' + id: HalfTileOverlayGreyscale180 + decals: + 3074: -38,-35 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 835: -13,-48 + 836: -12,-48 + 3015: 15,-39 + - node: + color: '#F9801DFF' + id: HalfTileOverlayGreyscale180 + decals: + 1430: 45,-20 + - node: + color: '#1E5026FF' + id: HalfTileOverlayGreyscale270 + decals: + 2468: 42,36 + 2469: 42,37 + 2470: 42,38 + 2471: 42,39 + 2472: 42,40 + 2473: 42,41 + 2474: 42,42 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 595: 19,5 + 596: 19,6 + 597: 19,7 + 598: 19,8 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 220: -3,-33 + 221: -3,-34 + 222: -3,-35 + 223: -3,-38 + 224: -3,-39 + 225: -3,-40 + 263: -5,-35 + 264: -5,-34 + 267: -8,-35 + 268: -8,-34 + 338: -21,-34 + 339: -21,-35 + 552: -11,-28 + 553: -11,-27 + 554: -11,-26 + 558: -11,-25 + - node: + color: '#639137FF' + id: HalfTileOverlayGreyscale270 + decals: + 642: 9,21 + 664: 3,20 + 665: 3,21 + 666: 3,22 + 667: 3,23 + 678: 7,20 + 681: 7,21 + - node: + color: '#951710FF' + id: HalfTileOverlayGreyscale270 + decals: + 2482: 44,36 + 2483: 44,37 + 2484: 44,38 + 2485: 44,39 + 2486: 44,40 + 2487: 44,41 + 2488: 44,42 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 174: -33,-20 + 175: -33,-19 + 176: -33,-18 + 177: -33,-17 + 178: -33,-16 + 196: -33,-12 + 198: -30,-12 + - node: + color: '#C6FF91FF' + id: HalfTileOverlayGreyscale270 + decals: + 3083: -39,-32 + 3084: -39,-33 + 3085: -39,-34 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 840: -13,-49 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 2787: 57,-12 + 2788: 57,-11 + 2789: 57,-10 + - node: + color: '#1E5026FF' + id: HalfTileOverlayGreyscale90 + decals: + 2461: 44,36 + 2462: 44,37 + 2463: 44,38 + 2464: 44,39 + 2465: 44,40 + 2466: 44,41 + 2467: 44,42 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 261: -7,-35 + 262: -7,-34 + 265: -10,-35 + 266: -10,-34 + 346: -14,-34 + 347: -14,-35 + 555: -12,-27 + 556: -12,-26 + 557: -12,-25 + - node: + color: '#639137FF' + id: HalfTileOverlayGreyscale90 + decals: + 648: 4,21 + 668: 10,20 + 669: 10,21 + 670: 10,22 + 671: 10,23 + 679: 6,20 + 680: 6,21 + - node: + color: '#951710FF' + id: HalfTileOverlayGreyscale90 + decals: + 2475: 42,36 + 2476: 42,37 + 2477: 42,38 + 2478: 42,39 + 2479: 42,40 + 2480: 42,41 + 2481: 42,42 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 157: -29,-20 + 158: -29,-19 + 159: -29,-18 + 195: -29,-12 + 197: -32,-12 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 839: -12,-49 + - node: + color: '#EFB34196' + id: MiniTileCornerOverlayNE + decals: + 2938: -14,-40 + - node: + color: '#EFB34196' + id: MiniTileCornerOverlayNW + decals: + 2935: -16,-40 + - node: + color: '#EFB34196' + id: MiniTileCornerOverlaySE + decals: + 2936: -14,-42 + - node: + color: '#EFB34196' + id: MiniTileCornerOverlaySW + decals: + 2937: -16,-42 + - node: + color: '#DE3A3A96' + id: MiniTileInnerOverlaySE + decals: + 2887: 36,-13 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayE + decals: + 2940: -14,-41 + - node: + color: '#DE3A3A96' + id: MiniTileLineOverlayN + decals: + 2786: 55,-10 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayN + decals: + 2939: -15,-40 + - node: + color: '#DE3A3A96' + id: MiniTileLineOverlayS + decals: + 2785: 55,-12 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayS + decals: + 2942: -15,-42 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayW + decals: + 2941: -16,-41 + - node: + color: '#D4D4D496' + id: MiniTileOverlay + decals: + 1802: 46,-35 + 1803: 46,-41 + - node: + color: '#FFFFFFFF' + id: MiniTileOverlay + decals: + 1804: 6,39 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNe + decals: + 1792: 48,-36 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNw + decals: + 1793: 45,-36 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSe + decals: + 1791: 48,-39 + 1795: 47,-40 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSw + decals: + 1794: 45,-40 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineN + decals: + 1796: 46,-36 + 1797: 47,-36 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineS + decals: + 1798: 46,-40 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineW + decals: + 1799: 45,-39 + 1800: 45,-38 + 1801: 45,-37 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 1000: -52,-9 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNe + decals: + 1015: -57,-3 + 1018: -57,-3 + - node: + color: '#BC863FBF' + id: MiniTileWhiteCornerNe + decals: + 971: -57,-18 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNe + decals: + 2980: -11,-42 + 2981: -12,-39 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerNe + decals: + 452: -15,-34 + 2948: -12,-39 + 2949: -11,-42 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerNw + decals: + 1016: -58,-3 + 1017: -58,-3 + - node: + color: '#BC863FBF' + id: MiniTileWhiteCornerNw + decals: + 970: -58,-18 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNw + decals: + 2982: -18,-39 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerNw + decals: + 451: -20,-34 + 2947: -18,-39 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 999: -52,-11 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerSe + decals: + 1013: -57,-5 + 1019: -57,-5 + - node: + color: '#BC863FBF' + id: MiniTileWhiteCornerSe + decals: + 968: -57,-20 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSe + decals: + 2979: -11,-43 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerSe + decals: + 449: -15,-35 + 2945: -11,-43 + - node: + color: '#A4610696' + id: MiniTileWhiteCornerSw + decals: + 1014: -58,-5 + 1020: -58,-5 + - node: + color: '#BC863FBF' + id: MiniTileWhiteCornerSw + decals: + 969: -58,-20 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSw + decals: + 2978: -18,-43 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerSw + decals: + 450: -20,-35 + 2946: -18,-43 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerNe + decals: + 3442: -7,-48 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNe + decals: + 3437: 42,-39 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNe + decals: + 2988: -12,-42 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNe + decals: + 445: -21,-36 + 2966: -12,-42 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteInnerNw + decals: + 3436: 42,-39 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNw + decals: + 501: -14,-36 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSe + decals: + 447: -21,-33 + 448: -21,-33 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSw + decals: + 446: -14,-33 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 998: -52,-10 + - node: + color: '#A4610696' + id: MiniTileWhiteLineE + decals: + 1023: -57,-4 + 1024: -57,-4 + - node: + color: '#BC863FBF' + id: MiniTileWhiteLineE + decals: + 973: -57,-19 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineE + decals: + 2986: -12,-41 + 2987: -12,-40 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineE + decals: + 436: -21,-34 + 437: -21,-34 + 438: -21,-35 + 2955: -12,-40 + 2956: -12,-41 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineN + decals: + 2967: -17,-39 + 2968: -16,-39 + 2969: -15,-39 + 2970: -14,-39 + 2971: -13,-39 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineN + decals: + 439: -20,-36 + 440: -19,-36 + 441: -18,-36 + 442: -17,-36 + 443: -16,-36 + 444: -15,-36 + 453: -19,-34 + 454: -18,-34 + 455: -17,-34 + 456: -16,-34 + 2950: -17,-39 + 2951: -16,-39 + 2952: -15,-39 + 2953: -14,-39 + 2954: -13,-39 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineS + decals: + 2972: -12,-43 + 2973: -13,-43 + 2974: -14,-43 + 2975: -15,-43 + 2976: -16,-43 + 2977: -17,-43 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineS + decals: + 430: -15,-33 + 431: -16,-33 + 432: -17,-33 + 433: -18,-33 + 434: -19,-33 + 435: -20,-33 + 457: -16,-35 + 458: -17,-35 + 459: -18,-35 + 460: -19,-35 + 2957: -12,-43 + 2958: -13,-43 + 2959: -14,-43 + 2960: -15,-43 + 2961: -16,-43 + 2962: -17,-43 + - node: + color: '#A4610696' + id: MiniTileWhiteLineW + decals: + 1021: -58,-4 + 1022: -58,-4 + - node: + color: '#BC863FBF' + id: MiniTileWhiteLineW + decals: + 972: -58,-19 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineW + decals: + 2983: -18,-40 + 2984: -18,-41 + 2985: -18,-42 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineW + decals: + 428: -14,-35 + 429: -14,-34 + 2963: -18,-42 + 2964: -18,-41 + 2965: -18,-40 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimInnerNe + decals: + 136: 5,-9 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimInnerNw + decals: + 137: 9,-9 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimInnerSe + decals: + 139: 5,-5 + 148: 11,-17 + 149: 17,-11 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimInnerSw + decals: + 138: 9,-5 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineE + decals: + 129: 5,-8 + 130: 5,-7 + 131: 5,-7 + 132: 5,-6 + 140: 17,-15 + 141: 17,-14 + 142: 17,-13 + 143: 17,-12 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineN + decals: + 123: 7,-9 + 124: 6,-9 + 125: 8,-9 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineS + decals: + 133: 6,-5 + 134: 7,-5 + 135: 8,-5 + 144: 15,-17 + 145: 14,-17 + 146: 13,-17 + 147: 12,-17 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineW + decals: + 126: 9,-8 + 127: 9,-7 + 128: 9,-6 + - node: + color: '#D4D4D428' + id: PavementOverlay + decals: + 1377: 41,-12 + 1378: 42,-12 + 1379: 43,-12 + 1380: 44,-12 + 1381: 45,-12 + 1382: 45,-13 + 1383: 44,-13 + 1384: 43,-13 + 1385: 42,-13 + 1386: 41,-13 + 1387: 41,-14 + 1388: 42,-14 + 1389: 43,-14 + 1390: 44,-14 + 1391: 45,-14 + 1392: 44,-21 + 1393: 45,-21 + 1394: 46,-21 + 1395: 46,-22 + 1396: 45,-22 + 1397: 44,-22 + 1398: 48,-21 + 1399: 49,-21 + 1400: 50,-21 + 1401: 50,-22 + 1402: 49,-22 + 1403: 48,-22 + 1404: 52,-21 + 1405: 53,-21 + 1406: 54,-21 + 1407: 54,-22 + 1408: 53,-22 + 1409: 52,-22 + - node: + color: '#1D1D21FF' + id: QuarterTileOverlayGreyscale + decals: + 2489: 43,37 + 2492: 44,41 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 1355: 30,-3 + 1359: 30,-8 + 1362: 30,-5 + 1363: 30,-6 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 208: -5,-37 + 209: -7,-37 + 210: -9,-37 + 211: -8,-37 + 212: -6,-37 + 218: -4,-37 + 257: -7,-40 + 272: -10,-37 + 273: -11,-37 + 310: -12,-37 + 311: -13,-37 + 313: -23,-33 + 314: -24,-33 + 315: -25,-33 + 316: -26,-33 + 317: -27,-33 + 318: -28,-33 + 319: -29,-33 + 320: -30,-33 + 321: -32,-33 + 322: -33,-33 + 354: -22,-33 + 360: -21,-40 + 361: -21,-39 + 362: -21,-38 + 363: -21,-37 + 364: -20,-40 + 365: -22,-40 + 369: -13,-36 + 370: -20,-37 + 371: -12,-32 + 373: -13,-33 + 375: -12,-33 + 377: -13,-34 + 378: -19,-32 + 379: -19,-31 + 380: -19,-30 + 381: -19,-29 + 394: -22,-29 + 395: -23,-29 + 396: -21,-29 + 397: -20,-29 + 398: -18,-29 + 399: -17,-29 + 400: -16,-29 + 401: -15,-29 + 405: -22,-28 + 406: -19,-28 + 407: -16,-28 + 531: -31,-32 + 532: -31,-31 + 535: -31,-33 + 536: -22,-36 + 540: -24,-29 + 549: -14,-29 + 565: -25,-42 + 581: -12,-31 + 748: -2,-37 + 3086: -36,-33 + 3090: -37,-33 + 3094: -35,-33 + 3096: -34,-33 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 498: -30,-20 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 843: -11,-50 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 1029: -48,-2 + 1031: -48,3 + 1066: -33,-2 + 1131: -1,18 + 1132: -1,19 + 1133: -1,20 + 1134: -1,21 + 1135: -1,22 + 1136: -1,23 + 1137: -1,24 + 1138: -1,25 + 1139: -1,29 + 1140: -1,30 + 1141: -2,31 + 1142: -2,32 + 1143: -2,33 + 1144: -2,34 + 1145: -2,35 + 1146: -2,36 + 1147: -2,37 + 1148: -2,38 + 1163: -13,53 + 1165: -12,53 + 1166: -11,53 + 1167: -10,53 + 1168: -9,53 + 1173: -8,50 + 1174: -7,50 + 1175: -6,50 + 1176: -5,50 + 1177: -5,50 + 1178: -4,50 + 1179: -3,50 + 1180: -3,51 + 1181: -3,52 + 1182: -3,53 + 1183: -2,53 + 1184: -1,53 + 1185: 0,53 + 1187: 1,53 + 1229: -2,26 + 1230: -2,27 + 1231: -2,27 + 1232: -2,28 + 1268: 53,1 + 1269: 53,2 + 1270: 54,3 + 1271: 55,4 + 1272: 56,5 + 1313: 45,-3 + 1314: 45,-2 + 1326: 59,-3 + 1340: 57,5 + 1341: 58,5 + 1342: 59,5 + 1343: 60,5 + 1344: 61,5 + 1350: 62,0 + 1987: 3,-83 + 1988: 3,-82 + 1989: 3,-81 + 1990: 3,-80 + 1991: 3,-79 + 1992: 3,-78 + 1993: 3,-77 + 1994: 3,-76 + 1995: 3,-75 + 1996: 3,-74 + 1997: 3,-73 + 1998: 3,-72 + 1999: 3,-71 + 2000: 3,-70 + 2001: 3,-69 + 2002: 3,-68 + 2003: 3,-67 + 2004: 3,-66 + 2005: 3,-65 + 2006: 3,-64 + 2041: -11,-82 + 2042: -11,-81 + 2043: -10,-81 + 2044: -10,-80 + 2045: -10,-79 + 2046: -10,-78 + 2047: -11,-77 + 2048: -11,-76 + 2049: -11,-75 + 2050: -11,-75 + 2051: -10,-75 + 2052: -10,-74 + 2053: -10,-73 + 2054: -10,-72 + 2055: -10,-71 + 2056: -11,-70 + 2057: -11,-69 + 2058: -11,-68 + 2059: -10,-68 + 2060: -10,-67 + 2061: -10,-66 + 2062: -10,-65 + 2063: -10,-64 + 2064: -10,-63 + 2065: -10,-62 + 2066: -10,-61 + 2067: -10,-60 + 2068: -10,-59 + 2069: -10,-58 + 2070: -10,-57 + 2071: -9,-57 + 2072: -1,-57 + 2073: -1,-56 + 2074: -1,-55 + 2075: -1,-54 + 2076: -1,-53 + 2077: -1,-52 + 2078: -1,-51 + 2079: -1,-50 + 2080: -1,-49 + 2081: -1,-46 + 2082: -1,-45 + 2083: -1,-44 + 2084: -1,-43 + 2085: -1,-42 + 2086: -1,-41 + 2406: -1,-47 + 2407: -1,-48 + - node: + color: '#D4D4D433' + id: QuarterTileOverlayGreyscale + decals: + 3196: 0,48 + 3197: 0,47 + 3198: 0,46 + 3199: 0,45 + 3200: 0,44 + 3201: 0,43 + 3202: 0,42 + 3203: 0,41 + 3204: 0,40 + 3205: 0,38 + 3206: 0,39 + 3207: -1,38 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 2791: 57,-13 + - node: + color: '#1D1D21FF' + id: QuarterTileOverlayGreyscale180 + decals: + 2490: 43,39 + 2493: 43,36 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 641: 27,5 + 1357: 33,-9 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 207: -5,-36 + 213: -6,-36 + 214: -7,-36 + 215: -8,-36 + 216: -9,-36 + 217: -10,-36 + 219: -4,-36 + 259: -8,-38 + 271: -11,-36 + 312: -12,-36 + 323: -23,-32 + 324: -24,-32 + 325: -25,-32 + 326: -26,-32 + 327: -27,-32 + 328: -28,-32 + 329: -29,-32 + 330: -32,-32 + 331: -33,-32 + 332: -31,-32 + 333: -30,-32 + 334: -13,-36 + 355: -22,-32 + 356: -21,-37 + 357: -21,-38 + 358: -21,-39 + 359: -21,-40 + 366: -20,-40 + 367: -22,-40 + 368: -22,-33 + 372: -12,-32 + 374: -13,-32 + 376: -13,-33 + 382: -19,-32 + 383: -19,-31 + 384: -19,-30 + 385: -19,-29 + 386: -20,-28 + 387: -21,-28 + 388: -22,-28 + 389: -23,-28 + 390: -18,-28 + 391: -17,-28 + 392: -16,-28 + 393: -15,-28 + 402: -19,-28 + 533: -31,-31 + 534: -31,-33 + 537: -22,-36 + 538: -22,-35 + 539: -24,-28 + 550: -14,-28 + 562: -27,-40 + 580: -12,-31 + 592: -12,-33 + 3087: -36,-32 + 3088: -37,-32 + 3089: -38,-32 + 3095: -35,-32 + 3097: -34,-32 + - node: + color: '#639137FF' + id: QuarterTileOverlayGreyscale180 + decals: + 650: 4,22 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 837: -14,-48 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 1052: -18,-1 + 1053: -19,-1 + 1054: -20,-1 + 1055: -21,-1 + 1056: -22,-1 + 1057: -23,-1 + 1058: -27,-1 + 1059: -28,-1 + 1060: -29,-1 + 1061: -29,-2 + 1062: -31,-2 + 1064: -33,-2 + 1067: -34,-1 + 1068: -35,-1 + 1069: -36,-1 + 1070: -37,-1 + 1071: -38,-1 + 1072: -39,-1 + 1073: -40,-1 + 1074: -41,-1 + 1075: -41,-2 + 1076: -41,-3 + 1077: -41,-4 + 1078: -41,-5 + 1079: -41,-6 + 1080: -41,-7 + 1081: -41,-8 + 1082: -41,-9 + 1083: -41,-10 + 1084: -41,-13 + 1085: -41,-14 + 1086: -41,-15 + 1087: -41,-16 + 1088: -41,-17 + 1089: -41,-18 + 1090: -41,-19 + 1091: -41,-20 + 1092: -41,-21 + 1093: -41,-22 + 1094: -41,-23 + 1095: -41,-24 + 1096: -41,-25 + 1097: -41,-26 + 1098: -41,-27 + 1099: -41,-28 + 1100: -41,-29 + 1101: -41,-30 + 1102: -41,-31 + 1103: -43,-31 + 1170: -9,53 + 1171: -9,52 + 1172: -9,51 + 1188: 1,53 + 1213: 2,31 + 1216: -2,31 + 1279: 52,-1 + 1280: 51,-1 + 1281: 50,-1 + 1282: 49,-1 + 1283: 48,-1 + 1284: 47,-2 + 1285: 47,-3 + 1286: 46,-3 + 1287: 44,-1 + 1288: 42,-1 + 1289: 39,-1 + 1290: 38,-1 + 1291: 37,-1 + 1292: 36,-1 + 1293: 35,-1 + 1294: 34,-1 + 1295: 33,-1 + 1296: 32,-1 + 1297: 31,-1 + 1298: 29,-1 + 1299: 28,-2 + 1300: 27,-2 + 1301: 26,-2 + 1302: 25,-1 + 1303: 24,-1 + 1304: 23,-1 + 1305: 22,-1 + 1306: 21,-1 + 1307: 20,-1 + 1308: 19,-1 + 1309: 18,-1 + 1312: 45,-3 + 1327: 57,2 + 1328: 57,1 + 1329: 57,0 + 1330: 57,-1 + 1345: 61,5 + 1346: 61,4 + 1347: 61,3 + 1348: 61,2 + 1349: 61,1 + 1353: 62,-1 + 1354: 30,-1 + 1935: 1,-19 + 1936: 1,-20 + 1937: 1,-18 + 1938: 1,-21 + 1939: 1,-22 + 1940: 1,-23 + 1941: 2,-26 + 1942: 2,-28 + 1943: 1,-29 + 1944: 1,-30 + 1945: 1,-31 + 1946: 1,-32 + 1985: 4,-83 + 1986: 3,-83 + 2007: 2,-63 + 2008: 1,-63 + 2009: 0,-63 + 2010: -1,-63 + 2011: -2,-63 + 2018: -3,-63 + 2098: 1,-33 + 2099: 1,-34 + 2100: 1,-35 + 2101: 1,-36 + 2102: 1,-37 + 2103: 1,-38 + 2104: 1,-39 + 2105: 1,-40 + 2125: 1,-25 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 1356: 30,-9 + 1360: 30,-7 + 1361: 30,-4 + 1364: 30,-6 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 260: -7,-38 + 564: -25,-40 + 749: -2,-36 + 3092: -37,-32 + - node: + color: '#639137FF' + id: QuarterTileOverlayGreyscale270 + decals: + 649: 9,22 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 838: -11,-48 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 1030: -48,3 + 1063: -31,-2 + 1065: -33,-2 + 1105: -43,-29 + 1106: -43,-28 + 1107: -43,-27 + 1108: -43,-26 + 1109: -43,-25 + 1110: -43,-24 + 1111: -43,-23 + 1112: -43,-22 + 1113: -43,-21 + 1114: -43,-20 + 1115: -43,-19 + 1116: -43,-18 + 1117: -43,-14 + 1118: -43,-13 + 1119: -43,-12 + 1120: -43,-8 + 1121: -43,-7 + 1122: -43,-6 + 1123: -44,-5 + 1124: -45,-5 + 1125: -46,-5 + 1126: -47,-5 + 1127: -48,-5 + 1128: -43,-5 + 1129: -29,-2 + 1149: -4,49 + 1150: -5,49 + 1151: -6,49 + 1152: -7,49 + 1153: -8,49 + 1154: -9,49 + 1155: -10,49 + 1156: -11,49 + 1157: -12,49 + 1158: -13,49 + 1159: -13,50 + 1160: -13,51 + 1161: -13,52 + 1162: -13,53 + 1214: 2,31 + 1215: -2,31 + 1273: 53,-3 + 1274: 54,-4 + 1275: 55,-5 + 1276: 56,-6 + 1277: 53,-1 + 1278: 53,-2 + 1310: 41,-1 + 1311: 45,-3 + 1325: 59,2 + 1331: 59,-1 + 1332: 59,0 + 1333: 59,1 + 1334: 61,-6 + 1351: 62,-1 + 2012: -8,-63 + 2013: -7,-63 + 2014: -6,-63 + 2015: -5,-63 + 2016: -4,-63 + 2017: -3,-63 + 2039: -9,-83 + 2040: -10,-83 + 2087: -1,-32 + 2088: -1,-31 + 2089: -1,-29 + 2090: -1,-30 + 2091: -1,-26 + 2092: -2,-23 + 2093: -2,-22 + 2094: -1,-21 + 2095: -1,-20 + 2096: -1,-19 + 2097: -1,-18 + 2118: 4,-51 + 2119: 3,-51 + 2120: 2,-51 + 2121: -1,-24 + 2122: -1,-25 + 2123: -1,-27 + 2124: -1,-28 + - node: + color: '#D4D4D433' + id: QuarterTileOverlayGreyscale270 + decals: + 3192: -3,49 + 3193: -2,49 + 3194: -1,49 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 2790: 57,-9 + - node: + color: '#1D1D21FF' + id: QuarterTileOverlayGreyscale90 + decals: + 2491: 42,40 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 640: 27,8 + 1358: 33,-3 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 258: -8,-40 + 563: -27,-42 + 3091: -38,-33 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 499: -32,-20 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 844: -14,-50 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 1032: -48,3 + 1033: -47,3 + 1034: -46,3 + 1035: -46,2 + 1036: -46,1 + 1037: -45,1 + 1038: -34,1 + 1039: -33,1 + 1040: -32,1 + 1041: -31,1 + 1042: -30,1 + 1043: -29,1 + 1044: -28,1 + 1045: -27,1 + 1046: -23,1 + 1047: -22,1 + 1048: -21,1 + 1049: -20,1 + 1050: -19,1 + 1051: -18,1 + 1104: -44,-30 + 1130: -29,-2 + 1164: -13,53 + 1169: -9,53 + 1186: 1,53 + 1189: 1,52 + 1190: 1,51 + 1191: 1,50 + 1192: 1,48 + 1193: 1,47 + 1194: 1,46 + 1195: 1,45 + 1196: 1,44 + 1197: 1,43 + 1198: 1,42 + 1199: 1,41 + 1200: 1,40 + 1201: 1,39 + 1202: 1,38 + 1203: 2,38 + 1204: 2,37 + 1205: 2,37 + 1206: 2,36 + 1207: 2,35 + 1208: 2,34 + 1209: 2,33 + 1210: 2,32 + 1211: 2,31 + 1212: 1,30 + 1217: 1,29 + 1218: 1,25 + 1219: 1,24 + 1220: 1,23 + 1221: 1,22 + 1222: 1,21 + 1223: 1,20 + 1224: 1,20 + 1225: 1,19 + 1226: 1,18 + 1227: 2,26 + 1228: 2,27 + 1233: 18,1 + 1234: 19,1 + 1235: 20,1 + 1236: 21,1 + 1237: 22,1 + 1238: 23,1 + 1239: 24,1 + 1240: 25,1 + 1241: 26,1 + 1242: 27,1 + 1243: 28,1 + 1244: 29,1 + 1245: 30,1 + 1246: 31,1 + 1247: 32,1 + 1248: 33,1 + 1249: 34,2 + 1250: 35,2 + 1251: 36,2 + 1252: 37,1 + 1253: 38,1 + 1254: 39,1 + 1255: 40,1 + 1256: 41,1 + 1257: 42,1 + 1258: 43,1 + 1259: 44,1 + 1260: 45,1 + 1261: 46,1 + 1262: 47,1 + 1263: 48,1 + 1264: 49,1 + 1265: 50,1 + 1266: 51,1 + 1267: 52,1 + 1324: 57,-3 + 1335: 61,-6 + 1336: 61,-5 + 1337: 61,-4 + 1338: 61,-3 + 1339: 61,-2 + 1352: 62,0 + 1947: 1,-52 + 1948: 1,-53 + 1949: 1,-54 + 1950: 1,-55 + 1951: 1,-56 + 1952: 1,-57 + 1953: 1,-58 + 1954: 1,-59 + 1955: 1,-60 + 1956: 2,-60 + 1957: 3,-60 + 1958: 4,-60 + 1959: 4,-61 + 1960: 4,-62 + 1961: 4,-63 + 1962: 4,-64 + 1963: 4,-65 + 1964: 4,-66 + 1965: 4,-68 + 1966: 5,-68 + 1967: 5,-69 + 1968: 5,-70 + 1969: 4,-71 + 1970: 4,-67 + 1971: 4,-72 + 1972: 4,-73 + 1973: 4,-74 + 1974: 4,-75 + 1975: 5,-75 + 1976: 5,-76 + 1977: 5,-77 + 1978: 4,-78 + 1979: 4,-79 + 1980: 4,-80 + 1981: 4,-81 + 1982: 5,-81 + 1983: 5,-82 + 1984: 5,-83 + 2019: -9,-64 + 2020: -9,-65 + 2021: -9,-66 + 2022: -9,-67 + 2023: -9,-68 + 2024: -9,-69 + 2025: -9,-70 + 2026: -9,-71 + 2027: -9,-72 + 2028: -9,-73 + 2029: -9,-74 + 2030: -9,-75 + 2031: -9,-76 + 2032: -9,-77 + 2033: -9,-78 + 2034: -9,-79 + 2035: -9,-80 + 2036: -9,-81 + 2037: -9,-82 + 2038: -9,-83 + 2106: 1,-41 + 2107: 2,-42 + 2108: 3,-42 + 2109: 3,-43 + 2110: 3,-44 + 2111: 3,-45 + 2112: 3,-46 + 2113: 3,-47 + 2114: 3,-48 + 2115: 4,-49 + 2116: 4,-50 + 2117: 4,-51 + - node: + color: '#D4D4D433' + id: QuarterTileOverlayGreyscale90 + decals: + 3195: 1,49 + 3266: -35,1 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 2741: -6.549043,-18.995234 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 2742: -10.21571,-19.245234 + 2743: -19.922543,-12.716649 + 2744: -18.60001,-10.259648 + 2745: -18.846893,-8.106161 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 967: 31,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 966: 32,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 965: 33,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 964: 34,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 963: 35,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 962: 36,0 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 961: 37,0 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClearGreyscale + decals: + 3426: -56,-4 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 593: 19,9 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 335: -21,-33 + - node: + color: '#639137FF' + id: ThreeQuarterTileOverlayGreyscale + decals: + 672: 3,24 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 179: -33,-15 + 180: -33,-11 + 181: -30,-11 + 182: -27,-19 + 206: -27,-11 + 493: -33,-23 + - node: + color: '#C6FF91FF' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3082: -39,-31 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 635: 27,4 + 636: 28,5 + 637: 28,5 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 500: -14,-36 + 551: -12,-28 + - node: + color: '#639137FF' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 675: 10,19 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 172: -29,-21 + 191: -25,-21 + 192: -25,-13 + 193: -29,-13 + 194: -32,-13 + 495: -29,-24 + 496: -32,-16 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 594: 19,4 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 337: -21,-36 + - node: + color: '#639137FF' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 674: 3,19 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 173: -33,-21 + 187: -33,-13 + 188: -30,-13 + 189: -27,-13 + 190: -27,-21 + 492: -33,-24 + 497: -30,-16 + - node: + color: '#C6FF91FF' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3073: -39,-35 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 638: 28,8 + 639: 27,9 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 336: -14,-33 + - node: + color: '#639137FF' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 673: 10,24 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 183: -25,-11 + 184: -25,-19 + 185: -29,-11 + 186: -32,-11 + 494: -29,-23 + 3093: -35,-31 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 3399: -58,-13 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 992: -56,-7 + 996: -56,-3 + 1012: -54,-13 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 3398: -58,-8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 990: -56,-1 + 991: -56,-1 + 997: -56,-5 + 1011: -54,-8 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 2537: 12,53 + 2538: 13,53 + 2539: 14,53 + - node: + color: '#BC863FFF' + id: WarnFullGreyscale + decals: + 3422: -51,-1 + 3423: -51,0 + 3424: -52,-1 + 3425: -52,0 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 2519: 9,49 + 2521: 19,49 + 2522: 19,48 + 2523: 19,47 + 2524: 19,46 + 3393: -58,-12 + 3394: -58,-11 + 3395: -58,-10 + 3396: -58,-9 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 993: -56,-5 + 994: -56,-4 + 995: -56,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 987: -57,-1 + 1001: -57,-8 + 1002: -56,-8 + 1003: -56,-8 + 1004: -55,-8 + 3400: -58,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 988: -56,-6 + 989: -56,-2 + 1005: -54,-10 + 1006: -54,-11 + 1007: -54,-12 + 2520: 17,49 + 3397: -54,-9 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 986: -57,-7 + 1008: -55,-13 + 1009: -56,-13 + 1010: -57,-13 + 2516: 12,46 + 2517: 13,46 + 2518: 14,46 + 2529: 7,51 + 2530: 8,51 + 2531: 9,51 + 2532: 17,51 + 2533: 18,51 + 2534: 19,51 + 2535: 15,53 + 2536: 11,53 + 3401: -58,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 277: -30,-39 + 297: -29,-35 + 696: 37,-7 + 702: 44,-5 + 750: -4,38 + 751: -12,33 + 792: -16,32 + 808: -19,-3 + 862: -49,7 + 865: -53,12 + 866: -51,10 + 908: 36,18 + 915: 40,16 + 935: 44,-9 + 942: 17,-30 + 943: 20,-30 + 2888: 41,23 + 3123: 19,37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 280: -31,-39 + 281: -31,-39 + 298: -33,-35 + 689: 35,-7 + 690: 35,-3 + 703: 39,-5 + 752: -14,38 + 753: -14,33 + 793: -19,32 + 809: -22,-3 + 861: -50,7 + 867: -55,12 + 868: -57,10 + 909: 35,18 + 916: 38,16 + 917: 35,15 + 932: 42,-9 + 944: 13,-30 + 945: 19,-30 + 2889: 39,23 + 3124: 12,37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 279: -30,-41 + 308: -29,-37 + 700: 37,-5 + 715: 44,-7 + 754: -12,31 + 755: -4,31 + 794: -16,27 + 810: -19,-5 + 859: -49,5 + 870: -51,9 + 900: 41,18 + 911: 36,17 + 912: 40,11 + 933: 44,-10 + 946: 17,-32 + 947: 20,-32 + 3134: 19,36 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 278: -31,-41 + 306: -33,-37 + 687: 35,-5 + 688: 35,-9 + 704: 39,-7 + 756: -14,31 + 757: -14,35 + 758: -10,31 + 795: -19,27 + 811: -22,-5 + 860: -50,5 + 869: -57,9 + 899: 39,18 + 910: 35,17 + 913: 38,11 + 914: 35,12 + 934: 42,-10 + 948: 13,-32 + 949: 19,-32 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 682: 38,-3 + 683: 38,-9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 930: 46,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 931: 46,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 698: 37,-9 + 881: -53,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 882: -55,10 + 929: 38,15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 701: 37,-3 + 3136: 17,36 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 788: -10,35 + 928: 38,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 276: -32,-39 + 282: -30,-40 + 283: -32.14971,-38.99947 + 284: -32.14971,-38.99947 + 285: -32,-41 + 286: -32,-40 + 287: -32.150627,-40.002556 + 288: -32.150627,-40.99947 + 289: -32.296745,-39.00201 + 290: -32.293655,-40.00201 + 291: -32.29232,-41.003887 + 309: -29,-36 + 697: 37,-8 + 699: 37,-4 + 716: 44,-6 + 765: -4,32 + 766: -4,33 + 767: -4,34 + 768: -4,35 + 769: -4,36 + 770: -4,37 + 771: -12,32 + 796: -16,31 + 797: -16,30 + 798: -16,29 + 799: -16,28 + 812: -19,-4 + 864: -49,6 + 880: -53,11 + 901: 41,19 + 902: 41,20 + 903: 41,21 + 918: 40,14 + 919: 40,15 + 920: 40,12 + 921: 40,13 + 950: 20,-31 + 951: 17,-31 + 2890: 41,22 + 3125: 17,35 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 295: -36,-39 + 296: -35,-39 + 299: -32,-35 + 300: -31,-35 + 301: -30,-35 + 691: 36,-3 + 692: 37,-3 + 695: 36,-7 + 710: 40,-5 + 711: 41,-5 + 712: 41,-5 + 713: 42,-5 + 714: 43,-5 + 772: -5,38 + 773: -6,38 + 774: -7,38 + 775: -8,38 + 776: -9,38 + 777: -10,38 + 778: -11,38 + 779: -12,38 + 780: -13,38 + 781: -13,33 + 802: -17,32 + 803: -18,32 + 816: -21,-3 + 817: -20,-3 + 818: -19,-3 + 876: -54,12 + 877: -56,10 + 878: -52,10 + 924: 36,15 + 925: 37,15 + 937: 43,-9 + 957: 14,-30 + 958: 15,-30 + 959: 15,-30 + 960: 16,-30 + 2892: 40,23 + 3128: 13,37 + 3129: 14,37 + 3130: 15,37 + 3131: 16,37 + 3132: 17,37 + 3133: 18,37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 292: -36,-38 + 293: -36,-38 + 294: -35,-38 + 302: -32,-37 + 303: -31,-37 + 304: -31,-37 + 305: -30,-37 + 684: 37,-9 + 685: 36,-9 + 686: 36,-5 + 706: 40,-7 + 707: 41,-7 + 708: 42,-7 + 709: 43,-7 + 759: -13,31 + 760: -9,31 + 761: -8,31 + 762: -7,31 + 763: -6,31 + 764: -5,31 + 789: -11,35 + 790: -12,35 + 791: -13,35 + 800: -17,27 + 801: -18,27 + 814: -21,-5 + 815: -20,-5 + 871: -56,9 + 872: -55,9 + 873: -54,9 + 874: -53,9 + 875: -52,9 + 904: 40,18 + 926: 36,12 + 927: 37,12 + 936: 43,-10 + 954: 14,-32 + 955: 15,-32 + 956: 16,-32 + 3135: 18,36 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 275: -31,-40 + 307: -33,-36 + 693: 35,-4 + 694: 35,-8 + 705: 39,-6 + 782: -14,37 + 783: -14,36 + 784: -14,32 + 785: -10,32 + 786: -10,33 + 787: -10,34 + 804: -19,31 + 805: -19,30 + 806: -19,29 + 807: -19,28 + 813: -22,-4 + 863: -50,6 + 879: -55,11 + 905: 39,19 + 906: 39,20 + 907: 39,21 + 922: 35,13 + 923: 35,14 + 952: 19,-31 + 953: 13,-31 + 2891: 39,22 + 3126: 12,35 + 3127: 12,36 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 61441 + 1: 4094 + -4,6: + 0: 65535 + -4,7: + 0: 65331 + -3,4: + 0: 65535 + -3,5: + 1: 273 + 0: 65262 + -3,6: + 0: 65535 + -3,7: + 0: 65280 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65280 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65518 + -8,-4: + 0: 65535 + -8,-3: + 0: 65535 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -6,6: + 0: 65535 + -6,7: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 63359 + 1: 2176 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 65535 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 63351 + 7,7: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 65535 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-8: + 0: 65535 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + 0,-8: + 0: 63351 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 4095 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 34679 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + -8,-8: + 0: 65535 + -8,-7: + 0: 65535 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -7,-8: + 0: 65535 + -7,-7: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -6,-8: + 0: 65535 + -6,-7: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + -4,-12: + 0: 65535 + -4,-11: + 0: 65535 + -4,-10: + 0: 65535 + -4,-9: + 0: 65535 + -3,-12: + 0: 65535 + -3,-11: + 0: 65535 + -3,-10: + 0: 65535 + -3,-9: + 0: 65535 + -2,-12: + 0: 65535 + -2,-11: + 0: 65535 + -2,-10: + 0: 65535 + -2,-9: + 0: 65535 + -1,-12: + 0: 65535 + -1,-11: + 0: 65535 + -1,-10: + 0: 65535 + -1,-9: + 0: 65535 + 0,-12: + 0: 65535 + 0,-11: + 0: 65535 + 0,-10: + 0: 65535 + 0,-9: + 0: 65535 + 1,-12: + 0: 65535 + 1,-11: + 0: 65535 + 1,-10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-12: + 0: 65535 + 2,-11: + 0: 65535 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 3,-12: + 0: 65535 + 3,-11: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + -8,-12: + 0: 65535 + -8,-11: + 0: 65439 + 2: 96 + -8,-10: + 0: 65535 + -8,-9: + 0: 65535 + -7,-12: + 0: 65535 + -7,-11: + 0: 65535 + -7,-10: + 0: 65535 + -7,-9: + 0: 65535 + -6,-12: + 0: 65535 + -6,-11: + 0: 65535 + -6,-10: + 0: 65535 + -6,-9: + 0: 65535 + -5,-12: + 0: 65535 + -5,-11: + 0: 65535 + -5,-10: + 0: 65535 + -5,-9: + 0: 65535 + 4,-12: + 0: 65535 + 4,-11: + 0: 65535 + 4,-10: + 0: 65535 + 4,-9: + 0: 63351 + 1: 2184 + 5,-12: + 0: 65535 + 5,-11: + 0: 65535 + 5,-10: + 0: 65535 + 5,-9: + 1: 307 + 0: 65228 + 6,-12: + 0: 65459 + 6,-11: + 0: 65535 + 6,-10: + 0: 65535 + 6,-9: + 0: 65535 + 7,-12: + 0: 65528 + 7,-11: + 0: 65535 + 7,-10: + 0: 65535 + 7,-9: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 9,-8: + 0: 65535 + 9,-7: + 0: 65535 + 9,-6: + 0: 65535 + 9,-5: + 0: 65535 + 10,-8: + 0: 65535 + 10,-7: + 0: 65535 + 10,-6: + 0: 65535 + 10,-5: + 0: 65535 + 11,-8: + 0: 255 + 11,-6: + 0: 65520 + 11,-5: + 0: 65535 + 8,-12: + 0: 65535 + 8,-11: + 0: 65535 + 8,-10: + 0: 65535 + 8,-9: + 0: 65535 + 9,-12: + 0: 65527 + 9,-11: + 0: 65535 + 9,-10: + 0: 65535 + 9,-9: + 0: 65535 + 10,-12: + 0: 65535 + 10,-11: + 0: 65535 + 10,-10: + 0: 65535 + 10,-9: + 0: 65535 + 11,-12: + 0: 65399 + 11,-11: + 0: 65535 + 11,-10: + 0: 65535 + 11,-9: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 65535 + 9,-1: + 0: 65535 + 10,-4: + 0: 65535 + 10,-3: + 0: 65535 + 10,-2: + 0: 65535 + 10,-1: + 0: 65535 + 11,-4: + 0: 65535 + 11,-3: + 0: 65535 + 11,-2: + 0: 65535 + 11,-1: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 32767 + 3: 32768 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,2: + 0: 65535 + 9,3: + 0: 65535 + 10,0: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 65535 + 10,3: + 0: 65535 + 11,0: + 0: 65535 + 11,1: + 0: 65535 + 11,2: + 0: 65535 + 11,3: + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 64716 + 8,7: + 0: 65535 + 9,4: + 0: 65535 + 9,5: + 0: 65535 + 9,6: + 0: 65535 + 9,7: + 0: 65535 + 10,4: + 0: 65535 + 10,5: + 0: 65535 + 10,6: + 0: 65535 + 10,7: + 0: 65535 + 11,4: + 0: 65535 + 11,5: + 0: 65535 + 11,6: + 0: 65535 + 11,7: + 0: 65535 + -12,-12: + 0: 30719 + -12,-11: + 0: 65527 + -12,-10: + 0: 65535 + -12,-9: + 0: 65535 + -11,-12: + 0: 65535 + -11,-11: + 0: 65535 + -11,-10: + 0: 65535 + -11,-9: + 0: 65535 + -10,-12: + 0: 65535 + -10,-11: + 0: 65535 + -10,-10: + 0: 65535 + -10,-9: + 0: 65535 + -9,-12: + 0: 65535 + -9,-11: + 0: 65535 + -9,-10: + 0: 65535 + -9,-9: + 0: 65535 + -12,-8: + 0: 65535 + -12,-7: + 0: 65535 + -12,-6: + 0: 65527 + -12,-5: + 0: 65407 + -11,-8: + 0: 65535 + -11,-7: + 0: 65535 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -10,-8: + 0: 65535 + -10,-7: + 0: 65535 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -9,-8: + 0: 65535 + -9,-7: + 0: 65535 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -12,-4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 65535 + -11,-4: + 0: 65535 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-4: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 40863 + -11,0: + 0: 65535 + -11,1: + 0: 65535 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,0: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 65535 + -9,7: + 0: 65535 + 0,-13: + 0: 65535 + 1,-13: + 0: 65531 + -4,-13: + 0: 65535 + -3,-13: + 0: 65535 + -2,-13: + 0: 65535 + -1,-13: + 0: 65535 + -8,-14: + 0: 65535 + -8,-13: + 0: 65535 + -7,-14: + 0: 65535 + -7,-13: + 0: 65535 + -6,-13: + 0: 65535 + -5,-13: + 0: 65535 + -12,-14: + 0: 65535 + -12,-13: + 0: 65535 + -11,-14: + 0: 65535 + -11,-13: + 0: 63487 + -10,-14: + 0: 65535 + -10,-13: + 0: 64767 + -9,-14: + 0: 65535 + -9,-13: + 0: 65535 + -13,-8: + 0: 65535 + -13,-11: + 0: 65535 + -13,-10: + 0: 65535 + -13,-9: + 0: 65535 + 8,8: + 0: 65535 + 8,9: + 0: 65535 + 8,10: + 0: 65535 + 8,11: + 0: 65535 + 9,8: + 0: 65535 + 9,9: + 0: 65535 + 9,10: + 0: 65535 + 9,11: + 0: 65535 + 10,8: + 0: 65535 + 10,9: + 0: 65535 + 10,10: + 0: 65535 + 10,11: + 0: 12908 + 4: 275 + 11,8: + 0: 65535 + 11,9: + 0: 65535 + 11,10: + 0: 65535 + 11,11: + 0: 61166 + 4,8: + 0: 65535 + 4,9: + 0: 65535 + 4,10: + 0: 65535 + 4,11: + 0: 65535 + 5,8: + 0: 65535 + 5,9: + 0: 65535 + 5,10: + 0: 65535 + 5,11: + 0: 65535 + 6,8: + 0: 65535 + 6,9: + 0: 65535 + 6,10: + 0: 65535 + 6,11: + 0: 65535 + 7,8: + 0: 65535 + 7,9: + 0: 65535 + 7,10: + 0: 65535 + 7,11: + 0: 65535 + 0,8: + 0: 65535 + 0,9: + 0: 65535 + 0,10: + 0: 65535 + 0,11: + 0: 65535 + 1,8: + 0: 65535 + 1,9: + 0: 65535 + 1,10: + 0: 65535 + 1,11: + 0: 65535 + 2,8: + 0: 65535 + 2,9: + 0: 65535 + 2,10: + 0: 65535 + 2,11: + 0: 65535 + 3,8: + 0: 65535 + 3,9: + 0: 65535 + 3,10: + 0: 65535 + 3,11: + 0: 65535 + 12,0: + 0: 65535 + 12,1: + 0: 65535 + 12,2: + 0: 65535 + 13,0: + 0: 65535 + 13,1: + 0: 65535 + 13,2: + 0: 65535 + 14,0: + 0: 65535 + 12,-4: + 0: 65535 + 12,-3: + 0: 65535 + 12,-2: + 0: 65535 + 12,-1: + 0: 65535 + 13,-4: + 0: 65535 + 13,-3: + 0: 65535 + 13,-2: + 0: 65535 + 13,-1: + 0: 65535 + 14,-4: + 0: 65535 + 14,-3: + 0: 65535 + 14,-2: + 0: 65535 + 14,-1: + 0: 65535 + 15,-4: + 0: 48059 + 15,-3: + 0: 48059 + 12,-8: + 0: 255 + 12,-6: + 0: 65520 + 12,-5: + 0: 65535 + 13,-8: + 0: 255 + 13,-6: + 0: 65520 + 13,-5: + 0: 65535 + 14,-8: + 0: 255 + 14,-6: + 0: 65520 + 14,-5: + 0: 65535 + 15,-8: + 0: 119 + 15,-6: + 0: 63344 + 15,-5: + 0: 49151 + 12,-11: + 0: 65535 + 12,-10: + 0: 65535 + 12,-9: + 0: 65535 + 13,-10: + 0: 65535 + 13,-9: + 0: 65535 + 14,-10: + 0: 65535 + 14,-9: + 0: 65535 + 15,-10: + 0: 65535 + 15,-9: + 0: 30583 + -4,8: + 0: 65535 + -4,9: + 0: 65535 + -4,10: + 0: 65535 + -4,11: + 0: 65535 + -3,8: + 0: 65535 + -3,9: + 0: 65535 + -3,10: + 0: 65535 + -3,11: + 0: 65535 + -2,8: + 0: 65535 + -2,9: + 0: 65535 + -2,10: + 0: 65535 + -2,11: + 0: 65535 + -1,8: + 0: 65535 + -1,9: + 0: 65535 + -1,10: + 0: 65535 + -1,11: + 0: 65535 + -8,8: + 0: 65535 + -8,9: + 0: 65535 + -8,10: + 0: 65535 + -8,11: + 0: 43823 + -7,8: + 0: 65535 + -7,9: + 0: 65535 + -7,10: + 0: 65535 + -7,11: + 0: 53199 + -6,8: + 0: 65535 + -6,9: + 0: 65535 + -6,10: + 0: 65535 + -6,11: + 0: 65535 + -5,8: + 0: 65535 + -5,9: + 0: 65535 + -5,10: + 0: 65535 + -5,11: + 0: 65535 + -10,8: + 0: 65535 + -9,8: + 0: 65535 + -9,9: + 0: 65535 + -9,10: + 0: 61166 + -9,11: + 0: 20238 + 8,-16: + 0: 65024 + 8,-15: + 0: 65535 + 8,-14: + 0: 65535 + 8,-13: + 0: 65535 + 9,-16: + 0: 28928 + 9,-15: + 0: 65527 + 9,-14: + 0: 14207 + 9,-13: + 0: 13107 + 7,-15: + 0: 52424 + 7,-14: + 0: 2188 + 7,-16: + 0: 32768 + -7,12: + 0: 64750 + -7,13: + 0: 36092 + -6,12: + 0: 65535 + -6,13: + 0: 65535 + -5,12: + 0: 65535 + -5,13: + 0: 65535 + -4,12: + 0: 65535 + -4,13: + 0: 65535 + -3,12: + 0: 65535 + -3,13: + 0: 4095 + -2,12: + 0: 65535 + -2,13: + 0: 65535 + -1,12: + 0: 65535 + -1,13: + 0: 8191 + 0,12: + 0: 65535 + 0,13: + 0: 53247 + 1,12: + 0: 65535 + 1,13: + 0: 32767 + 1,14: + 0: 61183 + 1,15: + 0: 61166 + 2,12: + 0: 65535 + 2,13: + 0: 4095 + 2,14: + 0: 49023 + 2,15: + 0: 44974 + 3,12: + 0: 65535 + 3,13: + 0: 4095 + 3,14: + 0: 44847 + 3,15: + 0: 44975 + 4,12: + 0: 65535 + 4,13: + 0: 4095 + 4,14: + 0: 61439 + 4,15: + 0: 44971 + 5,12: + 0: 65535 + 5,13: + 0: 15359 + 5,14: + 0: 29491 + 5,15: + 0: 14335 + 6,12: + 0: 65535 + 6,13: + 0: 8191 + 6,15: + 0: 255 + 7,12: + 0: 65535 + 7,13: + 0: 4095 + 7,15: + 0: 255 + 8,12: + 0: 65535 + 8,13: + 0: 4991 + 8,15: + 0: 255 + 9,12: + 0: 65535 + 9,15: + 0: 255 + 10,12: + 0: 16383 + 10,14: + 0: 65224 + 10,15: + 0: 55 + 11,12: + 0: 53247 + 11,13: + 0: 65228 + 11,14: + 0: 311 + 12,8: + 0: 13107 + 12,9: + 0: 13107 + 12,10: + 0: 63923 + 12,11: + 0: 61443 + 12,6: + 0: 65535 + 12,7: + 0: 16383 + 12,12: + 0: 65535 + 13,12: + 0: 4095 + 14,12: + 0: 4095 + 15,12: + 0: 4095 + 16,12: + 0: 883 + 1,16: + 0: 61166 + 1,17: + 0: 28670 + 2,16: + 0: 32702 + 2,17: + 0: 61439 + 3,16: + 0: 12207 + 3,17: + 0: 65535 + 4,16: + 0: 65515 + 4,17: + 0: 16383 + 5,16: + 0: 13107 + 5,17: + 0: 49011 + -12,2: + 0: 34953 + -12,3: + 0: 34956 + -11,2: + 0: 8191 + 5: 57344 + -11,3: + 0: 65311 + 6: 224 + -12,4: + 0: 53192 + -12,7: + 0: 36092 + -12,5: + 0: 34952 + -12,6: + 0: 34952 + -11,4: + 0: 7967 + 7: 224 + 4: 57344 + -11,5: + 0: 7967 + 4: 57568 + -11,6: + 0: 65311 + 4: 224 + -11,7: + 0: 7967 + 4: 57568 + -12,9: + 0: 65433 + -12,10: + 0: 52428 + -12,8: + 0: 34952 + -11,8: + 0: 65535 + -11,9: + 0: 65535 + -10,9: + 0: 65535 + -10,10: + 0: 35771 + -10,11: + 0: 2296 + -8,13: + 0: 29666 + -8,12: + 0: 43690 + -13,2: + 0: 30719 + -13,3: + 0: 12851 + -13,4: + 0: 32630 + -13,7: + 0: 26615 + -13,5: + 0: 8742 + -13,6: + 0: 25122 + -13,8: + 0: 50722 + -13,9: + 0: 8 + -9,12: + 0: 17476 + -9,13: + 0: 3140 + 0,-16: + 0: 65535 + 0,-15: + 0: 65535 + 0,-14: + 0: 65535 + 1,-16: + 0: 13107 + 1,-15: + 0: 13107 + 1,-14: + 0: 48063 + 2,-15: + 0: 39315 + 2,-14: + 0: 63631 + 2,-13: + 0: 65528 + 2,-16: + 0: 27776 + 3,-16: + 0: 57375 + 3,-15: + 0: 12443 + 3,-14: + 0: 61488 + 3,-13: + 0: 65524 + -4,-15: + 0: 65521 + -4,-14: + 0: 65535 + -3,-15: + 0: 65535 + -3,-14: + 0: 65535 + -3,-16: + 0: 61166 + -2,-16: + 0: 65535 + -2,-15: + 0: 65535 + -2,-14: + 0: 65535 + -1,-16: + 0: 65535 + -1,-15: + 0: 65535 + -1,-14: + 0: 65535 + -6,-14: + 0: 65535 + -6,-15: + 0: 65280 + -5,-15: + 0: 65280 + -5,-14: + 0: 65535 + -16,-7: + 0: 52416 + -16,-6: + 0: 52428 + -16,-5: + 0: 52428 + -15,-7: + 0: 65534 + -15,-6: + 0: 65535 + -15,-5: + 0: 65535 + -15,-8: + 0: 61439 + -14,-8: + 0: 65535 + -14,-7: + 0: 65535 + -14,-6: + 0: 65535 + -14,-5: + 0: 65535 + -13,-7: + 0: 65535 + -13,-6: + 0: 65535 + -13,-5: + 0: 65535 + -15,-11: + 0: 65535 + -15,-10: + 0: 65535 + -15,-9: + 0: 65535 + -14,-11: + 0: 65535 + -14,-10: + 0: 65535 + -14,-9: + 0: 65535 + -14,-12: + 0: 65535 + -13,-12: + 0: 65535 + 12,3: + 0: 65535 + 13,3: + 0: 65535 + 14,1: + 0: 65535 + 14,2: + 0: 65535 + 14,3: + 0: 65535 + 15,0: + 0: 65535 + 15,1: + 0: 32767 + 15,2: + 0: 63351 + 15,3: + 0: 32767 + 15,-2: + 0: 65535 + 15,-1: + 0: 65535 + -12,11: + 0: 136 + -11,10: + 0: 36863 + -11,11: + 0: 248 + 4,-16: + 0: 57311 + 4,-13: + 0: 47496 + 4,-15: + 0: 8 + 4,-14: + 0: 34816 + 5,-16: + 0: 65535 + 5,-15: + 0: 207 + 5,-14: + 0: 62464 + 5,-13: + 0: 65535 + 6,-16: + 0: 30719 + 6,-15: + 0: 19 + 6,-14: + 0: 12800 + 6,-13: + 0: 13107 + 12,4: + 0: 65535 + 12,5: + 0: 65535 + 13,4: + 0: 65535 + 13,5: + 0: 65535 + 13,6: + 0: 65535 + 13,7: + 0: 20479 + 14,4: + 0: 65535 + 14,5: + 0: 13119 + 14,6: + 0: 13107 + 14,7: + 0: 51711 + 15,4: + 0: 63351 + 15,5: + 0: 7 + 15,6: + 0: 14024 + 15,7: + 0: 55539 + 2,18: + 0: 4238 + 3,18: + 0: 255 + 4,18: + 0: 49155 + -15,0: + 0: 61167 + -15,1: + 0: 56831 + -15,2: + 0: 56797 + -15,3: + 0: 34959 + -14,0: + 0: 65535 + -14,1: + 0: 65535 + -14,2: + 0: 65535 + -14,3: + 0: 61695 + -13,0: + 0: 65535 + -13,1: + 0: 65535 + -13,-13: + 0: 65535 + 4,-17: + 0: 55296 + 5,-17: + 0: 65504 + 6,-17: + 0: 29456 + 0,-20: + 0: 52428 + 0,-19: + 0: 52428 + 0,-18: + 0: 52428 + 0,-17: + 0: 52428 + 1,-20: + 0: 30519 + 1,-19: + 0: 14199 + 1,-18: + 0: 30579 + 1,-17: + 0: 13175 + -3,-20: + 0: 65519 + -3,-19: + 0: 61439 + -3,-18: + 0: 65534 + -3,-17: + 0: 61183 + -2,-20: + 0: 4369 + -2,-19: + 0: 4369 + -2,-18: + 0: 4369 + -2,-17: + 0: 4369 + -3,-21: + 0: 65535 + -2,-21: + 0: 4369 + 0,-21: + 0: 52428 + 1,-21: + 0: 30583 + -16,-4: + 0: 140 + -16,-2: + 0: 52428 + -16,-1: + 0: 52428 + -16,-3: + 0: 32768 + -15,-4: + 0: 65535 + -15,-3: + 0: 65535 + -15,-2: + 0: 65535 + -15,-1: + 0: 65535 + -14,-4: + 0: 65535 + -14,-3: + 0: 65535 + -14,-2: + 0: 65535 + -14,-1: + 0: 65535 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 65535 + 16,4: + 0: 29233 + 16,5: + 0: 62242 + 16,6: + 0: 34947 + 16,0: + 0: 30583 + 16,1: + 0: 1143 + 16,3: + 0: 4368 + 16,-2: + 0: 30580 + 16,-1: + 0: 30583 + 16,-5: + 0: 304 + -8,-16: + 0: 4352 + -8,-15: + 0: 65527 + -7,-15: + 0: 65280 + -12,-16: + 0: 65496 + -12,-15: + 0: 65534 + -11,-16: + 0: 47547 + -11,-15: + 0: 65535 + -10,-16: + 0: 65535 + -10,-15: + 0: 65535 + -9,-16: + 0: 65523 + -9,-15: + 0: 65535 + -16,-12: + 0: 61439 + -16,-11: + 0: 35022 + -16,-10: + 0: 34952 + -16,-9: + 0: 34952 + -15,-12: + 0: 65535 + 12,-12: + 0: 65292 + 13,-12: + 0: 28943 + 13,-11: + 0: 65535 + 14,-12: + 0: 15 + 14,-11: + 0: 65521 + 15,-12: + 0: 1 + 15,-11: + 0: 65328 + 10,-16: + 0: 3584 + 10,-14: + 0: 34816 + 10,-13: + 0: 34952 + 11,-16: + 0: 7936 + 11,-15: + 0: 4369 + 11,-14: + 0: 29489 + 11,-13: + 0: 13183 + -8,14: + 0: 15 + -7,14: + 0: 15 + -6,14: + 0: 35071 + -6,15: + 0: 136 + -5,14: + 0: 30719 + -5,15: + 0: 4403 + -4,14: + 0: 3 + 9,13: + 0: 3 + 13,9: + 0: 13028 + 13,10: + 0: 17 + 13,8: + 0: 19652 + 14,9: + 0: 248 + 14,8: + 0: 52428 + 15,8: + 0: 56797 + 15,9: + 0: 248 + 0,18: + 0: 49160 + 0,17: + 0: 34816 + 1,18: + 0: 61987 + 5,18: + 0: 61998 + 6,17: + 0: 18244 + 6,18: + 0: 4164 + 6,16: + 0: 16384 + -16,-16: + 0: 30583 + -16,-15: + 0: 29426 + -16,-14: + 0: 30583 + -16,-13: + 0: 12290 + -15,-16: + 0: 65520 + -15,-15: + 0: 240 + -15,-13: + 0: 65535 + -15,-14: + 0: 26144 + -14,-16: + 0: 24404 + -14,-15: + 0: 52980 + -14,-13: + 0: 65528 + -14,-14: + 0: 8 + -13,-16: + 0: 65520 + -13,-15: + 0: 62224 + -13,-14: + 0: 61183 + 16,7: + 0: 55544 + 17,5: + 0: 61440 + 17,6: + 0: 65520 + 17,7: + 0: 55536 + 18,5: + 0: 61440 + 18,6: + 0: 65520 + 18,7: + 0: 55536 + 19,5: + 0: 61440 + 19,6: + 0: 48056 + 19,7: + 0: 39162 + -12,-19: + 0: 61440 + -12,-18: + 0: 4880 + -12,-17: + 0: 37648 + -11,-19: + 0: 61440 + -11,-17: + 0: 47360 + -10,-19: + 0: 65088 + -10,-18: + 0: 65262 + -10,-17: + 0: 65535 + -9,-18: + 0: 4096 + -9,-17: + 0: 13073 + -18,-12: + 0: 196 + -17,-12: + 0: 3327 + -18,-15: + 0: 17636 + -18,-16: + 0: 17476 + -18,-14: + 0: 17476 + -18,-13: + 0: 17476 + -17,-16: + 0: 30583 + -17,-15: + 0: 29426 + -17,-14: + 0: 30583 + -17,-13: + 0: 32770 + 16,-11: + 0: 4096 + 16,-10: + 0: 19 + 16,-12: + 0: 546 + -16,-17: + 0: 29187 + -16,-19: + 0: 57344 + -16,-18: + 0: 10786 + -15,-19: + 0: 61440 + -15,-18: + 0: 65520 + -15,-17: + 0: 65520 + -14,-19: + 0: 62464 + -14,-18: + 0: 24404 + -14,-17: + 0: 24404 + -13,-19: + 0: 61440 + -13,-18: + 0: 65520 + -13,-17: + 0: 65520 + -18,-17: + 0: 17484 + -17,-17: + 0: 29199 + 12,-16: + 0: 3840 + 12,-15: + 0: 30496 + 12,-14: + 0: 10103 + 12,-13: + 0: 52303 + 13,-16: + 0: 3840 + 13,-15: + 0: 30496 + 13,-14: + 0: 10103 + 13,-13: + 0: 65295 + 14,-16: + 0: 3840 + 14,-15: + 0: 30496 + 14,-14: + 0: 10103 + 14,-13: + 0: 65295 + 15,-16: + 0: 3840 + 15,-15: + 0: 30496 + 15,-14: + 0: 10103 + 15,-13: + 0: 4511 + 16,-16: + 0: 8960 + 16,-13: + 0: 8743 + 16,-15: + 0: 8738 + 16,-14: + 0: 8738 + 16,8: + 0: 56797 + 16,9: + 0: 248 + 17,8: + 0: 56797 + 17,9: + 0: 248 + 18,8: + 0: 56797 + 18,9: + 0: 248 + 19,8: + 0: 39321 + 19,9: + 0: 248 + 20,7: + 0: 16 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 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 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap + - type: BecomesStation + id: Oasis + - uid: 21002 + components: + - type: MetaData + name: Perma Exile + - type: Transform + pos: 200.72997,-26.775223 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAADIAAAAAAAIAAAAAADIQAAAAAANwAAAAABNwAAAAAANwAAAAACNwAAAAADNwAAAAADNwAAAAACNwAAAAADgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAAANwAAAAAASgAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAADAAAAAADDAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAAANwAAAAACSgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAAANwAAAAACNwAAAAACDAAAAAABgQAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAgQAAAAAAgQAAAAAADAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAADAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADgQAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADDAAAAAABDAAAAAADDAAAAAADDAAAAAABDAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAADgQAAAAAAgAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAAADAAAAAACDAAAAAABgQAAAAAAfQAAAAADfQAAAAACfQAAAAADgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAACNwAAAAADNwAAAAABSgAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAABNwAAAAADSgAAAAAASgAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAABNwAAAAACSgAAAAAASgAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIQAAAAACIAAAAAAAIAAAAAADIQAAAAABNwAAAAACNwAAAAADNwAAAAABNwAAAAADNwAAAAABNwAAAAADNwAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAAANwAAAAABNwAAAAACNwAAAAACNwAAAAADNwAAAAAANwAAAAAC + version: 6 + 1,0: + ind: 1,0 + tiles: NwAAAAACNwAAAAACNwAAAAABNwAAAAACNwAAAAACNwAAAAACNwAAAAAASgAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANwAAAAAASgAAAAAANwAAAAACSgAAAAAANwAAAAADNwAAAAABNwAAAAADNwAAAAADBwAAAAAINgAAAAABNgAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJSgAAAAAASgAAAAAANwAAAAADSgAAAAAASgAAAAAANwAAAAADNwAAAAADNwAAAAAANgAAAAABNgAAAAADNgAAAAADNgAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAACSgAAAAAANwAAAAAANwAAAAAASgAAAAAASgAAAAAANwAAAAADNwAAAAAABwAAAAADNgAAAAACNgAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAADfQAAAAADfQAAAAAAfQAAAAABDAAAAAABSgAAAAAASgAAAAAASgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAADAAAAAADfQAAAAADfQAAAAADfQAAAAABDAAAAAAASgAAAAAASgAAAAAASgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAADAAAAAAAfQAAAAAAfQAAAAABfQAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACDAAAAAABBwAAAAAABwAAAAALBwAAAAAABwAAAAAADAAAAAAAfQAAAAADfQAAAAAAfQAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAAADAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAADSgAAAAAASgAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAABDAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: gAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAAASgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAADAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAAADAAAAAACDAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAACDAAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAASgAAAAAASgAAAAAADAAAAAADDAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAADAAAAAADMgAAAAAAfQAAAAABfQAAAAAAfQAAAAAAMgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAADAAAAAAAMgAAAAAAfQAAAAAAfQAAAAAAfQAAAAACMgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAADAAAAAACMgAAAAAAfQAAAAABfQAAAAADfQAAAAAAMgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAfQAAAAACMgAAAAAAMgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAASgAAAAAASgAAAAAANwAAAAAANwAAAAAANwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACDAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAANwAAAAABNwAAAAADNwAAAAADNwAAAAACNwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAACDAAAAAAADAAAAAADBwAAAAAABwAAAAAGBwAAAAAABwAAAAAANwAAAAADNwAAAAAANwAAAAAANwAAAAACNwAAAAACNwAAAAADSgAAAAAASgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAABwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAhQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAhQAAAAACBwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAACgQAAAAAAgQAAAAAAhQAAAAAAIAAAAAADgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAABhQAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABBwAAAAAABwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAALBwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAMBwAAAAAFBwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAACBwAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: BwAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAJBwAAAAAKBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAFBwAAAAAFBwAAAAAEBwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAMBwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAGBwAAAAAIBwAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAJBwAAAAALBwAAAAAGBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAJBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAIBwAAAAAABwAAAAADBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAGBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAKBwAAAAAFBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: BwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAHBwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAIBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAKBwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAK + version: 6 + 3,1: + ind: 3,1 + tiles: BwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAIBwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAGBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAFBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: BwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAHBwAAAAAJBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAChQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAIAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAABhQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAhQAAAAAAhQAAAAAABwAAAAAEgQAAAAAAgQAAAAAAhAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAACgQAAAAAAgQAAAAAAhQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAhQAAAAABgQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAHgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAChQAAAAABhQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAABhQAAAAABgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgQAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAEBwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAJBwAAAAAABwAAAAAGBwAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABBwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABBwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAB + version: 6 + 3,-2: + ind: 3,-2 + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhQAAAAACgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAGBwAAAAAIBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAHBwAAAAACBwAAAAALBwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAADBwAAAAAKBwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: BwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAIBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAJBwAAAAAGBwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAJBwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAFAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAHBwAAAAAABwAAAAAABwAAAAACBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAGBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAHBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAABwAAAAALBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAJBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAA + version: 6 + 5,-2: + ind: 5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-1: + ind: 5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAIBwAAAAADBwAAAAAIBwAAAAAGBwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAgAAAAAAAgQAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgAAAAAAAgQAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAEBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAIBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAABBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAA + version: 6 + 6,1: + ind: 6,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-3: + ind: 4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,-3: + ind: 5,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-1: + ind: 6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,3: + ind: 5,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,4: + ind: 4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: AAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 53: 23.673416,8.131601 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 57: 16.567902,-10.513451 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 54: 15.956543,6.9327354 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 55: 16.050293,6.1723175 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 56: 11.336716,9.096708 + - node: + color: '#FFFFFFFF' + id: BushAThree + decals: + 27: 13.6098175,-11.353516 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 68: 24.991669,-1.6784534 + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 22: 9.980225,5.1106415 + 59: 16.814621,-5.779171 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 40: 25.327164,8.185654 + 45: 26.061539,-9.112068 + 60: 17.14795,-6.737503 + - node: + color: '#FFFFFFFF' + id: BushDTwo + decals: + 47: 24.347397,8.038254 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 20: 9.917725,6.0325165 + 38: 26.061539,8.029404 + 42: 27.077164,-2.0276108 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 4: 15.447281,8.447321 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 21: 9.948975,5.4075165 + 39: 26.233414,7.1856537 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 5: 15.634781,7.650446 + 58: 17.14795,-4.945837 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 6: 14.619156,8.556696 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 7: 19.998627,4.431698 + 62: 17.0542,-7.727089 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 41: 25.530289,7.7950287 + 52: 22.191147,8.335129 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 8: 20.014252,4.837948 + 17: 9.71759,-8.292427 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 29: 6.345627,2.0966072 + 43: 26.545914,-1.8401108 + 44: 26.780289,-2.4807358 + 61: 17.345871,-5.706253 + 67: 26.866669,-4.9909534 + - node: + color: '#FFFFFFFF' + id: Bushg1 + decals: + 28: 8.570679,-7.0878906 + 63: 17.033371,-7.404171 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 0: 5.8017883,1.9809036 + 3: 10.286163,8.025446 + 13: 9.170715,-7.229927 + 23: 12.30835,-11.416016 + 30: 23.733414,5.727852 + 34: 23.202164,-0.97527313 + 50: 22.800522,7.944504 + 66: 27.210419,-4.8347034 + 69: 25.950012,-1.8138714 + 70: 16.229706,-11.13625 + 71: 15.844284,-11.2404175 + 72: 11.097305,-2.8601494 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 1: 10.504913,8.775446 + 14: 9.608215,-7.354927 + 24: 12.730225,-11.275391 + 31: 23.420914,5.493477 + 35: 23.358414,-1.3502731 + 51: 22.300522,7.960129 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 2: 10.442413,8.478571 + 15: 9.639465,-7.729927 + 25: 12.261475,-11.744141 + 26: 12.261475,-12.150391 + 32: 23.389664,5.087227 + 36: 23.530289,-1.5690231 + 65: 27.054169,-4.4701214 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 16: 9.576965,-8.104927 + 33: 23.264664,-0.74089813 + 49: 22.566147,8.210129 + - node: + color: '#FFFFFFFF' + id: Bushj1 + decals: + 11: 0.7978058,7.5165386 + 19: 19.076965,8.161362 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 10: 1.5478058,8.266541 + 37: 26.967789,-2.8672504 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 9: 0.8915558,8.204041 + 48: 27.034897,6.100754 + 64: 27.168762,-3.6263714 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 12: 16.116241,-7.6390114 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 18: 19.09259,-9.995552 + 46: 25.186539,-9.033943 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 2303 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 61439 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 8 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 53247 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 0,-4: + 0: 51336 + 1,-4: + 0: 65339 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65295 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 12303 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 4,-3: + 0: 65531 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 4369 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-1: + 0: 65535 + -2,-4: + 0: 136 + -1,-4: + 0: 59185 + -1,-1: + 0: 61166 + -1,-3: + 0: 140 + -1,-2: + 0: 32768 + -1,0: + 0: 36590 + 0,-8: + 0: 28687 + 0,-7: + 0: 28799 + 0,-6: + 0: 28799 + 0,-5: + 0: 32895 + 1,-8: + 0: 53519 + 1,-7: + 0: 37343 + 1,-6: + 0: 63897 + 1,-5: + 0: 48063 + 2,-8: + 0: 28687 + 2,-7: + 0: 61567 + 2,-6: + 0: 61695 + 2,-5: + 0: 65535 + 3,-8: + 0: 52851 + 3,-7: + 0: 61448 + 3,-6: + 0: 61695 + 3,-5: + 0: 65535 + 4,-8: + 0: 40166 + 1: 8 + 4,-7: + 0: 47311 + 4,-6: + 0: 64187 + 4,-5: + 0: 13247 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 13107 + -2,-7: + 0: 52360 + -2,-6: + 0: 52428 + -2,-8: + 0: 34944 + -2,-5: + 0: 34952 + -1,-8: + 0: 49471 + -1,-7: + 0: 49358 + -1,-6: + 0: 49359 + -1,-5: + 0: 206 + 0,-9: + 0: 49152 + 1,-9: + 0: 61440 + 2,-9: + 0: 4096 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 9,2: + 0: 65535 + 10,0: + 0: 65535 + 11,0: + 0: 65535 + 11,1: + 0: 65535 + 11,2: + 0: 65535 + 11,3: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 49151 + 2: 16384 + 0,5: + 0: 52224 + 1,5: + 0: 65392 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,5: + 0: 12544 + 2,6: + 0: 16383 + 2,7: + 0: 257 + 3,6: + 0: 8191 + 3,5: + 0: 60544 + 3,4: + 0: 12 + 4,4: + 0: 52479 + 4,5: + 0: 65484 + 4,6: + 0: 255 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 2559 + 5,7: + 0: 32776 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 32767 + 6,7: + 0: 30583 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 61439 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 9,5: + 0: 65535 + 9,4: + 0: 65535 + 10,4: + 0: 65535 + 10,5: + 0: 65535 + 10,6: + 0: 65535 + 11,4: + 0: 65535 + 11,5: + 0: 65535 + 11,6: + 0: 65535 + 0,8: + 0: 53247 + 1,8: + 0: 887 + -1,7: + 0: 52364 + -1,6: + 0: 65532 + -1,8: + 0: 140 + 4,8: + 0: 52352 + 4,9: + 0: 2188 + 5,8: + 0: 65529 + 5,9: + 0: 65535 + 5,10: + 0: 238 + 6,8: + 0: 29495 + 6,9: + 0: 65535 + 6,10: + 0: 65471 + 3: 64 + 6,11: + 0: 4 + 7,9: + 0: 4352 + 7,10: + 0: 4403 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-2: + 0: 65535 + 9,-1: + 0: 65535 + 10,-2: + 0: 65535 + 10,-1: + 0: 65535 + 11,-2: + 0: 65535 + 11,-1: + 0: 65535 + 12,0: + 0: 65535 + 12,1: + 0: 65535 + 12,2: + 0: 65535 + 12,3: + 0: 65535 + 13,0: + 0: 65535 + 13,2: + 0: 65535 + 13,3: + 0: 65535 + 13,1: + 0: 65535 + 14,0: + 0: 65535 + 14,1: + 0: 65535 + 14,2: + 0: 65535 + 14,3: + 0: 65535 + 15,0: + 0: 65535 + 15,1: + 0: 65535 + 15,2: + 0: 65535 + 15,3: + 0: 65535 + 12,4: + 0: 65535 + 12,5: + 0: 65535 + 14,4: + 0: 65535 + 15,4: + 0: 65535 + 13,-1: + 0: 65535 + 14,-1: + 0: 65535 + 4,-4: + 0: 3 + 6,-4: + 0: 65258 + 3: 4 + 6,-3: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + -3,3: + 0: 51200 + -2,3: + 0: 65280 + -1,3: + 0: 4096 + 5,-8: + 0: 65535 + 6,-8: + 0: 65535 + 6,-7: + 0: 65535 + 6,-6: + 0: 40959 + 6,-5: + 0: 61133 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + 8,0: + 0: 65535 + 8,3: + 0: 65535 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,3: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 65535 + 10,3: + 0: 65535 + 8,6: + 0: 65535 + 8,7: + 0: 15 + 9,6: + 0: 65535 + 9,7: + 0: 35055 + 10,7: + 0: 65535 + 11,7: + 0: 65535 + 0,11: + 0: 8977 + -3,4: + 0: 36044 + -2,4: + 0: 65535 + -2,5: + 0: 30583 + -2,6: + 0: 65527 + -2,7: + 0: 10103 + -1,4: + 0: 273 + -2,8: + 0: 50246 + -2,9: + 0: 136 + -1,9: + 0: 12560 + -1,10: + 0: 50274 + -1,11: + 0: 8 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 10,-4: + 0: 65535 + 10,-3: + 0: 65535 + 11,-4: + 0: 65535 + 11,-3: + 0: 65535 + 12,6: + 0: 65535 + 12,7: + 0: 65535 + 13,4: + 0: 65535 + 13,5: + 0: 65535 + 13,6: + 0: 65535 + 13,7: + 0: 65535 + 14,5: + 0: 65535 + 14,6: + 0: 65535 + 14,7: + 0: 65535 + 15,5: + 0: 65535 + 15,6: + 0: 65535 + 15,7: + 0: 65535 + 12,-4: + 0: 65535 + 12,-3: + 0: 65535 + 12,-2: + 0: 65535 + 12,-1: + 0: 65535 + 13,-4: + 0: 30483 + 13,-3: + 0: 65535 + 13,-2: + 0: 65535 + 14,-3: + 0: 13073 + 14,-2: + 0: 65535 + 14,-4: + 0: 8 + 15,-2: + 0: 45872 + 15,-1: + 0: 65528 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 9,-8: + 0: 62225 + 9,-7: + 0: 65535 + 9,-6: + 0: 65535 + 9,-5: + 0: 65535 + 10,-7: + 0: 65521 + 10,-6: + 0: 65535 + 10,-5: + 0: 65535 + 11,-7: + 0: 65516 + 11,-6: + 0: 65535 + 11,-5: + 0: 65535 + 11,-8: + 0: 52428 + 4,-12: + 0: 65534 + 4,-11: + 0: 3839 + 4,-9: + 0: 61412 + 5,-12: + 0: 65329 + 5,-11: + 0: 319 + 5,-9: + 0: 64896 + 6,-12: + 0: 63232 + 6,-11: + 0: 7 + 6,-9: + 0: 65535 + 6,-10: + 0: 51328 + 7,-12: + 0: 61440 + 7,-11: + 0: 29696 + 7,-10: + 0: 65527 + 7,-9: + 0: 65535 + 8,-12: + 0: 61440 + 8,-9: + 0: 65395 + 9,-12: + 0: 61440 + 10,-12: + 0: 63488 + 10,-11: + 0: 8 + 11,-12: + 0: 65280 + 11,-11: + 0: 52431 + 11,-10: + 0: 52428 + 11,-9: + 0: 52428 + 12,-8: + 0: 4369 + 12,-7: + 0: 62257 + 12,-6: + 0: 65535 + 12,-5: + 0: 65535 + 13,-7: + 0: 4096 + 13,-6: + 0: 65527 + 13,-5: + 0: 32767 + 14,-6: + 0: 28672 + 14,-5: + 0: 61407 + 3: 32 + 15,-5: + 0: 4368 + 9,8: + 0: 2184 + 10,8: + 0: 65535 + 10,9: + 0: 61439 + 10,10: + 0: 52428 + 10,11: + 0: 52428 + 11,8: + 0: 32767 + 11,9: + 0: 14199 + 11,10: + 0: 4369 + 11,11: + 0: 4369 + 12,8: + 0: 61183 + 12,9: + 0: 3310 + 13,8: + 0: 65535 + 13,9: + 0: 65535 + 13,10: + 0: 61439 + 13,11: + 0: 206 + 14,8: + 0: 65535 + 14,9: + 0: 13119 + 14,10: + 0: 12561 + 14,11: + 0: 887 + 15,8: + 0: 65535 + 15,9: + 0: 65535 + 15,10: + 0: 204 + 16,4: + 0: 65535 + 16,5: + 0: 65535 + 16,6: + 0: 65535 + 16,7: + 0: 65535 + 17,4: + 0: 65535 + 17,5: + 0: 65535 + 17,6: + 0: 65535 + 17,7: + 0: 65535 + 18,4: + 0: 55 + 18,5: + 0: 30481 + 18,6: + 0: 65535 + 18,7: + 0: 32767 + 19,6: + 0: 65329 + 19,7: + 0: 319 + 16,0: + 0: 65535 + 16,1: + 0: 65535 + 16,2: + 0: 65535 + 16,3: + 0: 65535 + 17,0: + 0: 65535 + 17,1: + 0: 65535 + 17,2: + 0: 65535 + 17,3: + 0: 65535 + 18,0: + 0: 65535 + 18,1: + 0: 14335 + 18,2: + 0: 63795 + 18,3: + 0: 65535 + 19,0: + 0: 14199 + 19,1: + 0: 49155 + 19,2: + 0: 65516 + 19,3: + 0: 4479 + 16,-2: + 0: 65516 + 16,-1: + 0: 65535 + 16,-3: + 0: 51340 + 16,-4: + 0: 32768 + 17,-4: + 0: 65164 + 17,-3: + 0: 49151 + 17,-2: + 0: 63291 + 17,-1: + 0: 65535 + 18,-4: + 0: 65535 + 18,-3: + 0: 4407 + 18,-2: + 0: 65481 + 18,-1: + 0: 65535 + 19,-4: + 0: 12550 + 19,-3: + 0: 59521 + 19,-2: + 0: 65535 + 19,-1: + 0: 65535 + 17,-6: + 0: 140 + 17,-7: + 0: 32768 + 17,-5: + 0: 32768 + 18,-7: + 0: 45056 + 18,-6: + 0: 61439 + 18,-5: + 0: 65518 + 19,-6: + 0: 65393 + 19,-5: + 3: 1 + 0: 65534 + 20,-6: + 0: 4096 + 20,-5: + 0: 17 + 21,-8: + 0: 35939 + 22,-8: + 0: 4096 + 22,-7: + 0: 25137 + 22,-6: + 0: 35012 + 23,-6: + 0: 4096 + 23,-5: + 0: 8753 + 20,-3: + 0: 65532 + 20,-2: + 0: 383 + 21,-3: + 0: 65535 + 21,-2: + 0: 34952 + 21,-1: + 0: 34816 + 22,-3: + 0: 65520 + 22,-2: + 0: 65471 + 3: 64 + 22,-1: + 0: 65535 + 23,-3: + 0: 55432 + 23,-2: + 0: 65533 + 23,-1: + 0: 56831 + 23,-4: + 0: 50246 + 20,1: + 0: 65228 + 20,2: + 0: 16383 + 20,3: + 0: 1 + 21,0: + 0: 65256 + 21,1: + 0: 65535 + 21,2: + 0: 415 + 22,0: + 0: 14199 + 22,1: + 0: 30515 + 22,2: + 0: 61183 + 23,2: + 0: 39321 + 23,0: + 0: 34952 + 23,1: + 0: 34952 + 23,3: + 0: 34952 + 16,8: + 0: 65535 + 16,9: + 0: 65535 + 16,10: + 0: 61439 + 16,11: + 0: 35054 + 17,8: + 0: 65535 + 17,9: + 0: 65535 + 17,10: + 0: 30583 + 17,11: + 0: 13111 + 18,8: + 0: 13107 + 18,9: + 0: 4369 + 16,12: + 0: 65160 + 16,13: + 0: 65535 + 16,14: + 0: 142 + 17,12: + 0: 65535 + 17,13: + 0: 65535 + 17,14: + 0: 23 + 18,12: + 0: 13104 + 18,13: + 0: 275 + 18,15: + 0: 32768 + 19,15: + 0: 16000 + 15,12: + 0: 32768 + 15,13: + 0: 2184 + 10,12: + 0: 52428 + 10,13: + 0: 52428 + 10,14: + 0: 52428 + 10,15: + 0: 52428 + 11,12: + 0: 4369 + 11,13: + 0: 4369 + 11,14: + 0: 4369 + 11,15: + 0: 4369 + 20,6: + 0: 65280 + 20,7: + 0: 15 + 21,6: + 0: 65280 + 21,7: + 0: 15 + 22,6: + 0: 65280 + 22,7: + 0: 15 + 23,6: + 0: 65484 + 23,7: + 0: 52431 + 23,5: + 0: 51336 + 23,4: + 0: 34952 + 24,5: + 0: 4096 + 24,6: + 0: 4369 + 24,7: + 0: 4369 + 12,-12: + 0: 65280 + 12,-11: + 0: 4383 + 12,-10: + 0: 4369 + 12,-9: + 0: 4369 + 13,-12: + 0: 61440 + 14,-12: + 0: 4096 + 14,-11: + 0: 15 + 15,-11: + 0: 227 + 16,-11: + 0: 3632 + 17,-11: + 0: 61696 + 18,-11: + 0: 4096 + 18,-10: + 0: 143 + 19,-10: + 0: 50736 + 20,-10: + 0: 4096 + 20,-9: + 0: 35939 + 21,-9: + 0: 4096 + 24,-3: + 0: 4096 + 24,-2: + 0: 4369 + 24,-1: + 0: 4369 + 22,11: + 0: 34944 + 23,10: + 0: 4898 + 23,11: + 0: 17 + 23,9: + 0: 9796 + 23,8: + 0: 19592 + 20,15: + 0: 62 + 20,14: + 0: 32768 + 21,14: + 0: 4902 + 21,13: + 0: 51200 + 22,13: + 0: 275 + 22,12: + 0: 9804 + 16,16: + 0: 992 + 17,16: + 0: 248 + 18,16: + 0: 15 + 12,16: + 0: 3840 + 13,16: + 0: 3840 + 14,16: + 0: 3840 + 15,16: + 0: 3840 + 6,16: + 0: 12 + 7,16: + 0: 199 + 8,16: + 0: 3184 + 9,16: + 0: 36736 + 10,16: + 0: 65532 + 11,16: + 0: 65521 + 4,14: + 0: 4096 + 4,15: + 0: 199 + 5,15: + 0: 36624 + 6,15: + 0: 28672 + 0,12: + 0: 35014 + 1,12: + 0: 4096 + 1,13: + 0: 35939 + 2,13: + 0: 12288 + 2,14: + 0: 198 + 3,14: + 0: 50960 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap +- proto: AcousticGuitarInstrument + entities: + - uid: 1634 + components: + - type: Transform + pos: 40.469715,-29.436775 + parent: 2 + - uid: 22350 + components: + - type: Transform + pos: 19.476593,-4.469906 + parent: 21002 +- proto: ActionToggleInternals + entities: + - uid: 23831 + components: + - type: Transform + parent: 23830 + - type: InstantAction + container: 23830 + - uid: 23833 + components: + - type: Transform + parent: 23832 + - type: InstantAction + container: 23832 + - uid: 23835 + components: + - type: Transform + parent: 23834 + - type: InstantAction + container: 23834 + - uid: 23837 + components: + - type: Transform + parent: 23836 + - type: InstantAction + container: 23836 + - uid: 23839 + components: + - type: Transform + parent: 23838 + - type: InstantAction + container: 23838 + - uid: 28282 + components: + - type: Transform + parent: 28281 + - type: InstantAction + container: 28281 + - uid: 28284 + components: + - type: Transform + parent: 28283 + - type: InstantAction + container: 28283 +- proto: ActionToggleLight + entities: + - uid: 2263 + components: + - type: Transform + parent: 2262 + - type: InstantAction + container: 2262 + - uid: 6624 + components: + - type: Transform + parent: 6623 + - type: InstantAction + container: 6623 + - uid: 23803 + components: + - type: Transform + parent: 23802 + - type: InstantAction + container: 23802 +- proto: AirAlarm + entities: + - uid: 5583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 4036 + - 4567 + - 9795 + - 9858 + - 15444 + - 15445 + - 1922 + - 412 + - uid: 8130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,49.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 18549 + - 18550 + - 18528 + - 18529 + - 18547 + - 18546 + - 16401 + - 16402 + - 18543 + - 16410 + - 16416 + - 18544 + - 16334 + - 16336 + - 18545 + - uid: 10169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 3346 + - 3347 + - 3348 + - 16523 + - 16524 + - 16525 + - 5218 + - 16531 + - 16532 + - uid: 15512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 16526 + - 16527 + - 16528 + - 18369 + - 18368 + - 18357 + - 18358 + - 15615 + - 15618 + - uid: 18240 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - type: DeviceList + devices: + - 15934 + - 16030 + - 16033 + - 16032 + - 16533 + - 14793 + - 14782 + - 18234 + - 18235 + - 18233 + - 18232 + - 18253 + - uid: 18242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-73.5 + parent: 2 + - type: DeviceList + devices: + - 18235 + - 18234 + - 16114 + - 16116 + - 16110 + - 16111 + - 18245 + - uid: 18244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-73.5 + parent: 2 + - type: DeviceList + devices: + - 18232 + - 18233 + - 16115 + - 16113 + - 16112 + - 16107 + - 18254 + - uid: 18247 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 16533 + - 14793 + - 14782 + - 16537 + - 16538 + - 16539 + - 18249 + - 18248 + - 18250 + - 18252 + - 18251 + - 16547 + - 16546 + - 18256 + - uid: 18258 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 16539 + - 16538 + - 16537 + - 18261 + - 18260 + - 16536 + - 16535 + - 16534 + - 12298 + - 10876 + - 18257 + - uid: 18263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 16536 + - 16535 + - 16534 + - 3343 + - 3344 + - 3345 + - 18262 + - 16543 + - 16542 + - uid: 18270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 18265 + - 16491 + - 10592 + - 156 + - 157 + - 158 + - 87 + - 86 + - 85 + - 139 + - 140 + - 141 + - 155 + - 154 + - 153 + - 152 + - 151 + - 142 + - 143 + - 144 + - 145 + - 146 + - 147 + - 148 + - 150 + - 149 + - 3343 + - 3344 + - 3345 + - uid: 18271 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 3354 + - 3353 + - 3352 + - 168 + - 167 + - 166 + - 165 + - 164 + - 163 + - 162 + - 161 + - 160 + - 159 + - 90 + - 89 + - 88 + - 178 + - 177 + - 176 + - 175 + - 174 + - 173 + - 172 + - 171 + - 170 + - 169 + - 16495 + - 16496 + - 18266 + - uid: 18272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 179 + - 20 + - 80 + - 81 + - 107 + - 108 + - 109 + - 180 + - 181 + - 110 + - 111 + - 112 + - 113 + - 114 + - 115 + - 116 + - 3349 + - 3350 + - 3351 + - 188 + - 187 + - 186 + - 185 + - 184 + - 183 + - 182 + - 16486 + - 16487 + - 18267 + - uid: 18273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 82 + - 83 + - 84 + - 138 + - 137 + - 136 + - 135 + - 134 + - 133 + - 132 + - 131 + - 130 + - 129 + - 3346 + - 3347 + - 3348 + - 126 + - 125 + - 124 + - 123 + - 122 + - 121 + - 120 + - 119 + - 118 + - 117 + - 16489 + - 16490 + - 18268 + - uid: 18285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 18296 + - 18297 + - 18298 + - 18299 + - 18300 + - 18301 + - 188 + - 187 + - 186 + - 185 + - 184 + - 183 + - 182 + - 181 + - 180 + - 179 + - 13657 + - 18280 + - 13656 + - uid: 18286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 129 + - 130 + - 131 + - 132 + - 133 + - 134 + - 135 + - 136 + - 137 + - 138 + - 139 + - 140 + - 141 + - 142 + - 143 + - 144 + - 145 + - 146 + - 147 + - 148 + - 13901 + - 13903 + - 18279 + - 13934 + - 13933 + - uid: 18287 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 149 + - 150 + - 151 + - 152 + - 153 + - 154 + - 155 + - 156 + - 157 + - 158 + - 159 + - 160 + - 161 + - 162 + - 163 + - 164 + - 165 + - 166 + - 167 + - 168 + - 13763 + - 13764 + - 13767 + - 13768 + - 18278 + - uid: 18288 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 90 + - 89 + - 88 + - 20 + - 80 + - 81 + - 82 + - 83 + - 84 + - 85 + - 86 + - 87 + - 18269 + - 16483 + - 16482 + - 16484 + - 16485 + - uid: 18303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 3352 + - 3353 + - 3354 + - 16499 + - 16500 + - 16501 + - 18294 + - 16498 + - 16497 + - uid: 18305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 16499 + - 16500 + - 16501 + - 18327 + - 18326 + - 16505 + - 16506 + - 16507 + - 18323 + - 18322 + - 18307 + - 18308 + - 18293 + - 16503 + - 16504 + - uid: 18317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 18327 + - 18326 + - 15148 + - 18304 + - 15150 + - uid: 18328 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 18308 + - 18307 + - 18322 + - 18323 + - 18324 + - 18325 + - 18309 + - 18310 + - 18321 + - 15129 + - 15128 + - 18320 + - uid: 18332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 16507 + - 16506 + - 16505 + - 16510 + - 16509 + - 16508 + - 24089 + - 24090 + - 15357 + - 24087 + - 18325 + - 18324 + - 16513 + - 18292 + - 16511 + - 15356 + - 79 + - 75 + - 24132 + - 17899 + - uid: 18333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 16508 + - 16509 + - 16510 + - 16516 + - 16515 + - 16514 + - 18295 + - 16520 + - 16519 + - uid: 18336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 16516 + - 16515 + - 16514 + - 17904 + - 17905 + - 18291 + - 16521 + - 16522 + - uid: 18338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 17904 + - 17905 + - 15319 + - 18290 + - 15318 + - uid: 18366 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 16523 + - 16524 + - 16525 + - 18359 + - 18360 + - 18362 + - 18361 + - 18363 + - 16526 + - 16527 + - 16528 + - 18365 + - 18364 + - 16530 + - 16529 + - 18356 + - uid: 18440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 18369 + - 18368 + - 18370 + - 18371 + - 18407 + - 18439 + - 18408 + - uid: 18443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 18371 + - 18370 + - 18441 + - 18442 + - 18438 + - 18409 + - 18410 + - uid: 18463 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 18362 + - 18361 + - 18465 + - 18466 + - 18467 + - 18468 + - 18458 + - 18457 + - 14690 + - 14689 + - uid: 18469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 18471 + - 18472 + - 18473 + - 18474 + - 18475 + - 18476 + - 18468 + - 18467 + - 18459 + - 14721 + - 18461 + - 14720 + - uid: 18478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 18471 + - 18472 + - 14741 + - 14740 + - 18462 + - uid: 18480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 18473 + - 18474 + - 18479 + - 14749 + - 14748 + - uid: 18482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 18476 + - 18475 + - 14768 + - 14767 + - 18481 + - uid: 18499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 3351 + - 3350 + - 3349 + - 18494 + - 18495 + - 18496 + - 18497 + - 16548 + - 16549 + - 16550 + - 18349 + - 16556 + - 16555 + - uid: 18501 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 16550 + - 16549 + - 16548 + - 18493 + - 18492 + - 18491 + - 18490 + - 16551 + - 16552 + - 18502 + - 18504 + - 18485 + - 13281 + - 13351 + - uid: 18530 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 18491 + - 18490 + - 18492 + - 18493 + - 18522 + - 18523 + - 16238 + - 18519 + - 16237 + - uid: 18536 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 18534 + - 18535 + - 18524 + - 18525 + - 18527 + - 18526 + - 16267 + - 18521 + - 16285 + - uid: 18541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 18529 + - 18528 + - 18526 + - 18527 + - 18540 + - 16297 + - 16298 + - uid: 18553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 18546 + - 16433 + - 18554 + - 16432 + - uid: 18564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 18559 + - 18560 + - 18488 + - 18489 + - 18561 + - 18562 + - 13585 + - 13595 + - 18563 + - uid: 18567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 18560 + - 18559 + - 18571 + - 18572 + - 18568 + - 18569 + - 18574 + - 13583 + - 13584 + - 18573 + - uid: 18570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 18310 + - 18309 + - 18578 + - 18568 + - 18569 + - 18321 + - 13557 + - 18576 + - 13558 + - 18577 + - 13560 + - 13559 + - 18574 + - uid: 18582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 24155 + - 15028 + - 18580 + - 15029 + - uid: 18584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 16671 + - 15028 + - 18580 + - 15029 + - 12062 + - 17902 + - 17903 + - 15108 + - 18579 + - 15109 + - uid: 18587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 17902 + - 17903 + - 15106 + - 18585 + - 15105 + - uid: 18603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 18260 + - 18261 + - 18592 + - 18593 + - 18594 + - 15653 + - 15651 + - 15652 + - 15654 + - 18605 + - 18608 + - uid: 18606 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 18600 + - 18599 + - 18598 + - 18601 + - 18602 + - 18597 + - 2200 + - 18595 + - 18592 + - 18593 + - 18609 + - 18608 + - 18610 + - 15717 + - 15716 + - uid: 18611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 18600 + - 18599 + - 18598 + - 18616 + - 18617 + - 18619 + - 18618 + - 18614 + - 15788 + - 15776 + - 15790 + - 18613 + - 15789 + - 15787 + - 15775 + - 18612 + - 15742 + - 15743 + - uid: 18623 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 18621 + - 18620 + - 18624 + - 15266 + - 15267 + - 18622 + - uid: 18644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 4567 + - 4036 + - 5582 + - 18628 + - 18627 + - 18365 + - 18364 + - 14254 + - 14374 + - 18643 + - 14371 + - 14322 + - 18642 + - 14321 + - 17460 + - 20975 + - 23518 + - 9795 + - 9858 + - uid: 18645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 18634 + - 13132 + - 18647 + - 14373 + - uid: 18650 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 18640 + - 18639 + - 18636 + - 18635 + - 14384 + - 18649 + - 14383 + - uid: 18652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 18638 + - 18637 + - 18636 + - 18635 + - 18634 + - 14454 + - 18648 + - 14455 + - uid: 18658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 18638 + - 18654 + - 18655 + - 18656 + - 14528 + - 14527 + - uid: 18663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 18660 + - 18661 + - 18251 + - 18252 + - 18248 + - 18249 + - 18659 + - 18664 + - 14868 + - 14869 + - 18666 + - uid: 18667 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 18659 + - 14923 + - 18665 + - 14926 + - uid: 18676 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 18669 + - uid: 18677 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 18670 + - uid: 18678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 18660 + - 18673 + - 14922 + - 18671 + - 14925 + - uid: 18687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 2200 + - 18595 + - 18594 + - 15813 + - 15814 + - 18686 + - uid: 18690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 15420 + - 15419 + - 18693 + - uid: 18691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 18597 + - 15710 + - 15711 + - 18692 + - uid: 18697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 18698 + - 15898 + - 18695 + - 15902 + - uid: 20717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 18523 + - 18522 + - 18524 + - 18525 + - 18520 + - uid: 21369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-20.5 + parent: 21002 + - type: DeviceList + devices: + - 25356 + - 25354 + - 25353 + - 21373 + - uid: 21371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-28.5 + parent: 21002 + - type: DeviceList + devices: + - 25357 + - 25358 + - 25352 + - 21451 + - 25298 + - uid: 21415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,26.5 + parent: 21002 + - type: DeviceList + devices: + - 21413 + - 21414 + - uid: 21456 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 21002 + - type: DeviceList + devices: + - 21457 + - 25357 + - 25358 + - 25352 + - 25293 + - 21453 + - uid: 21504 + components: + - type: Transform + pos: 29.5,4.5 + parent: 21002 + - type: DeviceList + devices: + - 26792 + - 26787 + - 26798 + - 28045 + - 28046 + - 28053 + - uid: 22155 + components: + - type: Transform + pos: -2.5,27.5 + parent: 21002 + - type: DeviceList + devices: + - 21709 + - 21721 + - uid: 23056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 21002 + - type: DeviceList + devices: + - 23052 + - 23053 + - 23054 + - 23055 + - 21184 + - 21181 + - 23059 + - 21182 + - 23058 + - 21183 + - uid: 23060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 21002 + - type: DeviceList + devices: + - 22490 + - 22485 + - 23061 + - 23052 + - 23053 + - uid: 23235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 79 + - 75 + - 24132 + - 17899 + - 16671 + - 12062 + - 18330 + - 11291 + - uid: 23531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 21002 + - type: DeviceList + devices: + - 21389 + - 22882 + - uid: 23679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,48.5 + parent: 2 + - type: DeviceList + devices: + - 16775 + - 23678 + - 13600 + - 13339 + - 13599 + - 13598 + - 18486 + - uid: 23682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 16552 + - 16551 + - 23685 + - 23686 + - 23707 + - 23706 + - 23678 + - 16775 + - uid: 23683 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 13630 + - 13629 + - 23686 + - 23685 + - 23687 + - 18488 + - 18489 + - 18487 + - uid: 23903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 23904 + - 23901 + - 23902 + - uid: 23907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 14530 + - 14532 + - 23906 + - 23905 + - 14615 + - 14614 + - 23901 + - uid: 23909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 23908 + - 23910 + - 23911 + - uid: 23915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 23914 + - 23912 + - 23913 + - uid: 23917 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 23921 + - 23916 + - uid: 23918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 23920 + - 23916 + - 23919 + - uid: 23926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-41.5 + parent: 2 + - uid: 23927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 23924 + - 15424 + - 15423 + - 23923 + - 23925 + - uid: 24091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 24090 + - 24089 + - 24087 + - 15357 + - 15356 + - uid: 25567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,7.5 + parent: 21002 + - type: DeviceList + devices: + - 26587 + - 24295 + - uid: 25568 + components: + - type: Transform + pos: 44.5,10.5 + parent: 21002 + - type: DeviceList + devices: + - 21397 + - 22267 + - uid: 26203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,40.5 + parent: 21002 + - type: DeviceList + devices: + - 22384 + - 26221 + - uid: 26568 + components: + - type: Transform + pos: 54.5,10.5 + parent: 21002 + - type: DeviceList + devices: + - 21390 + - 24297 + - uid: 28262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-27.5 + parent: 21002 + - type: DeviceList + devices: + - 25359 + - 28277 +- proto: AirCanister + entities: + - uid: 4223 + components: + - type: Transform + pos: 51.5,-33.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: -21.5,35.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 18930 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 18935 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 18938 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 19028 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 19038 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 19159 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 21340 + components: + - type: Transform + anchored: True + pos: 33.5,-31.5 + parent: 21002 + - type: Physics + bodyType: Static + - uid: 21370 + components: + - type: Transform + anchored: True + pos: 46.5,-17.5 + parent: 21002 + - type: Physics + bodyType: Static + - uid: 22146 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 21002 + - uid: 22154 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 21002 + - uid: 22884 + components: + - type: Transform + anchored: True + pos: 63.5,6.5 + parent: 21002 + - type: Physics + bodyType: Static + - type: Lock + locked: True + - uid: 22975 + components: + - type: Transform + anchored: True + pos: 36.5,-7.5 + parent: 21002 + - type: Physics + bodyType: Static + - uid: 24294 + components: + - type: Transform + anchored: True + pos: 42.5,5.5 + parent: 21002 + - type: Physics + bodyType: Static + - uid: 25216 + components: + - type: Transform + anchored: True + pos: -7.5,18.5 + parent: 21002 + - type: Physics + bodyType: Static + - uid: 25226 + components: + - type: Transform + anchored: True + pos: 20.5,-43.5 + parent: 21002 + - type: Physics + bodyType: Static + - uid: 25564 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 21002 + - uid: 25565 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 21002 + - uid: 25566 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 21002 + - uid: 25877 + components: + - type: Transform + anchored: True + pos: 42.5,16.5 + parent: 21002 + - type: Physics + bodyType: Static + - uid: 28013 + components: + - type: Transform + anchored: True + pos: 52.5,15.5 + parent: 21002 + - type: Physics + bodyType: Static +- proto: Airlock + entities: + - uid: 769 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + - uid: 12131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 28358 + - uid: 12132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 28357 + - uid: 12133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 28356 + - uid: 19155 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 23642 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 3810 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-20.5 + parent: 2 +- proto: AirlockArmoryLocked + entities: + - uid: 4053 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 8442 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,2.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: -33.5,38.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 8143 + components: + - type: Transform + pos: -25.5,40.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + pos: -25.5,42.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,5.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,5.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 466 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-6.5 + parent: 2 + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-4.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-4.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 2596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,14.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,16.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 11214 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 19516 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 20195 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 772 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 1682 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 6650 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 414 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 413 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 2 +- proto: AirlockCommandGlass + entities: + - uid: 12715 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 2448 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,40.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 3795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,20.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 5448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,24.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,35.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,36.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,41.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,41.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,35.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,35.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,50.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: 10.5,49.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: 16.5,49.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,42.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,41.5 + parent: 2 + - uid: 19966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-44.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-27.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,39.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: 35.5,44.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: 34.5,47.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: 35.5,47.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,61.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,60.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-48.5 + parent: 2 + - uid: 10619 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-27.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 19635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-50.5 + parent: 2 + - uid: 19965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-46.5 + parent: 2 + - uid: 20486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + pos: -1.5,44.5 + parent: 2 + - uid: 23670 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 +- proto: AirlockEVAGlassLocked + entities: + - uid: 6113 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6115 + - uid: 6114 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6115 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 19542 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19543 + - type: DeviceLinkSource + linkedPorts: + 19543: + - DoorStatus: DoorBolt + - uid: 19543 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19542 + - type: DeviceLinkSource + linkedPorts: + 19542: + - DoorStatus: DoorBolt + - uid: 19544 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19546 + - 19545 + - type: DeviceLinkSource + linkedPorts: + 19545: + - DoorStatus: DoorBolt + 19546: + - DoorStatus: DoorBolt + - uid: 19545 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19544 + - type: DeviceLinkSource + linkedPorts: + 19544: + - DoorStatus: DoorBolt + - uid: 19546 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19544 + - type: DeviceLinkSource + linkedPorts: + 19544: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 13141 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-3.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-5.5 + parent: 2 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 8424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,7.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 8431 + - type: DeviceLinkSource + linkedPorts: + 8431: + - DoorStatus: DoorBolt + - uid: 8431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 8424 + - type: DeviceLinkSource + linkedPorts: + 8424: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 10846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11363 + - type: DeviceLinkSource + linkedPorts: + 11363: + - DoorStatus: DoorBolt + - uid: 10848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-19.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10846 + - type: DeviceLinkSource + linkedPorts: + 10846: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 6828 + components: + - type: Transform + pos: 41.5,49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6829 + - type: DeviceLinkSource + linkedPorts: + 6829: + - DoorStatus: DoorBolt + - uid: 6829 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6828 + - type: DeviceLinkSource + linkedPorts: + 6828: + - DoorStatus: DoorBolt + - uid: 7615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7623 + - type: DeviceLinkSource + linkedPorts: + 7623: + - DoorStatus: DoorBolt + - uid: 7621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7622 + - type: DeviceLinkSource + linkedPorts: + 7622: + - DoorStatus: DoorBolt + - uid: 7622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7621 + - type: DeviceLinkSource + linkedPorts: + 7621: + - DoorStatus: DoorBolt + - uid: 7623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7615 + - type: DeviceLinkSource + linkedPorts: + 7615: + - DoorStatus: DoorBolt + - uid: 7830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,46.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 8048 + - type: DeviceLinkSource + linkedPorts: + 8048: + - DoorStatus: DoorBolt + - uid: 8048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,46.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 7830 + - type: DeviceLinkSource + linkedPorts: + 7830: + - DoorStatus: DoorBolt + - uid: 8052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,49.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 8053 + - type: DeviceLinkSource + linkedPorts: + 8053: + - DoorStatus: DoorBolt + - uid: 8053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,47.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 8052 + - type: DeviceLinkSource + linkedPorts: + 8052: + - DoorStatus: DoorBolt + - uid: 19973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-49.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 19974 + - type: DeviceLinkSource + linkedPorts: + 19974: + - DoorStatus: DoorBolt + - uid: 19974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-47.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 19973 + - type: DeviceLinkSource + linkedPorts: + 19973: + - DoorStatus: DoorBolt + - uid: 20253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 20254 + - type: DeviceLinkSource + linkedPorts: + 20254: + - DoorStatus: DoorBolt + - uid: 20254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 20253 + - type: DeviceLinkSource + linkedPorts: + 20253: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 3778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3783 + - uid: 3781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3867: + - DoorStatus: DoorBolt + - uid: 3783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3778: + - DoorStatus: DoorBolt + - uid: 3867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3781 + - uid: 7763 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 22784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 21002 + - type: DeviceLinkSink + links: + - 22785 + - type: DeviceLinkSource + linkedPorts: + 22785: + - DoorStatus: DoorBolt + - uid: 22785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 21002 + - type: DeviceLinkSink + links: + - 22784 + - type: DeviceLinkSource + linkedPorts: + 22784: + - DoorStatus: DoorBolt + - uid: 24599 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 24609 + - type: DeviceLinkSource + linkedPorts: + 24609: + - DoorStatus: DoorBolt + - uid: 24600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,24.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24601 + - 24606 + - type: DeviceLinkSource + linkedPorts: + 24601: + - DoorStatus: DoorBolt + 24606: + - DoorStatus: DoorBolt + - uid: 24606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,28.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24601 + - 24600 + - type: DeviceLinkSource + linkedPorts: + 24601: + - DoorStatus: DoorBolt + 24600: + - DoorStatus: DoorBolt + - uid: 24609 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 24599 + - type: DeviceLinkSource + linkedPorts: + 24599: + - DoorStatus: DoorBolt + - uid: 24630 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 21002 + - uid: 24631 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 21002 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 10720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-68.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-68.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-75.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-75.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-2.5 + parent: 2 + - uid: 11336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-4.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-19.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 13106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,4.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,2.5 + parent: 2 + - uid: 15562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 18882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-3.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 3934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + - type: GridFill + path: /Maps/Shuttles/briggle.yml + - uid: 6820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6864 + - type: DeviceLinkSource + linkedPorts: + 6863: + - DoorStatus: DoorBolt + - uid: 6991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,54.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 9992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,55.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,55.5 + parent: 2 + - uid: 21015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 21002 + - uid: 21016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 21002 +- proto: AirlockExternalLocked + entities: + - uid: 24601 + components: + - type: Transform + pos: -4.5,26.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24600 + - 24606 + - type: DeviceLinkSource + linkedPorts: + 24600: + - DoorStatus: DoorBolt + 24606: + - DoorStatus: DoorBolt + - uid: 24613 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24622 + - 24623 + - type: DeviceLinkSource + linkedPorts: + 24622: + - DoorStatus: DoorBolt + 24623: + - DoorStatus: DoorBolt + - uid: 24614 + components: + - type: Transform + pos: 43.5,64.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24616 + - 24615 + - type: DeviceLinkSource + linkedPorts: + 24615: + - DoorStatus: DoorBolt + 24616: + - DoorStatus: DoorBolt + - uid: 24615 + components: + - type: Transform + pos: 41.5,66.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24614 + - 24616 + - type: DeviceLinkSource + linkedPorts: + 24614: + - DoorStatus: DoorBolt + 24616: + - DoorStatus: DoorBolt + - uid: 24616 + components: + - type: Transform + pos: 45.5,66.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24614 + - 24615 + - type: DeviceLinkSource + linkedPorts: + 24614: + - DoorStatus: DoorBolt + 24615: + - DoorStatus: DoorBolt + - uid: 24617 + components: + - type: Transform + pos: 95.5,29.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24619 + - 24618 + - type: DeviceLinkSource + linkedPorts: + 24618: + - DoorStatus: DoorBolt + 24619: + - DoorStatus: DoorBolt + - uid: 24618 + components: + - type: Transform + pos: 93.5,27.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24619 + - 24617 + - type: DeviceLinkSource + linkedPorts: + 24619: + - DoorStatus: DoorBolt + 24617: + - DoorStatus: DoorBolt + - uid: 24619 + components: + - type: Transform + pos: 95.5,25.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24618 + - 24617 + - type: DeviceLinkSource + linkedPorts: + 24618: + - DoorStatus: DoorBolt + 24617: + - DoorStatus: DoorBolt + - uid: 24620 + components: + - type: Transform + pos: 95.5,-2.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 24621 + - type: DeviceLinkSource + linkedPorts: + 24621: + - DoorStatus: DoorBolt + - uid: 24621 + components: + - type: Transform + pos: 95.5,-6.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 24620 + - type: DeviceLinkSource + linkedPorts: + 24620: + - DoorStatus: DoorBolt + - uid: 24622 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24613 + - 24623 + - type: DeviceLinkSource + linkedPorts: + 24623: + - DoorStatus: DoorBolt + 24613: + - DoorStatus: DoorBolt + - uid: 24623 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 21002 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 24622 + - 24613 + - type: DeviceLinkSource + linkedPorts: + 24622: + - DoorStatus: DoorBolt + 24613: + - DoorStatus: DoorBolt +- proto: AirlockFreezerLocked + entities: + - uid: 423 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 758 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6820 + - uid: 6864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,51.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,37.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-29.5 + parent: 2 + - uid: 18236 + components: + - type: Transform + pos: -9.5,-63.5 + parent: 2 + - uid: 18237 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 18238 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 18239 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 +- proto: AirlockHatch + entities: + - uid: 10942 + components: + - type: Transform + pos: 60.5,6.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: 61.5,6.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 2 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-7.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 4315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-37.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 4306 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 3300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 3038 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 +- proto: AirlockKitchenLocked + entities: + - uid: 512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 +- proto: AirlockLawyerGlassLocked + entities: + - uid: 5833 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 +- proto: AirlockLawyerLocked + entities: + - uid: 5834 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-13.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-23.5 + parent: 2 + - uid: 813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-12.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-23.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: -53.5,-29.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-45.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-40.5 + parent: 2 + - type: Door + secondsUntilStateChange: -152903.86 + state: Opening + - uid: 4137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,24.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,28.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,26.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: 37.5,44.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,33.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,30.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-48.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-50.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-48.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + pos: -10.5,-57.5 + parent: 2 + - uid: 10956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,6.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-16.5 + parent: 2 + - uid: 12126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-29.5 + parent: 2 + - uid: 12127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-26.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 + - uid: 12475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-43.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-39.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 8847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,26.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 468 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 11317 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 2 +- proto: AirlockMaintChemLocked + entities: + - uid: 1642 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 6 + components: + - type: Transform + pos: -17.5,38.5 + parent: 2 + - uid: 20661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,42.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 3330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 3036 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 419 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 2180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-35.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 23841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-53.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 1155 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 10251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 2 + - uid: 10468 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-42.5 + parent: 2 +- proto: AirlockMaintRnDMedLocked + entities: + - uid: 10226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-44.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 11234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-21.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 3122 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 +- proto: AirlockMaintServiceLocked + entities: + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 2 + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + links: + - 23551 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 2 + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + links: + - 23559 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + links: + - 23558 + - uid: 682 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + links: + - 23557 + - uid: 683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 2 + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + links: + - 4166 + - uid: 684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 2 + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + links: + - 23556 + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 2 + - uid: 728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 2 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 2153 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 +- proto: AirlockMedicalGlass + entities: + - uid: 1372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - type: Door + secondsUntilStateChange: -269071.25 + state: Opening + - uid: 1496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-28.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-27.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-27.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 1377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-32.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-35.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 1153 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-30.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-39.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 11543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,4.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 11292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,6.5 + parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 9891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-32.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 9876 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 11563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-15.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-15.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 9731 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 9933 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 2 + - uid: 10223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + pos: 22.5,-49.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 10166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 2 + - uid: 10178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 4144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-36.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-30.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-31.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 2 + - uid: 18633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-23.5 + parent: 2 + - uid: 21043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 21002 + - uid: 21044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 21002 + - uid: 21067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 21002 + - type: DeviceLinkSink + links: + - 21063 + - uid: 21068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 21002 + - type: DeviceLinkSink + links: + - 21064 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 3747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-13.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-18.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 22782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 21002 + - uid: 22783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 21002 + - uid: 23016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 21002 + - uid: 23411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-33.5 + parent: 2 + - uid: 25554 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 21002 +- proto: AirlockServiceLocked + entities: + - uid: 7863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,32.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,34.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-51.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 23644 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 +- proto: AirlockShuttle + entities: + - uid: 6925 + components: + - type: Transform + pos: 60.5,48.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,50.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,50.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: 62.5,48.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 2191 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 1224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-13.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-13.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 1248 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-24.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 5218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10169 + - uid: 18245 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18242 + - uid: 18253 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18240 + - uid: 18254 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18244 + - uid: 18256 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18247 + - uid: 18257 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18258 + - uid: 18262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18263 + - uid: 18265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18270 + - uid: 18266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18271 + - uid: 18267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18272 + - uid: 18268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18273 + - uid: 18269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18288 + - uid: 18278 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18287 + - uid: 18279 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - uid: 18280 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18285 + - uid: 18290 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18338 + - uid: 18291 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18336 + - uid: 18292 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18332 + - uid: 18293 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18305 + - uid: 18294 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18303 + - uid: 18295 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18333 + - uid: 18304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18317 + - uid: 18320 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18328 + - uid: 18321 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18328 + - 18570 + - uid: 18349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18499 + - uid: 18356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18366 + - uid: 18357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15512 + - uid: 18358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15512 + - uid: 18437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 + - uid: 18438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18443 + - uid: 18439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18440 + - uid: 18457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18463 + - uid: 18458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18463 + - uid: 18459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18469 + - uid: 18460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - uid: 18461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18469 + - uid: 18462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18478 + - uid: 18479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18480 + - uid: 18481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18482 + - uid: 18485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18501 + - uid: 18486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23679 + - uid: 18487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23683 + - uid: 18518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 + - uid: 18519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18530 + - uid: 18520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20717 + - uid: 18521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18536 + - uid: 18540 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18541 + - uid: 18543 + components: + - type: Transform + pos: 18.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - uid: 18544 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - uid: 18545 + components: + - type: Transform + pos: 30.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - uid: 18554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18553 + - uid: 18562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18564 + - uid: 18563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18564 + - uid: 18573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18567 + - uid: 18574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18567 + - 18570 + - uid: 18576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18570 + - uid: 18577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18570 + - uid: 18579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18584 + - uid: 18580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18582 + - 18583 + - 18584 + - uid: 18585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18587 + - uid: 18605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18603 + - uid: 18610 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18606 + - uid: 18612 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - uid: 18613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - uid: 18614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - uid: 18624 + components: + - type: Transform + pos: -40.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18623 + - uid: 18641 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 18642 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18644 + - uid: 18643 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18644 + - uid: 18647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18645 + - uid: 18648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18652 + - uid: 18649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18650 + - uid: 18656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18658 + - uid: 18664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18663 + - uid: 18665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18667 + - uid: 18666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18663 + - uid: 18669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18676 + - uid: 18670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18677 + - uid: 18671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18678 + - uid: 18672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 2 + - uid: 18673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18678 + - uid: 18686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18687 + - uid: 18692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18691 + - uid: 18693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18690 + - uid: 18695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 + - uid: 21373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21369 + - uid: 21386 + components: + - type: Transform + pos: 49.5,9.5 + parent: 21002 + - uid: 21414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,27.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21415 + - uid: 21451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-29.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21371 + - uid: 21453 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21456 + - uid: 21721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 22155 + - uid: 22267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,11.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 25568 + - uid: 22882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23531 + - uid: 23058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23056 + - uid: 23059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23056 + - uid: 23061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23060 + - uid: 23904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23903 + - uid: 23905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23907 + - uid: 23906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23907 + - uid: 23910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23909 + - uid: 23914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23915 + - uid: 23919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23918 + - uid: 23920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23918 + - uid: 23921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23917 + - uid: 23923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23927 + - uid: 23924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23927 + - uid: 24295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,8.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 25567 + - uid: 24297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,11.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 26568 + - uid: 26221 + components: + - type: Transform + pos: 43.5,38.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 26203 + - uid: 28046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21504 + - uid: 28053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21504 + - uid: 28277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-25.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 28262 +- proto: AirTank + entities: + - uid: 18893 + components: + - type: Transform + pos: -2.234833,40.44261 + parent: 2 + - uid: 23823 + components: + - type: Transform + pos: -2.5264995,40.54678 + parent: 2 +- proto: AlertsComputerCircuitboard + entities: + - uid: 4080 + components: + - type: Transform + pos: -47.476944,-20.01764 + parent: 2 +- proto: AltarConvertBurden + entities: + - uid: 26692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 21002 +- proto: AltarDruid + entities: + - uid: 19126 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 842 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 +- proto: AmeController + entities: + - uid: 5446 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 3796 + components: + - type: Transform + pos: 21.42931,-41.39281 + parent: 2 +- proto: APCBasic + entities: + - uid: 1172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-9.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-18.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-35.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,20.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,34.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,44.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-4.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-20.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-28.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-31.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,11.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 + - uid: 18166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 2 + - uid: 22494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 21002 + - uid: 23684 + components: + - type: Transform + pos: -2.5,44.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 5818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.702282,3.4324172 + parent: 2 + - uid: 9464 + components: + - type: Transform + pos: 28.635992,50.36638 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-40.5 + parent: 2 + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,17.5 + parent: 2 + - uid: 24769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-35.5 + parent: 21002 +- proto: APCHyperCapacity + entities: + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,45.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,17.5 + parent: 2 +- proto: APCSuperCapacity + entities: + - uid: 733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 2 + - uid: 10518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 2 +- proto: Ashtray + entities: + - uid: 23244 + components: + - type: Transform + pos: -54.004387,9.524085 + parent: 2 + - uid: 23359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.206093,16.783787 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 2256 + components: + - type: Transform + pos: -19.5,57.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 2 + - uid: 10323 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 2 + - uid: 10324 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + pos: 22.5,-65.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + pos: 21.5,-66.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: 20.5,-60.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: 18.5,-62.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + pos: 19.5,-65.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + pos: 20.5,-65.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: 21.5,-65.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + pos: 26.5,-61.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + pos: 24.5,-65.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: 26.5,-60.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + pos: 25.5,-60.5 + parent: 2 + - uid: 10350 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + pos: 24.5,-61.5 + parent: 2 + - uid: 10352 + components: + - type: Transform + pos: 26.5,-64.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: 24.5,-60.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + pos: 25.5,-65.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 10359 + components: + - type: Transform + pos: 25.5,-64.5 + parent: 2 + - uid: 10360 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + pos: 26.5,-63.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 2 + - uid: 10364 + components: + - type: Transform + pos: 19.5,-60.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 2 + - uid: 10366 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + pos: 22.5,-58.5 + parent: 2 + - uid: 10368 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 2 + - uid: 10369 + components: + - type: Transform + pos: 19.5,-61.5 + parent: 2 + - uid: 10370 + components: + - type: Transform + pos: 24.5,-63.5 + parent: 2 + - uid: 10371 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 2 + - uid: 10372 + components: + - type: Transform + pos: 22.5,-63.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + pos: 21.5,-63.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: 22.5,-66.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: 25.5,-61.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 2 + - uid: 19187 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 + - uid: 19191 + components: + - type: Transform + pos: 47.5,-45.5 + parent: 2 + - uid: 19192 + components: + - type: Transform + pos: 48.5,-45.5 + parent: 2 + - uid: 19193 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 19194 + components: + - type: Transform + pos: 50.5,-45.5 + parent: 2 + - uid: 19195 + components: + - type: Transform + pos: 51.5,-45.5 + parent: 2 + - uid: 19196 + components: + - type: Transform + pos: 52.5,-45.5 + parent: 2 + - uid: 19197 + components: + - type: Transform + pos: 48.5,-44.5 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 19199 + components: + - type: Transform + pos: 50.5,-44.5 + parent: 2 + - uid: 19200 + components: + - type: Transform + pos: 51.5,-44.5 + parent: 2 + - uid: 19201 + components: + - type: Transform + pos: 52.5,-44.5 + parent: 2 + - uid: 19202 + components: + - type: Transform + pos: 53.5,-44.5 + parent: 2 + - uid: 19203 + components: + - type: Transform + pos: 53.5,-43.5 + parent: 2 + - uid: 19204 + components: + - type: Transform + pos: 53.5,-42.5 + parent: 2 + - uid: 19205 + components: + - type: Transform + pos: 52.5,-43.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + pos: 52.5,-42.5 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: 51.5,-43.5 + parent: 2 + - uid: 19208 + components: + - type: Transform + pos: 51.5,-42.5 + parent: 2 + - uid: 19210 + components: + - type: Transform + pos: 50.5,-42.5 + parent: 2 + - uid: 19211 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 19212 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 19213 + components: + - type: Transform + pos: 52.5,-41.5 + parent: 2 + - uid: 19214 + components: + - type: Transform + pos: 51.5,-41.5 + parent: 2 + - uid: 19215 + components: + - type: Transform + pos: 50.5,-41.5 + parent: 2 + - uid: 19216 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 19218 + components: + - type: Transform + pos: 61.5,-42.5 + parent: 2 + - uid: 19219 + components: + - type: Transform + pos: 61.5,-41.5 + parent: 2 + - uid: 19220 + components: + - type: Transform + pos: 61.5,-40.5 + parent: 2 + - uid: 19221 + components: + - type: Transform + pos: 62.5,-41.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + pos: 62.5,-40.5 + parent: 2 + - uid: 19223 + components: + - type: Transform + pos: 63.5,-41.5 + parent: 2 + - uid: 19224 + components: + - type: Transform + pos: 63.5,-40.5 + parent: 2 + - uid: 19225 + components: + - type: Transform + pos: 64.5,-40.5 + parent: 2 + - uid: 19226 + components: + - type: Transform + pos: 62.5,-39.5 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: 63.5,-39.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: 60.5,-41.5 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: -27.5,-56.5 + parent: 2 + - uid: 19232 + components: + - type: Transform + pos: -28.5,-56.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -29.5,-56.5 + parent: 2 + - uid: 19234 + components: + - type: Transform + pos: -30.5,-56.5 + parent: 2 + - uid: 19235 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 19236 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 19237 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 19238 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: -36.5,-56.5 + parent: 2 + - uid: 19241 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: -29.5,-57.5 + parent: 2 + - uid: 19244 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: -31.5,-57.5 + parent: 2 + - uid: 19247 + components: + - type: Transform + pos: -33.5,-57.5 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: -34.5,-57.5 + parent: 2 + - uid: 19249 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 + - uid: 19250 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: -28.5,-58.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: -29.5,-58.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: -30.5,-58.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: -32.5,-58.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: -22.5,55.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + pos: -29.5,-59.5 + parent: 2 + - uid: 19261 + components: + - type: Transform + pos: -30.5,-59.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 19263 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - uid: 19264 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - uid: 19266 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 19267 + components: + - type: Transform + pos: -36.5,-59.5 + parent: 2 + - uid: 19268 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 19270 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 19271 + components: + - type: Transform + pos: -32.5,-60.5 + parent: 2 + - uid: 19272 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 19273 + components: + - type: Transform + pos: -33.5,-60.5 + parent: 2 + - uid: 19274 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 19275 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 19276 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 19277 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 19278 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 + - uid: 19279 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 2 + - uid: 19280 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 2 + - uid: 19281 + components: + - type: Transform + pos: -33.5,-62.5 + parent: 2 + - uid: 19282 + components: + - type: Transform + pos: -34.5,-62.5 + parent: 2 + - uid: 19283 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 19284 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 19285 + components: + - type: Transform + pos: -34.5,-65.5 + parent: 2 + - uid: 19286 + components: + - type: Transform + pos: -34.5,-64.5 + parent: 2 + - uid: 19287 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 2 + - uid: 19288 + components: + - type: Transform + pos: -35.5,-65.5 + parent: 2 + - uid: 19289 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 + - uid: 19290 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 2 + - uid: 19291 + components: + - type: Transform + pos: -36.5,-65.5 + parent: 2 + - uid: 19293 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 19294 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 + - uid: 19295 + components: + - type: Transform + pos: -35.5,-67.5 + parent: 2 + - uid: 19296 + components: + - type: Transform + pos: -35.5,-66.5 + parent: 2 + - uid: 19297 + components: + - type: Transform + pos: -36.5,-68.5 + parent: 2 + - uid: 19298 + components: + - type: Transform + pos: -36.5,-67.5 + parent: 2 + - uid: 19299 + components: + - type: Transform + pos: -36.5,-66.5 + parent: 2 + - uid: 19300 + components: + - type: Transform + pos: -36.5,-73.5 + parent: 2 + - uid: 19301 + components: + - type: Transform + pos: -37.5,-74.5 + parent: 2 + - uid: 19302 + components: + - type: Transform + pos: -37.5,-73.5 + parent: 2 + - uid: 19303 + components: + - type: Transform + pos: -37.5,-72.5 + parent: 2 + - uid: 19305 + components: + - type: Transform + pos: -37.5,-70.5 + parent: 2 + - uid: 19306 + components: + - type: Transform + pos: -37.5,-69.5 + parent: 2 + - uid: 19307 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 19308 + components: + - type: Transform + pos: -37.5,-67.5 + parent: 2 + - uid: 19309 + components: + - type: Transform + pos: -37.5,-66.5 + parent: 2 + - uid: 19310 + components: + - type: Transform + pos: -37.5,-65.5 + parent: 2 + - uid: 19312 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 19313 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 19314 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 19315 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - uid: 19316 + components: + - type: Transform + pos: -21.5,55.5 + parent: 2 + - uid: 19317 + components: + - type: Transform + pos: -20.5,55.5 + parent: 2 + - uid: 19318 + components: + - type: Transform + pos: -23.5,55.5 + parent: 2 + - uid: 19319 + components: + - type: Transform + pos: -36.5,-72.5 + parent: 2 + - uid: 19320 + components: + - type: Transform + pos: -36.5,-71.5 + parent: 2 + - uid: 19321 + components: + - type: Transform + pos: -36.5,-70.5 + parent: 2 + - uid: 19322 + components: + - type: Transform + pos: -36.5,-69.5 + parent: 2 + - uid: 19323 + components: + - type: Transform + pos: -58.5,-47.5 + parent: 2 + - uid: 19324 + components: + - type: Transform + pos: -38.5,-73.5 + parent: 2 + - uid: 19325 + components: + - type: Transform + pos: -38.5,-72.5 + parent: 2 + - uid: 19326 + components: + - type: Transform + pos: -38.5,-71.5 + parent: 2 + - uid: 19327 + components: + - type: Transform + pos: -38.5,-70.5 + parent: 2 + - uid: 19328 + components: + - type: Transform + pos: -38.5,-69.5 + parent: 2 + - uid: 19329 + components: + - type: Transform + pos: -38.5,-68.5 + parent: 2 + - uid: 19330 + components: + - type: Transform + pos: -38.5,-67.5 + parent: 2 + - uid: 19331 + components: + - type: Transform + pos: -38.5,-66.5 + parent: 2 + - uid: 19332 + components: + - type: Transform + pos: -38.5,-65.5 + parent: 2 + - uid: 19333 + components: + - type: Transform + pos: -38.5,-64.5 + parent: 2 + - uid: 19334 + components: + - type: Transform + pos: -38.5,-63.5 + parent: 2 + - uid: 19335 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 19336 + components: + - type: Transform + pos: -39.5,-68.5 + parent: 2 + - uid: 19337 + components: + - type: Transform + pos: -39.5,-67.5 + parent: 2 + - uid: 19338 + components: + - type: Transform + pos: -39.5,-66.5 + parent: 2 + - uid: 19339 + components: + - type: Transform + pos: -39.5,-65.5 + parent: 2 + - uid: 19340 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 2 + - uid: 19341 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 19342 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 19343 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 + - uid: 19344 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 19345 + components: + - type: Transform + pos: -40.5,-65.5 + parent: 2 + - uid: 19346 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 2 + - uid: 19347 + components: + - type: Transform + pos: -40.5,-63.5 + parent: 2 + - uid: 19348 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 19349 + components: + - type: Transform + pos: -40.5,-61.5 + parent: 2 + - uid: 19350 + components: + - type: Transform + pos: -40.5,-60.5 + parent: 2 + - uid: 19351 + components: + - type: Transform + pos: -40.5,-59.5 + parent: 2 + - uid: 19352 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 19353 + components: + - type: Transform + pos: -41.5,-59.5 + parent: 2 + - uid: 19354 + components: + - type: Transform + pos: -42.5,-58.5 + parent: 2 + - uid: 19355 + components: + - type: Transform + pos: -42.5,-59.5 + parent: 2 + - uid: 19356 + components: + - type: Transform + pos: -42.5,-60.5 + parent: 2 + - uid: 19357 + components: + - type: Transform + pos: -42.5,-62.5 + parent: 2 + - uid: 19358 + components: + - type: Transform + pos: -42.5,-63.5 + parent: 2 + - uid: 19359 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 2 + - uid: 19360 + components: + - type: Transform + pos: -43.5,-65.5 + parent: 2 + - uid: 19361 + components: + - type: Transform + pos: -43.5,-64.5 + parent: 2 + - uid: 19362 + components: + - type: Transform + pos: -43.5,-63.5 + parent: 2 + - uid: 19363 + components: + - type: Transform + pos: -43.5,-62.5 + parent: 2 + - uid: 19364 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 2 + - uid: 19365 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 2 + - uid: 19366 + components: + - type: Transform + pos: -44.5,-62.5 + parent: 2 + - uid: 19367 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 2 + - uid: 19368 + components: + - type: Transform + pos: -44.5,-60.5 + parent: 2 + - uid: 19369 + components: + - type: Transform + pos: -45.5,-62.5 + parent: 2 + - uid: 19370 + components: + - type: Transform + pos: -45.5,-61.5 + parent: 2 + - uid: 19371 + components: + - type: Transform + pos: -45.5,-60.5 + parent: 2 + - uid: 19372 + components: + - type: Transform + pos: -45.5,-59.5 + parent: 2 + - uid: 19373 + components: + - type: Transform + pos: -46.5,-60.5 + parent: 2 + - uid: 19374 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 2 + - uid: 19375 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 2 + - uid: 19376 + components: + - type: Transform + pos: -47.5,-58.5 + parent: 2 + - uid: 19379 + components: + - type: Transform + pos: -45.5,-58.5 + parent: 2 + - uid: 19380 + components: + - type: Transform + pos: -68.5,-46.5 + parent: 2 + - uid: 19381 + components: + - type: Transform + pos: -67.5,-46.5 + parent: 2 + - uid: 19382 + components: + - type: Transform + pos: -66.5,-46.5 + parent: 2 + - uid: 19383 + components: + - type: Transform + pos: -65.5,-46.5 + parent: 2 + - uid: 19384 + components: + - type: Transform + pos: -64.5,-46.5 + parent: 2 + - uid: 19385 + components: + - type: Transform + pos: -63.5,-46.5 + parent: 2 + - uid: 19387 + components: + - type: Transform + pos: -61.5,-46.5 + parent: 2 + - uid: 19388 + components: + - type: Transform + pos: -60.5,-46.5 + parent: 2 + - uid: 19389 + components: + - type: Transform + pos: -59.5,-46.5 + parent: 2 + - uid: 19390 + components: + - type: Transform + pos: -58.5,-46.5 + parent: 2 + - uid: 19391 + components: + - type: Transform + pos: -58.5,-48.5 + parent: 2 + - uid: 19392 + components: + - type: Transform + pos: -58.5,-49.5 + parent: 2 + - uid: 19393 + components: + - type: Transform + pos: -58.5,-50.5 + parent: 2 + - uid: 19394 + components: + - type: Transform + pos: -58.5,-51.5 + parent: 2 + - uid: 19395 + components: + - type: Transform + pos: -58.5,-52.5 + parent: 2 + - uid: 19396 + components: + - type: Transform + pos: -58.5,-53.5 + parent: 2 + - uid: 19397 + components: + - type: Transform + pos: -58.5,-54.5 + parent: 2 + - uid: 19398 + components: + - type: Transform + pos: -59.5,-51.5 + parent: 2 + - uid: 19399 + components: + - type: Transform + pos: -59.5,-50.5 + parent: 2 + - uid: 19400 + components: + - type: Transform + pos: -59.5,-49.5 + parent: 2 + - uid: 19401 + components: + - type: Transform + pos: -59.5,-48.5 + parent: 2 + - uid: 19402 + components: + - type: Transform + pos: -59.5,-47.5 + parent: 2 + - uid: 19403 + components: + - type: Transform + pos: -60.5,-47.5 + parent: 2 + - uid: 19404 + components: + - type: Transform + pos: -61.5,-47.5 + parent: 2 + - uid: 19405 + components: + - type: Transform + pos: -62.5,-47.5 + parent: 2 + - uid: 19406 + components: + - type: Transform + pos: -63.5,-47.5 + parent: 2 + - uid: 19407 + components: + - type: Transform + pos: -64.5,-47.5 + parent: 2 + - uid: 19408 + components: + - type: Transform + pos: -65.5,-47.5 + parent: 2 + - uid: 19409 + components: + - type: Transform + pos: -66.5,-47.5 + parent: 2 + - uid: 19410 + components: + - type: Transform + pos: -67.5,-47.5 + parent: 2 + - uid: 19411 + components: + - type: Transform + pos: -64.5,-48.5 + parent: 2 + - uid: 19412 + components: + - type: Transform + pos: -63.5,-48.5 + parent: 2 + - uid: 19413 + components: + - type: Transform + pos: -62.5,-48.5 + parent: 2 + - uid: 19414 + components: + - type: Transform + pos: -65.5,-45.5 + parent: 2 + - uid: 19415 + components: + - type: Transform + pos: -64.5,-45.5 + parent: 2 + - uid: 19416 + components: + - type: Transform + pos: -63.5,-45.5 + parent: 2 + - uid: 19417 + components: + - type: Transform + pos: -62.5,-45.5 + parent: 2 + - uid: 19418 + components: + - type: Transform + pos: -61.5,-45.5 + parent: 2 + - uid: 19419 + components: + - type: Transform + pos: -60.5,-45.5 + parent: 2 + - uid: 19420 + components: + - type: Transform + pos: -59.5,-45.5 + parent: 2 + - uid: 19421 + components: + - type: Transform + pos: -58.5,-45.5 + parent: 2 + - uid: 19422 + components: + - type: Transform + pos: -57.5,-45.5 + parent: 2 + - uid: 19423 + components: + - type: Transform + pos: -57.5,-53.5 + parent: 2 + - uid: 19424 + components: + - type: Transform + pos: -57.5,-52.5 + parent: 2 + - uid: 19425 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 19427 + components: + - type: Transform + pos: -57.5,-49.5 + parent: 2 + - uid: 19428 + components: + - type: Transform + pos: -57.5,-48.5 + parent: 2 + - uid: 19429 + components: + - type: Transform + pos: -57.5,-47.5 + parent: 2 + - uid: 19430 + components: + - type: Transform + pos: -57.5,-46.5 + parent: 2 + - uid: 19431 + components: + - type: Transform + pos: -62.5,-44.5 + parent: 2 + - uid: 19432 + components: + - type: Transform + pos: -62.5,-43.5 + parent: 2 + - uid: 19433 + components: + - type: Transform + pos: -61.5,-44.5 + parent: 2 + - uid: 19434 + components: + - type: Transform + pos: -61.5,-43.5 + parent: 2 + - uid: 19435 + components: + - type: Transform + pos: -60.5,-44.5 + parent: 2 + - uid: 19436 + components: + - type: Transform + pos: -60.5,-43.5 + parent: 2 + - uid: 19437 + components: + - type: Transform + pos: -59.5,-44.5 + parent: 2 + - uid: 19438 + components: + - type: Transform + pos: -59.5,-43.5 + parent: 2 + - uid: 19439 + components: + - type: Transform + pos: -58.5,-44.5 + parent: 2 + - uid: 19440 + components: + - type: Transform + pos: -58.5,-43.5 + parent: 2 + - uid: 19441 + components: + - type: Transform + pos: -61.5,-42.5 + parent: 2 + - uid: 19442 + components: + - type: Transform + pos: -60.5,-42.5 + parent: 2 + - uid: 19443 + components: + - type: Transform + pos: -59.5,-42.5 + parent: 2 + - uid: 19444 + components: + - type: Transform + pos: -19.5,62.5 + parent: 2 + - uid: 19445 + components: + - type: Transform + pos: -59.5,-41.5 + parent: 2 + - uid: 19446 + components: + - type: Transform + pos: -60.5,-41.5 + parent: 2 + - uid: 19447 + components: + - type: Transform + pos: -58.5,-37.5 + parent: 2 + - uid: 19448 + components: + - type: Transform + pos: -58.5,-36.5 + parent: 2 + - uid: 19449 + components: + - type: Transform + pos: -58.5,-35.5 + parent: 2 + - uid: 19450 + components: + - type: Transform + pos: -58.5,-34.5 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: -58.5,-33.5 + parent: 2 + - uid: 19452 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 19453 + components: + - type: Transform + pos: -59.5,-29.5 + parent: 2 + - uid: 19454 + components: + - type: Transform + pos: -59.5,-30.5 + parent: 2 + - uid: 19455 + components: + - type: Transform + pos: -59.5,-31.5 + parent: 2 + - uid: 19456 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 19458 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 2 + - uid: 19459 + components: + - type: Transform + pos: -59.5,-35.5 + parent: 2 + - uid: 19460 + components: + - type: Transform + pos: -59.5,-36.5 + parent: 2 + - uid: 19461 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 19462 + components: + - type: Transform + pos: -60.5,-33.5 + parent: 2 + - uid: 19463 + components: + - type: Transform + pos: -60.5,-34.5 + parent: 2 + - uid: 19464 + components: + - type: Transform + pos: -60.5,-35.5 + parent: 2 + - uid: 19465 + components: + - type: Transform + pos: -60.5,-36.5 + parent: 2 + - uid: 19466 + components: + - type: Transform + pos: -60.5,-37.5 + parent: 2 + - uid: 19467 + components: + - type: Transform + pos: -60.5,-38.5 + parent: 2 + - uid: 19468 + components: + - type: Transform + pos: -56.5,-51.5 + parent: 2 + - uid: 19469 + components: + - type: Transform + pos: -56.5,-50.5 + parent: 2 + - uid: 19470 + components: + - type: Transform + pos: -56.5,-49.5 + parent: 2 + - uid: 19471 + components: + - type: Transform + pos: -56.5,-48.5 + parent: 2 + - uid: 19472 + components: + - type: Transform + pos: -55.5,-50.5 + parent: 2 + - uid: 19473 + components: + - type: Transform + pos: -55.5,-49.5 + parent: 2 + - uid: 19474 + components: + - type: Transform + pos: -55.5,-48.5 + parent: 2 + - uid: 19475 + components: + - type: Transform + pos: -54.5,-49.5 + parent: 2 + - uid: 19476 + components: + - type: Transform + pos: -54.5,-50.5 + parent: 2 + - uid: 19477 + components: + - type: Transform + pos: -53.5,-49.5 + parent: 2 + - uid: 19478 + components: + - type: Transform + pos: -53.5,-50.5 + parent: 2 + - uid: 19479 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 + - uid: 19480 + components: + - type: Transform + pos: -52.5,-51.5 + parent: 2 + - uid: 19481 + components: + - type: Transform + pos: -51.5,-50.5 + parent: 2 + - uid: 19482 + components: + - type: Transform + pos: -51.5,-51.5 + parent: 2 + - uid: 19486 + components: + - type: Transform + pos: -19.5,55.5 + parent: 2 + - uid: 19487 + components: + - type: Transform + pos: -18.5,55.5 + parent: 2 + - uid: 19488 + components: + - type: Transform + pos: -17.5,56.5 + parent: 2 + - uid: 19489 + components: + - type: Transform + pos: -16.5,57.5 + parent: 2 + - uid: 19490 + components: + - type: Transform + pos: -12.5,55.5 + parent: 2 + - uid: 19491 + components: + - type: Transform + pos: -17.5,57.5 + parent: 2 + - uid: 19492 + components: + - type: Transform + pos: -18.5,57.5 + parent: 2 + - uid: 19494 + components: + - type: Transform + pos: -20.5,57.5 + parent: 2 + - uid: 19495 + components: + - type: Transform + pos: -21.5,57.5 + parent: 2 + - uid: 19496 + components: + - type: Transform + pos: -22.5,56.5 + parent: 2 + - uid: 19497 + components: + - type: Transform + pos: -21.5,56.5 + parent: 2 + - uid: 19498 + components: + - type: Transform + pos: -20.5,56.5 + parent: 2 + - uid: 19499 + components: + - type: Transform + pos: -19.5,56.5 + parent: 2 + - uid: 19500 + components: + - type: Transform + pos: -18.5,56.5 + parent: 2 + - uid: 19501 + components: + - type: Transform + pos: -17.5,58.5 + parent: 2 + - uid: 19502 + components: + - type: Transform + pos: -17.5,59.5 + parent: 2 + - uid: 19503 + components: + - type: Transform + pos: -18.5,58.5 + parent: 2 + - uid: 19504 + components: + - type: Transform + pos: -18.5,59.5 + parent: 2 + - uid: 19506 + components: + - type: Transform + pos: -19.5,59.5 + parent: 2 + - uid: 19507 + components: + - type: Transform + pos: -20.5,58.5 + parent: 2 + - uid: 19508 + components: + - type: Transform + pos: -20.5,59.5 + parent: 2 + - uid: 19509 + components: + - type: Transform + pos: -18.5,60.5 + parent: 2 + - uid: 19510 + components: + - type: Transform + pos: -18.5,61.5 + parent: 2 + - uid: 19511 + components: + - type: Transform + pos: -19.5,60.5 + parent: 2 + - uid: 19512 + components: + - type: Transform + pos: -19.5,61.5 + parent: 2 + - uid: 19513 + components: + - type: Transform + pos: -20.5,60.5 + parent: 2 + - uid: 19514 + components: + - type: Transform + pos: -20.5,61.5 + parent: 2 + - uid: 19515 + components: + - type: Transform + pos: -19.5,63.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + pos: 33.5,54.5 + parent: 2 + - uid: 19520 + components: + - type: Transform + pos: 33.5,53.5 + parent: 2 + - uid: 19521 + components: + - type: Transform + pos: 33.5,52.5 + parent: 2 + - uid: 19522 + components: + - type: Transform + pos: 34.5,53.5 + parent: 2 + - uid: 19523 + components: + - type: Transform + pos: 34.5,52.5 + parent: 2 + - uid: 19524 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 19525 + components: + - type: Transform + pos: 36.5,52.5 + parent: 2 + - uid: 19526 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - uid: 19527 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 + - uid: 19528 + components: + - type: Transform + pos: 41.5,45.5 + parent: 2 + - uid: 19530 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 + - uid: 19531 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 + - uid: 19532 + components: + - type: Transform + pos: 43.5,44.5 + parent: 2 + - uid: 21221 + components: + - type: Transform + pos: 32.5,10.5 + parent: 21002 + - uid: 21289 + components: + - type: Transform + pos: 32.5,9.5 + parent: 21002 + - uid: 21290 + components: + - type: Transform + pos: 32.5,8.5 + parent: 21002 + - uid: 21291 + components: + - type: Transform + pos: 33.5,9.5 + parent: 21002 + - uid: 21292 + components: + - type: Transform + pos: 33.5,8.5 + parent: 21002 + - uid: 21293 + components: + - type: Transform + pos: 33.5,7.5 + parent: 21002 + - uid: 21294 + components: + - type: Transform + pos: 34.5,9.5 + parent: 21002 + - uid: 21295 + components: + - type: Transform + pos: 34.5,8.5 + parent: 21002 + - uid: 21296 + components: + - type: Transform + pos: 10.5,11.5 + parent: 21002 + - uid: 21297 + components: + - type: Transform + pos: 11.5,11.5 + parent: 21002 + - uid: 21298 + components: + - type: Transform + pos: 12.5,11.5 + parent: 21002 + - uid: 21299 + components: + - type: Transform + pos: 34.5,7.5 + parent: 21002 + - uid: 21300 + components: + - type: Transform + pos: 14.5,11.5 + parent: 21002 + - uid: 21301 + components: + - type: Transform + pos: 15.5,11.5 + parent: 21002 + - uid: 21302 + components: + - type: Transform + pos: 16.5,11.5 + parent: 21002 + - uid: 21303 + components: + - type: Transform + pos: 17.5,11.5 + parent: 21002 + - uid: 21304 + components: + - type: Transform + pos: 18.5,11.5 + parent: 21002 + - uid: 21305 + components: + - type: Transform + pos: 19.5,11.5 + parent: 21002 + - uid: 21306 + components: + - type: Transform + pos: 20.5,11.5 + parent: 21002 + - uid: 21307 + components: + - type: Transform + pos: 21.5,11.5 + parent: 21002 + - uid: 21308 + components: + - type: Transform + pos: 35.5,9.5 + parent: 21002 + - uid: 21309 + components: + - type: Transform + pos: 23.5,11.5 + parent: 21002 + - uid: 21310 + components: + - type: Transform + pos: 24.5,11.5 + parent: 21002 + - uid: 21311 + components: + - type: Transform + pos: 25.5,11.5 + parent: 21002 + - uid: 21312 + components: + - type: Transform + pos: 26.5,11.5 + parent: 21002 + - uid: 21313 + components: + - type: Transform + pos: 27.5,11.5 + parent: 21002 + - uid: 21314 + components: + - type: Transform + pos: 35.5,8.5 + parent: 21002 + - uid: 21315 + components: + - type: Transform + pos: 35.5,7.5 + parent: 21002 + - uid: 21316 + components: + - type: Transform + pos: 36.5,8.5 + parent: 21002 + - uid: 21317 + components: + - type: Transform + pos: 19.5,10.5 + parent: 21002 + - uid: 21318 + components: + - type: Transform + pos: 18.5,10.5 + parent: 21002 + - uid: 21319 + components: + - type: Transform + pos: 21.5,10.5 + parent: 21002 + - uid: 21320 + components: + - type: Transform + pos: 37.5,8.5 + parent: 21002 + - uid: 21321 + components: + - type: Transform + pos: 23.5,10.5 + parent: 21002 + - uid: 21322 + components: + - type: Transform + pos: 24.5,10.5 + parent: 21002 + - uid: 21323 + components: + - type: Transform + pos: 25.5,10.5 + parent: 21002 + - uid: 21324 + components: + - type: Transform + pos: 26.5,10.5 + parent: 21002 + - uid: 21325 + components: + - type: Transform + pos: 27.5,10.5 + parent: 21002 + - uid: 21326 + components: + - type: Transform + pos: 28.5,10.5 + parent: 21002 + - uid: 21327 + components: + - type: Transform + pos: 29.5,10.5 + parent: 21002 + - uid: 21328 + components: + - type: Transform + pos: 30.5,10.5 + parent: 21002 + - uid: 21329 + components: + - type: Transform + pos: 31.5,10.5 + parent: 21002 + - uid: 21330 + components: + - type: Transform + pos: 34.5,6.5 + parent: 21002 + - uid: 21331 + components: + - type: Transform + pos: 20.5,10.5 + parent: 21002 + - uid: 21332 + components: + - type: Transform + pos: 51.5,1.5 + parent: 21002 + - uid: 21333 + components: + - type: Transform + pos: 33.5,6.5 + parent: 21002 + - uid: 21348 + components: + - type: Transform + pos: 33.5,5.5 + parent: 21002 + - uid: 21354 + components: + - type: Transform + pos: 28.5,9.5 + parent: 21002 + - uid: 21355 + components: + - type: Transform + pos: 28.5,8.5 + parent: 21002 + - uid: 21357 + components: + - type: Transform + pos: 29.5,9.5 + parent: 21002 + - uid: 21358 + components: + - type: Transform + pos: 29.5,8.5 + parent: 21002 + - uid: 21359 + components: + - type: Transform + pos: 18.5,25.5 + parent: 21002 + - uid: 21360 + components: + - type: Transform + pos: 30.5,9.5 + parent: 21002 + - uid: 21361 + components: + - type: Transform + pos: 30.5,8.5 + parent: 21002 + - uid: 21362 + components: + - type: Transform + pos: 30.5,7.5 + parent: 21002 + - uid: 21363 + components: + - type: Transform + pos: 31.5,9.5 + parent: 21002 + - uid: 21364 + components: + - type: Transform + pos: 31.5,8.5 + parent: 21002 + - uid: 21365 + components: + - type: Transform + pos: 31.5,7.5 + parent: 21002 + - uid: 21368 + components: + - type: Transform + pos: 32.5,7.5 + parent: 21002 + - uid: 21382 + components: + - type: Transform + pos: 32.5,6.5 + parent: 21002 + - uid: 21383 + components: + - type: Transform + pos: 31.5,6.5 + parent: 21002 + - uid: 21384 + components: + - type: Transform + pos: 30.5,6.5 + parent: 21002 + - uid: 21385 + components: + - type: Transform + pos: 29.5,6.5 + parent: 21002 + - uid: 21394 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 21002 + - uid: 21395 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 21002 + - uid: 21396 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 21002 + - uid: 21400 + components: + - type: Transform + pos: 29.5,5.5 + parent: 21002 + - uid: 21401 + components: + - type: Transform + pos: 30.5,5.5 + parent: 21002 + - uid: 21402 + components: + - type: Transform + pos: 31.5,5.5 + parent: 21002 + - uid: 21403 + components: + - type: Transform + pos: 32.5,5.5 + parent: 21002 + - uid: 21466 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 21002 + - uid: 21467 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 21002 + - uid: 21468 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 21002 + - uid: 21469 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 21002 + - uid: 21470 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 21002 + - uid: 21471 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 21002 + - uid: 21472 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 21002 + - uid: 21473 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 21002 + - uid: 21474 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 21002 + - uid: 21475 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 21002 + - uid: 21476 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 21002 + - uid: 21477 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 21002 + - uid: 21479 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 21002 + - uid: 21482 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 21002 + - uid: 21483 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 21002 + - uid: 21485 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 21002 + - uid: 21488 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 21002 + - uid: 21489 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 21002 + - uid: 21491 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 21002 + - uid: 21492 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 21002 + - uid: 21495 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 21002 + - uid: 21496 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 21002 + - uid: 21498 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 21002 + - uid: 21499 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 21002 + - uid: 21503 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 21002 + - uid: 21505 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 21002 + - uid: 21506 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 21002 + - uid: 21509 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 21002 + - uid: 21512 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 21002 + - uid: 21513 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 21002 + - uid: 21514 + components: + - type: Transform + pos: 44.5,0.5 + parent: 21002 + - uid: 21515 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 21002 + - uid: 21516 + components: + - type: Transform + pos: 43.5,0.5 + parent: 21002 + - uid: 21517 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 21002 + - uid: 21518 + components: + - type: Transform + pos: 42.5,0.5 + parent: 21002 + - uid: 21519 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 21002 + - uid: 21520 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 21002 + - uid: 21521 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 21002 + - uid: 21522 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 21002 + - uid: 21523 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 21002 + - uid: 21524 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 21002 + - uid: 21531 + components: + - type: Transform + pos: 44.5,1.5 + parent: 21002 + - uid: 21534 + components: + - type: Transform + pos: 43.5,3.5 + parent: 21002 + - uid: 21536 + components: + - type: Transform + pos: 47.5,3.5 + parent: 21002 + - uid: 21547 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 21002 + - uid: 21548 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 21002 + - uid: 21549 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 21002 + - uid: 21550 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 21002 + - uid: 21551 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 21002 + - uid: 21552 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 21002 + - uid: 21553 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 21002 + - uid: 21554 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 21002 + - uid: 21555 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 21002 + - uid: 21556 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 21002 + - uid: 21557 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 21002 + - uid: 21558 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 21002 + - uid: 21562 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 21002 + - uid: 21563 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 21002 + - uid: 21564 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 21002 + - uid: 21565 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 21002 + - uid: 21566 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 21002 + - uid: 21571 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 21002 + - uid: 21572 + components: + - type: Transform + pos: 46.5,0.5 + parent: 21002 + - uid: 21573 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 21002 + - uid: 21574 + components: + - type: Transform + pos: 45.5,0.5 + parent: 21002 + - uid: 21575 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 21002 + - uid: 21576 + components: + - type: Transform + pos: 60.5,8.5 + parent: 21002 + - uid: 21577 + components: + - type: Transform + pos: 60.5,9.5 + parent: 21002 + - uid: 21578 + components: + - type: Transform + pos: 60.5,10.5 + parent: 21002 + - uid: 21579 + components: + - type: Transform + pos: 60.5,11.5 + parent: 21002 + - uid: 21580 + components: + - type: Transform + pos: 60.5,12.5 + parent: 21002 + - uid: 21581 + components: + - type: Transform + pos: 60.5,13.5 + parent: 21002 + - uid: 21582 + components: + - type: Transform + pos: 60.5,14.5 + parent: 21002 + - uid: 21587 + components: + - type: Transform + pos: 61.5,14.5 + parent: 21002 + - uid: 21588 + components: + - type: Transform + pos: 61.5,13.5 + parent: 21002 + - uid: 21589 + components: + - type: Transform + pos: 62.5,14.5 + parent: 21002 + - uid: 21590 + components: + - type: Transform + pos: 62.5,13.5 + parent: 21002 + - uid: 21592 + components: + - type: Transform + pos: 61.5,11.5 + parent: 21002 + - uid: 21593 + components: + - type: Transform + pos: 61.5,10.5 + parent: 21002 + - uid: 21599 + components: + - type: Transform + pos: 47.5,1.5 + parent: 21002 + - uid: 21601 + components: + - type: Transform + pos: 48.5,1.5 + parent: 21002 + - uid: 21603 + components: + - type: Transform + pos: 49.5,1.5 + parent: 21002 + - uid: 21604 + components: + - type: Transform + pos: 61.5,9.5 + parent: 21002 + - uid: 21605 + components: + - type: Transform + pos: 50.5,1.5 + parent: 21002 + - uid: 21607 + components: + - type: Transform + pos: 50.5,0.5 + parent: 21002 + - uid: 21608 + components: + - type: Transform + pos: 49.5,0.5 + parent: 21002 + - uid: 21609 + components: + - type: Transform + pos: 48.5,0.5 + parent: 21002 + - uid: 21610 + components: + - type: Transform + pos: 47.5,0.5 + parent: 21002 + - uid: 21611 + components: + - type: Transform + pos: 62.5,10.5 + parent: 21002 + - uid: 21612 + components: + - type: Transform + pos: 63.5,10.5 + parent: 21002 + - uid: 21613 + components: + - type: Transform + pos: 45.5,3.5 + parent: 21002 + - uid: 21616 + components: + - type: Transform + pos: 52.5,1.5 + parent: 21002 + - uid: 21617 + components: + - type: Transform + pos: 53.5,1.5 + parent: 21002 + - uid: 21618 + components: + - type: Transform + pos: 54.5,1.5 + parent: 21002 + - uid: 21619 + components: + - type: Transform + pos: 55.5,1.5 + parent: 21002 + - uid: 21620 + components: + - type: Transform + pos: 56.5,1.5 + parent: 21002 + - uid: 21621 + components: + - type: Transform + pos: 57.5,1.5 + parent: 21002 + - uid: 21622 + components: + - type: Transform + pos: 58.5,1.5 + parent: 21002 + - uid: 21623 + components: + - type: Transform + pos: 59.5,1.5 + parent: 21002 + - uid: 21625 + components: + - type: Transform + pos: 59.5,10.5 + parent: 21002 + - uid: 21626 + components: + - type: Transform + pos: 59.5,11.5 + parent: 21002 + - uid: 21627 + components: + - type: Transform + pos: 58.5,11.5 + parent: 21002 + - uid: 21628 + components: + - type: Transform + pos: 56.5,0.5 + parent: 21002 + - uid: 21629 + components: + - type: Transform + pos: 55.5,0.5 + parent: 21002 + - uid: 21630 + components: + - type: Transform + pos: 57.5,11.5 + parent: 21002 + - uid: 21631 + components: + - type: Transform + pos: 56.5,11.5 + parent: 21002 + - uid: 21632 + components: + - type: Transform + pos: 57.5,10.5 + parent: 21002 + - uid: 21633 + components: + - type: Transform + pos: 57.5,13.5 + parent: 21002 + - uid: 21634 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 21002 + - uid: 21635 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 21002 + - uid: 21636 + components: + - type: Transform + pos: 56.5,13.5 + parent: 21002 + - uid: 21637 + components: + - type: Transform + pos: 53.5,2.5 + parent: 21002 + - uid: 21638 + components: + - type: Transform + pos: 53.5,3.5 + parent: 21002 + - uid: 21639 + components: + - type: Transform + pos: 53.5,4.5 + parent: 21002 + - uid: 21640 + components: + - type: Transform + pos: 54.5,2.5 + parent: 21002 + - uid: 21641 + components: + - type: Transform + pos: 54.5,3.5 + parent: 21002 + - uid: 21642 + components: + - type: Transform + pos: 54.5,4.5 + parent: 21002 + - uid: 21643 + components: + - type: Transform + pos: 55.5,2.5 + parent: 21002 + - uid: 21644 + components: + - type: Transform + pos: 55.5,3.5 + parent: 21002 + - uid: 21645 + components: + - type: Transform + pos: 55.5,4.5 + parent: 21002 + - uid: 21646 + components: + - type: Transform + pos: 56.5,2.5 + parent: 21002 + - uid: 21650 + components: + - type: Transform + pos: 56.5,4.5 + parent: 21002 + - uid: 21651 + components: + - type: Transform + pos: 57.5,2.5 + parent: 21002 + - uid: 21652 + components: + - type: Transform + pos: 57.5,3.5 + parent: 21002 + - uid: 21653 + components: + - type: Transform + pos: 57.5,4.5 + parent: 21002 + - uid: 21655 + components: + - type: Transform + pos: 58.5,3.5 + parent: 21002 + - uid: 21656 + components: + - type: Transform + pos: 58.5,4.5 + parent: 21002 + - uid: 21658 + components: + - type: Transform + pos: 59.5,3.5 + parent: 21002 + - uid: 21659 + components: + - type: Transform + pos: 59.5,4.5 + parent: 21002 + - uid: 21660 + components: + - type: Transform + pos: 55.5,13.5 + parent: 21002 + - uid: 21663 + components: + - type: Transform + pos: 54.5,5.5 + parent: 21002 + - uid: 21664 + components: + - type: Transform + pos: 55.5,5.5 + parent: 21002 + - uid: 21665 + components: + - type: Transform + pos: 56.5,5.5 + parent: 21002 + - uid: 21666 + components: + - type: Transform + pos: 57.5,5.5 + parent: 21002 + - uid: 21667 + components: + - type: Transform + pos: 58.5,5.5 + parent: 21002 + - uid: 21668 + components: + - type: Transform + pos: 59.5,5.5 + parent: 21002 + - uid: 21669 + components: + - type: Transform + pos: 52.5,13.5 + parent: 21002 + - uid: 21670 + components: + - type: Transform + pos: 51.5,13.5 + parent: 21002 + - uid: 21671 + components: + - type: Transform + pos: 50.5,13.5 + parent: 21002 + - uid: 21672 + components: + - type: Transform + pos: 49.5,13.5 + parent: 21002 + - uid: 21673 + components: + - type: Transform + pos: 48.5,13.5 + parent: 21002 + - uid: 21674 + components: + - type: Transform + pos: 47.5,13.5 + parent: 21002 + - uid: 21675 + components: + - type: Transform + pos: 46.5,13.5 + parent: 21002 + - uid: 21683 + components: + - type: Transform + pos: 60.5,17.5 + parent: 21002 + - uid: 21686 + components: + - type: Transform + pos: 58.5,15.5 + parent: 21002 + - uid: 21687 + components: + - type: Transform + pos: 58.5,14.5 + parent: 21002 + - uid: 21688 + components: + - type: Transform + pos: 58.5,13.5 + parent: 21002 + - uid: 21689 + components: + - type: Transform + pos: 59.5,17.5 + parent: 21002 + - uid: 21691 + components: + - type: Transform + pos: 59.5,15.5 + parent: 21002 + - uid: 21692 + components: + - type: Transform + pos: 59.5,14.5 + parent: 21002 + - uid: 21693 + components: + - type: Transform + pos: 59.5,13.5 + parent: 21002 + - uid: 21694 + components: + - type: Transform + pos: 61.5,17.5 + parent: 21002 + - uid: 21695 + components: + - type: Transform + pos: 61.5,16.5 + parent: 21002 + - uid: 21696 + components: + - type: Transform + pos: 61.5,15.5 + parent: 21002 + - uid: 21699 + components: + - type: Transform + pos: 62.5,17.5 + parent: 21002 + - uid: 21700 + components: + - type: Transform + pos: 62.5,16.5 + parent: 21002 + - uid: 21701 + components: + - type: Transform + pos: 62.5,15.5 + parent: 21002 + - uid: 21710 + components: + - type: Transform + pos: 51.5,10.5 + parent: 21002 + - uid: 21714 + components: + - type: Transform + pos: 56.5,14.5 + parent: 21002 + - uid: 21716 + components: + - type: Transform + pos: 59.5,12.5 + parent: 21002 + - uid: 21718 + components: + - type: Transform + pos: 58.5,12.5 + parent: 21002 + - uid: 21720 + components: + - type: Transform + pos: 57.5,12.5 + parent: 21002 + - uid: 21722 + components: + - type: Transform + pos: 56.5,12.5 + parent: 21002 + - uid: 21724 + components: + - type: Transform + pos: 47.5,6.5 + parent: 21002 + - uid: 21725 + components: + - type: Transform + pos: 48.5,6.5 + parent: 21002 + - uid: 21726 + components: + - type: Transform + pos: 48.5,5.5 + parent: 21002 + - uid: 21727 + components: + - type: Transform + pos: 47.5,5.5 + parent: 21002 + - uid: 21728 + components: + - type: Transform + pos: 46.5,14.5 + parent: 21002 + - uid: 21729 + components: + - type: Transform + pos: 47.5,14.5 + parent: 21002 + - uid: 21730 + components: + - type: Transform + pos: 48.5,14.5 + parent: 21002 + - uid: 21731 + components: + - type: Transform + pos: 49.5,14.5 + parent: 21002 + - uid: 21732 + components: + - type: Transform + pos: 50.5,14.5 + parent: 21002 + - uid: 21733 + components: + - type: Transform + pos: 51.5,14.5 + parent: 21002 + - uid: 21734 + components: + - type: Transform + pos: 52.5,14.5 + parent: 21002 + - uid: 21736 + components: + - type: Transform + pos: 55.5,12.5 + parent: 21002 + - uid: 21737 + components: + - type: Transform + pos: 51.5,15.5 + parent: 21002 + - uid: 21738 + components: + - type: Transform + pos: 50.5,15.5 + parent: 21002 + - uid: 21739 + components: + - type: Transform + pos: 52.5,12.5 + parent: 21002 + - uid: 21740 + components: + - type: Transform + pos: 51.5,12.5 + parent: 21002 + - uid: 21741 + components: + - type: Transform + pos: 50.5,12.5 + parent: 21002 + - uid: 21743 + components: + - type: Transform + pos: 48.5,12.5 + parent: 21002 + - uid: 21744 + components: + - type: Transform + pos: 47.5,12.5 + parent: 21002 + - uid: 21745 + components: + - type: Transform + pos: 46.5,12.5 + parent: 21002 + - uid: 21747 + components: + - type: Transform + pos: 48.5,15.5 + parent: 21002 + - uid: 21748 + components: + - type: Transform + pos: 47.5,15.5 + parent: 21002 + - uid: 21749 + components: + - type: Transform + pos: 46.5,15.5 + parent: 21002 + - uid: 21750 + components: + - type: Transform + pos: 48.5,16.5 + parent: 21002 + - uid: 21751 + components: + - type: Transform + pos: 48.5,17.5 + parent: 21002 + - uid: 21752 + components: + - type: Transform + pos: 48.5,18.5 + parent: 21002 + - uid: 21753 + components: + - type: Transform + pos: 48.5,19.5 + parent: 21002 + - uid: 21754 + components: + - type: Transform + pos: 46.5,11.5 + parent: 21002 + - uid: 21755 + components: + - type: Transform + pos: 48.5,20.5 + parent: 21002 + - uid: 21756 + components: + - type: Transform + pos: 47.5,16.5 + parent: 21002 + - uid: 21757 + components: + - type: Transform + pos: 47.5,11.5 + parent: 21002 + - uid: 21758 + components: + - type: Transform + pos: 47.5,10.5 + parent: 21002 + - uid: 21759 + components: + - type: Transform + pos: 47.5,17.5 + parent: 21002 + - uid: 21760 + components: + - type: Transform + pos: 48.5,11.5 + parent: 21002 + - uid: 21761 + components: + - type: Transform + pos: 48.5,10.5 + parent: 21002 + - uid: 21763 + components: + - type: Transform + pos: 49.5,11.5 + parent: 21002 + - uid: 21764 + components: + - type: Transform + pos: 49.5,10.5 + parent: 21002 + - uid: 21765 + components: + - type: Transform + pos: 47.5,19.5 + parent: 21002 + - uid: 21766 + components: + - type: Transform + pos: 50.5,11.5 + parent: 21002 + - uid: 21767 + components: + - type: Transform + pos: 50.5,10.5 + parent: 21002 + - uid: 21768 + components: + - type: Transform + pos: 47.5,20.5 + parent: 21002 + - uid: 21769 + components: + - type: Transform + pos: 51.5,11.5 + parent: 21002 + - uid: 21770 + components: + - type: Transform + pos: 46.5,20.5 + parent: 21002 + - uid: 21771 + components: + - type: Transform + pos: 46.5,19.5 + parent: 21002 + - uid: 21772 + components: + - type: Transform + pos: 52.5,11.5 + parent: 21002 + - uid: 21775 + components: + - type: Transform + pos: 49.5,17.5 + parent: 21002 + - uid: 21776 + components: + - type: Transform + pos: 49.5,18.5 + parent: 21002 + - uid: 21777 + components: + - type: Transform + pos: 49.5,19.5 + parent: 21002 + - uid: 21778 + components: + - type: Transform + pos: 45.5,19.5 + parent: 21002 + - uid: 21779 + components: + - type: Transform + pos: 44.5,19.5 + parent: 21002 + - uid: 21780 + components: + - type: Transform + pos: 45.5,7.5 + parent: 21002 + - uid: 21781 + components: + - type: Transform + pos: 46.5,7.5 + parent: 21002 + - uid: 21782 + components: + - type: Transform + pos: 45.5,6.5 + parent: 21002 + - uid: 21783 + components: + - type: Transform + pos: 46.5,6.5 + parent: 21002 + - uid: 21784 + components: + - type: Transform + pos: 43.5,19.5 + parent: 21002 + - uid: 21785 + components: + - type: Transform + pos: 42.5,19.5 + parent: 21002 + - uid: 21788 + components: + - type: Transform + pos: 46.5,5.5 + parent: 21002 + - uid: 21789 + components: + - type: Transform + pos: 45.5,5.5 + parent: 21002 + - uid: 21790 + components: + - type: Transform + pos: 45.5,4.5 + parent: 21002 + - uid: 21791 + components: + - type: Transform + pos: 46.5,4.5 + parent: 21002 + - uid: 21792 + components: + - type: Transform + pos: 37.5,18.5 + parent: 21002 + - uid: 21793 + components: + - type: Transform + pos: 38.5,18.5 + parent: 21002 + - uid: 21794 + components: + - type: Transform + pos: 42.5,18.5 + parent: 21002 + - uid: 21795 + components: + - type: Transform + pos: 43.5,18.5 + parent: 21002 + - uid: 21796 + components: + - type: Transform + pos: 41.5,17.5 + parent: 21002 + - uid: 21797 + components: + - type: Transform + pos: 40.5,17.5 + parent: 21002 + - uid: 21798 + components: + - type: Transform + pos: 39.5,17.5 + parent: 21002 + - uid: 21799 + components: + - type: Transform + pos: 43.5,20.5 + parent: 21002 + - uid: 21800 + components: + - type: Transform + pos: 42.5,20.5 + parent: 21002 + - uid: 21801 + components: + - type: Transform + pos: 38.5,20.5 + parent: 21002 + - uid: 21803 + components: + - type: Transform + pos: 37.5,21.5 + parent: 21002 + - uid: 21804 + components: + - type: Transform + pos: 38.5,21.5 + parent: 21002 + - uid: 21811 + components: + - type: Transform + pos: 43.5,23.5 + parent: 21002 + - uid: 21812 + components: + - type: Transform + pos: 43.5,24.5 + parent: 21002 + - uid: 21813 + components: + - type: Transform + pos: 42.5,23.5 + parent: 21002 + - uid: 21814 + components: + - type: Transform + pos: 42.5,24.5 + parent: 21002 + - uid: 21815 + components: + - type: Transform + pos: 41.5,23.5 + parent: 21002 + - uid: 21817 + components: + - type: Transform + pos: 43.5,25.5 + parent: 21002 + - uid: 21818 + components: + - type: Transform + pos: 42.5,25.5 + parent: 21002 + - uid: 21819 + components: + - type: Transform + pos: 37.5,23.5 + parent: 21002 + - uid: 21820 + components: + - type: Transform + pos: 36.5,23.5 + parent: 21002 + - uid: 21823 + components: + - type: Transform + pos: 34.5,21.5 + parent: 21002 + - uid: 21824 + components: + - type: Transform + pos: 33.5,21.5 + parent: 21002 + - uid: 21825 + components: + - type: Transform + pos: 32.5,23.5 + parent: 21002 + - uid: 21826 + components: + - type: Transform + pos: 32.5,21.5 + parent: 21002 + - uid: 21827 + components: + - type: Transform + pos: 41.5,19.5 + parent: 21002 + - uid: 21828 + components: + - type: Transform + pos: 40.5,19.5 + parent: 21002 + - uid: 21829 + components: + - type: Transform + pos: 39.5,19.5 + parent: 21002 + - uid: 21830 + components: + - type: Transform + pos: 32.5,20.5 + parent: 21002 + - uid: 21831 + components: + - type: Transform + pos: 32.5,19.5 + parent: 21002 + - uid: 21832 + components: + - type: Transform + pos: 32.5,18.5 + parent: 21002 + - uid: 21834 + components: + - type: Transform + pos: 39.5,18.5 + parent: 21002 + - uid: 21835 + components: + - type: Transform + pos: 40.5,18.5 + parent: 21002 + - uid: 21836 + components: + - type: Transform + pos: 41.5,18.5 + parent: 21002 + - uid: 21837 + components: + - type: Transform + pos: 33.5,19.5 + parent: 21002 + - uid: 21844 + components: + - type: Transform + pos: 41.5,20.5 + parent: 21002 + - uid: 21848 + components: + - type: Transform + pos: 39.5,20.5 + parent: 21002 + - uid: 21852 + components: + - type: Transform + pos: 37.5,22.5 + parent: 21002 + - uid: 21854 + components: + - type: Transform + pos: 38.5,22.5 + parent: 21002 + - uid: 21855 + components: + - type: Transform + pos: 39.5,21.5 + parent: 21002 + - uid: 21856 + components: + - type: Transform + pos: 39.5,22.5 + parent: 21002 + - uid: 21857 + components: + - type: Transform + pos: 40.5,21.5 + parent: 21002 + - uid: 21858 + components: + - type: Transform + pos: 40.5,22.5 + parent: 21002 + - uid: 21859 + components: + - type: Transform + pos: 41.5,21.5 + parent: 21002 + - uid: 21860 + components: + - type: Transform + pos: 41.5,22.5 + parent: 21002 + - uid: 21878 + components: + - type: Transform + pos: 36.5,22.5 + parent: 21002 + - uid: 21879 + components: + - type: Transform + pos: 35.5,22.5 + parent: 21002 + - uid: 21880 + components: + - type: Transform + pos: 34.5,22.5 + parent: 21002 + - uid: 21885 + components: + - type: Transform + pos: 32.5,22.5 + parent: 21002 + - uid: 21890 + components: + - type: Transform + pos: 31.5,23.5 + parent: 21002 + - uid: 21891 + components: + - type: Transform + pos: 31.5,22.5 + parent: 21002 + - uid: 21892 + components: + - type: Transform + pos: 31.5,21.5 + parent: 21002 + - uid: 21893 + components: + - type: Transform + pos: 31.5,20.5 + parent: 21002 + - uid: 21894 + components: + - type: Transform + pos: 31.5,19.5 + parent: 21002 + - uid: 21896 + components: + - type: Transform + pos: 30.5,23.5 + parent: 21002 + - uid: 21897 + components: + - type: Transform + pos: 30.5,22.5 + parent: 21002 + - uid: 21898 + components: + - type: Transform + pos: 15.5,26.5 + parent: 21002 + - uid: 21899 + components: + - type: Transform + pos: 30.5,20.5 + parent: 21002 + - uid: 21900 + components: + - type: Transform + pos: 30.5,19.5 + parent: 21002 + - uid: 21909 + components: + - type: Transform + pos: 30.5,16.5 + parent: 21002 + - uid: 21916 + components: + - type: Transform + pos: 27.5,12.5 + parent: 21002 + - uid: 21917 + components: + - type: Transform + pos: 27.5,13.5 + parent: 21002 + - uid: 21918 + components: + - type: Transform + pos: 27.5,14.5 + parent: 21002 + - uid: 21920 + components: + - type: Transform + pos: 26.5,13.5 + parent: 21002 + - uid: 21921 + components: + - type: Transform + pos: 26.5,14.5 + parent: 21002 + - uid: 21922 + components: + - type: Transform + pos: 25.5,12.5 + parent: 21002 + - uid: 21923 + components: + - type: Transform + pos: 25.5,13.5 + parent: 21002 + - uid: 21924 + components: + - type: Transform + pos: 25.5,14.5 + parent: 21002 + - uid: 21925 + components: + - type: Transform + pos: 24.5,12.5 + parent: 21002 + - uid: 21926 + components: + - type: Transform + pos: 24.5,13.5 + parent: 21002 + - uid: 21927 + components: + - type: Transform + pos: 24.5,14.5 + parent: 21002 + - uid: 21928 + components: + - type: Transform + pos: 23.5,12.5 + parent: 21002 + - uid: 21929 + components: + - type: Transform + pos: 23.5,13.5 + parent: 21002 + - uid: 21934 + components: + - type: Transform + pos: 21.5,12.5 + parent: 21002 + - uid: 21936 + components: + - type: Transform + pos: 21.5,14.5 + parent: 21002 + - uid: 21939 + components: + - type: Transform + pos: 20.5,14.5 + parent: 21002 + - uid: 21941 + components: + - type: Transform + pos: 19.5,13.5 + parent: 21002 + - uid: 21942 + components: + - type: Transform + pos: 16.5,22.5 + parent: 21002 + - uid: 21943 + components: + - type: Transform + pos: 18.5,12.5 + parent: 21002 + - uid: 21944 + components: + - type: Transform + pos: 18.5,13.5 + parent: 21002 + - uid: 21945 + components: + - type: Transform + pos: 18.5,14.5 + parent: 21002 + - uid: 21946 + components: + - type: Transform + pos: 17.5,12.5 + parent: 21002 + - uid: 21947 + components: + - type: Transform + pos: 17.5,13.5 + parent: 21002 + - uid: 21948 + components: + - type: Transform + pos: 17.5,14.5 + parent: 21002 + - uid: 21949 + components: + - type: Transform + pos: 16.5,12.5 + parent: 21002 + - uid: 21950 + components: + - type: Transform + pos: 16.5,13.5 + parent: 21002 + - uid: 21951 + components: + - type: Transform + pos: 16.5,14.5 + parent: 21002 + - uid: 21954 + components: + - type: Transform + pos: 15.5,14.5 + parent: 21002 + - uid: 21955 + components: + - type: Transform + pos: 29.5,25.5 + parent: 21002 + - uid: 21957 + components: + - type: Transform + pos: 14.5,14.5 + parent: 21002 + - uid: 21959 + components: + - type: Transform + pos: 13.5,13.5 + parent: 21002 + - uid: 21960 + components: + - type: Transform + pos: 13.5,14.5 + parent: 21002 + - uid: 21961 + components: + - type: Transform + pos: 12.5,12.5 + parent: 21002 + - uid: 21962 + components: + - type: Transform + pos: 12.5,13.5 + parent: 21002 + - uid: 21963 + components: + - type: Transform + pos: 12.5,14.5 + parent: 21002 + - uid: 21964 + components: + - type: Transform + pos: 11.5,12.5 + parent: 21002 + - uid: 21965 + components: + - type: Transform + pos: 14.5,15.5 + parent: 21002 + - uid: 21966 + components: + - type: Transform + pos: 14.5,16.5 + parent: 21002 + - uid: 21967 + components: + - type: Transform + pos: 15.5,15.5 + parent: 21002 + - uid: 21968 + components: + - type: Transform + pos: 15.5,16.5 + parent: 21002 + - uid: 21969 + components: + - type: Transform + pos: 16.5,15.5 + parent: 21002 + - uid: 21970 + components: + - type: Transform + pos: 16.5,16.5 + parent: 21002 + - uid: 21971 + components: + - type: Transform + pos: 17.5,15.5 + parent: 21002 + - uid: 21972 + components: + - type: Transform + pos: 17.5,16.5 + parent: 21002 + - uid: 21973 + components: + - type: Transform + pos: 18.5,15.5 + parent: 21002 + - uid: 21974 + components: + - type: Transform + pos: 18.5,16.5 + parent: 21002 + - uid: 21975 + components: + - type: Transform + pos: 19.5,15.5 + parent: 21002 + - uid: 21976 + components: + - type: Transform + pos: 19.5,16.5 + parent: 21002 + - uid: 21977 + components: + - type: Transform + pos: 20.5,15.5 + parent: 21002 + - uid: 21978 + components: + - type: Transform + pos: 20.5,16.5 + parent: 21002 + - uid: 21980 + components: + - type: Transform + pos: 21.5,16.5 + parent: 21002 + - uid: 21981 + components: + - type: Transform + pos: 22.5,15.5 + parent: 21002 + - uid: 21984 + components: + - type: Transform + pos: 23.5,15.5 + parent: 21002 + - uid: 21985 + components: + - type: Transform + pos: 23.5,16.5 + parent: 21002 + - uid: 21986 + components: + - type: Transform + pos: 24.5,15.5 + parent: 21002 + - uid: 21987 + components: + - type: Transform + pos: 24.5,16.5 + parent: 21002 + - uid: 21988 + components: + - type: Transform + pos: 25.5,15.5 + parent: 21002 + - uid: 21989 + components: + - type: Transform + pos: 25.5,16.5 + parent: 21002 + - uid: 21990 + components: + - type: Transform + pos: 26.5,15.5 + parent: 21002 + - uid: 21991 + components: + - type: Transform + pos: 26.5,16.5 + parent: 21002 + - uid: 21992 + components: + - type: Transform + pos: 27.5,15.5 + parent: 21002 + - uid: 21993 + components: + - type: Transform + pos: 27.5,16.5 + parent: 21002 + - uid: 21997 + components: + - type: Transform + pos: 29.5,16.5 + parent: 21002 + - uid: 21998 + components: + - type: Transform + pos: 16.5,17.5 + parent: 21002 + - uid: 21999 + components: + - type: Transform + pos: 17.5,17.5 + parent: 21002 + - uid: 22000 + components: + - type: Transform + pos: 18.5,17.5 + parent: 21002 + - uid: 22001 + components: + - type: Transform + pos: 18.5,18.5 + parent: 21002 + - uid: 22002 + components: + - type: Transform + pos: 18.5,19.5 + parent: 21002 + - uid: 22003 + components: + - type: Transform + pos: 18.5,20.5 + parent: 21002 + - uid: 22004 + components: + - type: Transform + pos: 18.5,21.5 + parent: 21002 + - uid: 22005 + components: + - type: Transform + pos: 18.5,22.5 + parent: 21002 + - uid: 22008 + components: + - type: Transform + pos: 19.5,17.5 + parent: 21002 + - uid: 22009 + components: + - type: Transform + pos: 19.5,18.5 + parent: 21002 + - uid: 22010 + components: + - type: Transform + pos: 19.5,19.5 + parent: 21002 + - uid: 22011 + components: + - type: Transform + pos: 19.5,20.5 + parent: 21002 + - uid: 22012 + components: + - type: Transform + pos: 19.5,21.5 + parent: 21002 + - uid: 22013 + components: + - type: Transform + pos: 19.5,22.5 + parent: 21002 + - uid: 22016 + components: + - type: Transform + pos: 20.5,17.5 + parent: 21002 + - uid: 22017 + components: + - type: Transform + pos: 20.5,18.5 + parent: 21002 + - uid: 22018 + components: + - type: Transform + pos: 20.5,19.5 + parent: 21002 + - uid: 22024 + components: + - type: Transform + pos: 21.5,17.5 + parent: 21002 + - uid: 22025 + components: + - type: Transform + pos: 21.5,18.5 + parent: 21002 + - uid: 22028 + components: + - type: Transform + pos: 21.5,21.5 + parent: 21002 + - uid: 22029 + components: + - type: Transform + pos: 21.5,22.5 + parent: 21002 + - uid: 22030 + components: + - type: Transform + pos: 21.5,23.5 + parent: 21002 + - uid: 22032 + components: + - type: Transform + pos: 22.5,17.5 + parent: 21002 + - uid: 22034 + components: + - type: Transform + pos: 22.5,19.5 + parent: 21002 + - uid: 22037 + components: + - type: Transform + pos: 22.5,22.5 + parent: 21002 + - uid: 22038 + components: + - type: Transform + pos: 22.5,23.5 + parent: 21002 + - uid: 22040 + components: + - type: Transform + pos: 23.5,17.5 + parent: 21002 + - uid: 22042 + components: + - type: Transform + pos: 23.5,19.5 + parent: 21002 + - uid: 22044 + components: + - type: Transform + pos: 23.5,21.5 + parent: 21002 + - uid: 22045 + components: + - type: Transform + pos: 23.5,22.5 + parent: 21002 + - uid: 22056 + components: + - type: Transform + pos: 25.5,17.5 + parent: 21002 + - uid: 22057 + components: + - type: Transform + pos: 25.5,18.5 + parent: 21002 + - uid: 22058 + components: + - type: Transform + pos: 25.5,19.5 + parent: 21002 + - uid: 22060 + components: + - type: Transform + pos: 25.5,21.5 + parent: 21002 + - uid: 22065 + components: + - type: Transform + pos: 26.5,18.5 + parent: 21002 + - uid: 22066 + components: + - type: Transform + pos: 26.5,19.5 + parent: 21002 + - uid: 22068 + components: + - type: Transform + pos: 26.5,21.5 + parent: 21002 + - uid: 22069 + components: + - type: Transform + pos: 26.5,22.5 + parent: 21002 + - uid: 22070 + components: + - type: Transform + pos: 26.5,23.5 + parent: 21002 + - uid: 22072 + components: + - type: Transform + pos: 27.5,17.5 + parent: 21002 + - uid: 22073 + components: + - type: Transform + pos: 27.5,18.5 + parent: 21002 + - uid: 22074 + components: + - type: Transform + pos: 27.5,19.5 + parent: 21002 + - uid: 22076 + components: + - type: Transform + pos: 27.5,21.5 + parent: 21002 + - uid: 22077 + components: + - type: Transform + pos: 27.5,22.5 + parent: 21002 + - uid: 22078 + components: + - type: Transform + pos: 27.5,23.5 + parent: 21002 + - uid: 22084 + components: + - type: Transform + pos: 28.5,21.5 + parent: 21002 + - uid: 22085 + components: + - type: Transform + pos: 28.5,22.5 + parent: 21002 + - uid: 22086 + components: + - type: Transform + pos: 28.5,23.5 + parent: 21002 + - uid: 22088 + components: + - type: Transform + pos: 29.5,17.5 + parent: 21002 + - uid: 22089 + components: + - type: Transform + pos: 29.5,18.5 + parent: 21002 + - uid: 22090 + components: + - type: Transform + pos: 29.5,19.5 + parent: 21002 + - uid: 22091 + components: + - type: Transform + pos: 29.5,20.5 + parent: 21002 + - uid: 22092 + components: + - type: Transform + pos: 29.5,21.5 + parent: 21002 + - uid: 22093 + components: + - type: Transform + pos: 29.5,22.5 + parent: 21002 + - uid: 22094 + components: + - type: Transform + pos: 29.5,23.5 + parent: 21002 + - uid: 22097 + components: + - type: Transform + pos: 28.5,25.5 + parent: 21002 + - uid: 22098 + components: + - type: Transform + pos: 27.5,25.5 + parent: 21002 + - uid: 22102 + components: + - type: Transform + pos: 23.5,25.5 + parent: 21002 + - uid: 22103 + components: + - type: Transform + pos: 22.5,25.5 + parent: 21002 + - uid: 22104 + components: + - type: Transform + pos: 21.5,25.5 + parent: 21002 + - uid: 22105 + components: + - type: Transform + pos: 20.5,25.5 + parent: 21002 + - uid: 22106 + components: + - type: Transform + pos: 19.5,25.5 + parent: 21002 + - uid: 22107 + components: + - type: Transform + pos: 20.5,26.5 + parent: 21002 + - uid: 22108 + components: + - type: Transform + pos: 23.5,26.5 + parent: 21002 + - uid: 22109 + components: + - type: Transform + pos: 24.5,26.5 + parent: 21002 + - uid: 22111 + components: + - type: Transform + pos: 26.5,26.5 + parent: 21002 + - uid: 22112 + components: + - type: Transform + pos: 27.5,26.5 + parent: 21002 + - uid: 22113 + components: + - type: Transform + pos: 26.5,27.5 + parent: 21002 + - uid: 22114 + components: + - type: Transform + pos: 26.5,28.5 + parent: 21002 + - uid: 22117 + components: + - type: Transform + pos: 24.5,27.5 + parent: 21002 + - uid: 22118 + components: + - type: Transform + pos: 24.5,28.5 + parent: 21002 + - uid: 22119 + components: + - type: Transform + pos: 23.5,28.5 + parent: 21002 + - uid: 22121 + components: + - type: Transform + pos: 25.5,30.5 + parent: 21002 + - uid: 22122 + components: + - type: Transform + pos: 25.5,31.5 + parent: 21002 + - uid: 22123 + components: + - type: Transform + pos: 25.5,32.5 + parent: 21002 + - uid: 22124 + components: + - type: Transform + pos: 25.5,33.5 + parent: 21002 + - uid: 22125 + components: + - type: Transform + pos: 25.5,34.5 + parent: 21002 + - uid: 22126 + components: + - type: Transform + pos: 25.5,35.5 + parent: 21002 + - uid: 22127 + components: + - type: Transform + pos: 25.5,36.5 + parent: 21002 + - uid: 22128 + components: + - type: Transform + pos: 25.5,37.5 + parent: 21002 + - uid: 22134 + components: + - type: Transform + pos: 25.5,43.5 + parent: 21002 + - uid: 22135 + components: + - type: Transform + pos: 24.5,29.5 + parent: 21002 + - uid: 22136 + components: + - type: Transform + pos: 24.5,30.5 + parent: 21002 + - uid: 22137 + components: + - type: Transform + pos: 24.5,31.5 + parent: 21002 + - uid: 22138 + components: + - type: Transform + pos: 24.5,32.5 + parent: 21002 + - uid: 22142 + components: + - type: Transform + pos: 24.5,36.5 + parent: 21002 + - uid: 22149 + components: + - type: Transform + pos: 24.5,41.5 + parent: 21002 + - uid: 22150 + components: + - type: Transform + pos: 24.5,42.5 + parent: 21002 + - uid: 22151 + components: + - type: Transform + pos: 24.5,43.5 + parent: 21002 + - uid: 22152 + components: + - type: Transform + pos: 26.5,44.5 + parent: 21002 + - uid: 22153 + components: + - type: Transform + pos: 26.5,43.5 + parent: 21002 + - uid: 22160 + components: + - type: Transform + pos: 26.5,36.5 + parent: 21002 + - uid: 22161 + components: + - type: Transform + pos: 26.5,35.5 + parent: 21002 + - uid: 22162 + components: + - type: Transform + pos: 27.5,36.5 + parent: 21002 + - uid: 22163 + components: + - type: Transform + pos: 27.5,37.5 + parent: 21002 + - uid: 22169 + components: + - type: Transform + pos: 27.5,43.5 + parent: 21002 + - uid: 22170 + components: + - type: Transform + pos: 28.5,43.5 + parent: 21002 + - uid: 22171 + components: + - type: Transform + pos: 28.5,42.5 + parent: 21002 + - uid: 22172 + components: + - type: Transform + pos: 28.5,41.5 + parent: 21002 + - uid: 22173 + components: + - type: Transform + pos: 28.5,40.5 + parent: 21002 + - uid: 22174 + components: + - type: Transform + pos: 28.5,39.5 + parent: 21002 + - uid: 22175 + components: + - type: Transform + pos: 28.5,38.5 + parent: 21002 + - uid: 22176 + components: + - type: Transform + pos: 29.5,40.5 + parent: 21002 + - uid: 22177 + components: + - type: Transform + pos: 29.5,41.5 + parent: 21002 + - uid: 22178 + components: + - type: Transform + pos: 26.5,32.5 + parent: 21002 + - uid: 22179 + components: + - type: Transform + pos: 26.5,31.5 + parent: 21002 + - uid: 22180 + components: + - type: Transform + pos: 26.5,30.5 + parent: 21002 + - uid: 22181 + components: + - type: Transform + pos: 23.5,31.5 + parent: 21002 + - uid: 22182 + components: + - type: Transform + pos: 23.5,32.5 + parent: 21002 + - uid: 22183 + components: + - type: Transform + pos: 23.5,33.5 + parent: 21002 + - uid: 22184 + components: + - type: Transform + pos: 23.5,34.5 + parent: 21002 + - uid: 22185 + components: + - type: Transform + pos: 23.5,35.5 + parent: 21002 + - uid: 22186 + components: + - type: Transform + pos: 23.5,36.5 + parent: 21002 + - uid: 22187 + components: + - type: Transform + pos: 23.5,37.5 + parent: 21002 + - uid: 22191 + components: + - type: Transform + pos: 23.5,41.5 + parent: 21002 + - uid: 22192 + components: + - type: Transform + pos: 21.5,41.5 + parent: 21002 + - uid: 22193 + components: + - type: Transform + pos: 21.5,40.5 + parent: 21002 + - uid: 22194 + components: + - type: Transform + pos: 21.5,39.5 + parent: 21002 + - uid: 22207 + components: + - type: Transform + pos: 21.5,33.5 + parent: 21002 + - uid: 22208 + components: + - type: Transform + pos: 22.5,41.5 + parent: 21002 + - uid: 22209 + components: + - type: Transform + pos: 22.5,40.5 + parent: 21002 + - uid: 22213 + components: + - type: Transform + pos: 22.5,36.5 + parent: 21002 + - uid: 22214 + components: + - type: Transform + pos: 22.5,35.5 + parent: 21002 + - uid: 22216 + components: + - type: Transform + pos: 22.5,33.5 + parent: 21002 + - uid: 22217 + components: + - type: Transform + pos: 20.5,32.5 + parent: 21002 + - uid: 22218 + components: + - type: Transform + pos: 20.5,33.5 + parent: 21002 + - uid: 22219 + components: + - type: Transform + pos: 20.5,34.5 + parent: 21002 + - uid: 22220 + components: + - type: Transform + pos: 20.5,35.5 + parent: 21002 + - uid: 22221 + components: + - type: Transform + pos: 20.5,36.5 + parent: 21002 + - uid: 22224 + components: + - type: Transform + pos: 20.5,39.5 + parent: 21002 + - uid: 22225 + components: + - type: Transform + pos: 19.5,38.5 + parent: 21002 + - uid: 22226 + components: + - type: Transform + pos: 19.5,37.5 + parent: 21002 + - uid: 22227 + components: + - type: Transform + pos: 19.5,36.5 + parent: 21002 + - uid: 22228 + components: + - type: Transform + pos: 19.5,35.5 + parent: 21002 + - uid: 22229 + components: + - type: Transform + pos: 19.5,34.5 + parent: 21002 + - uid: 22230 + components: + - type: Transform + pos: 19.5,33.5 + parent: 21002 + - uid: 22231 + components: + - type: Transform + pos: 18.5,34.5 + parent: 21002 + - uid: 22232 + components: + - type: Transform + pos: 18.5,35.5 + parent: 21002 + - uid: 22233 + components: + - type: Transform + pos: 18.5,36.5 + parent: 21002 + - uid: 22234 + components: + - type: Transform + pos: 17.5,25.5 + parent: 21002 + - uid: 22237 + components: + - type: Transform + pos: 17.5,22.5 + parent: 21002 + - uid: 22240 + components: + - type: Transform + pos: 16.5,25.5 + parent: 21002 + - uid: 22243 + components: + - type: Transform + pos: 15.5,25.5 + parent: 21002 + - uid: 22244 + components: + - type: Transform + pos: 14.5,23.5 + parent: 21002 + - uid: 22245 + components: + - type: Transform + pos: 14.5,24.5 + parent: 21002 + - uid: 22248 + components: + - type: Transform + pos: 13.5,23.5 + parent: 21002 + - uid: 22249 + components: + - type: Transform + pos: 13.5,24.5 + parent: 21002 + - uid: 22250 + components: + - type: Transform + pos: 13.5,25.5 + parent: 21002 + - uid: 22251 + components: + - type: Transform + pos: 14.5,22.5 + parent: 21002 + - uid: 22252 + components: + - type: Transform + pos: 15.5,22.5 + parent: 21002 + - uid: 22253 + components: + - type: Transform + pos: 14.5,26.5 + parent: 21002 + - uid: 22254 + components: + - type: Transform + pos: 13.5,26.5 + parent: 21002 + - uid: 22255 + components: + - type: Transform + pos: 12.5,26.5 + parent: 21002 + - uid: 22256 + components: + - type: Transform + pos: 11.5,26.5 + parent: 21002 + - uid: 22257 + components: + - type: Transform + pos: 10.5,26.5 + parent: 21002 + - uid: 22258 + components: + - type: Transform + pos: 9.5,26.5 + parent: 21002 + - uid: 22259 + components: + - type: Transform + pos: 8.5,26.5 + parent: 21002 + - uid: 22265 + components: + - type: Transform + pos: 2.5,26.5 + parent: 21002 + - uid: 22271 + components: + - type: Transform + pos: 1.5,25.5 + parent: 21002 + - uid: 22272 + components: + - type: Transform + pos: 2.5,25.5 + parent: 21002 + - uid: 22273 + components: + - type: Transform + pos: 3.5,25.5 + parent: 21002 + - uid: 22275 + components: + - type: Transform + pos: 5.5,25.5 + parent: 21002 + - uid: 22277 + components: + - type: Transform + pos: 7.5,25.5 + parent: 21002 + - uid: 22283 + components: + - type: Transform + pos: 12.5,24.5 + parent: 21002 + - uid: 22284 + components: + - type: Transform + pos: 11.5,24.5 + parent: 21002 + - uid: 22285 + components: + - type: Transform + pos: 10.5,24.5 + parent: 21002 + - uid: 22286 + components: + - type: Transform + pos: 9.5,24.5 + parent: 21002 + - uid: 22287 + components: + - type: Transform + pos: 8.5,24.5 + parent: 21002 + - uid: 22290 + components: + - type: Transform + pos: 5.5,24.5 + parent: 21002 + - uid: 22291 + components: + - type: Transform + pos: 4.5,24.5 + parent: 21002 + - uid: 22292 + components: + - type: Transform + pos: 3.5,24.5 + parent: 21002 + - uid: 22293 + components: + - type: Transform + pos: 2.5,24.5 + parent: 21002 + - uid: 22294 + components: + - type: Transform + pos: 1.5,24.5 + parent: 21002 + - uid: 22296 + components: + - type: Transform + pos: 2.5,23.5 + parent: 21002 + - uid: 22297 + components: + - type: Transform + pos: 2.5,22.5 + parent: 21002 + - uid: 22298 + components: + - type: Transform + pos: 3.5,23.5 + parent: 21002 + - uid: 22299 + components: + - type: Transform + pos: 3.5,22.5 + parent: 21002 + - uid: 22300 + components: + - type: Transform + pos: 4.5,23.5 + parent: 21002 + - uid: 22301 + components: + - type: Transform + pos: 4.5,22.5 + parent: 21002 + - uid: 22302 + components: + - type: Transform + pos: 5.5,23.5 + parent: 21002 + - uid: 22303 + components: + - type: Transform + pos: 5.5,22.5 + parent: 21002 + - uid: 22304 + components: + - type: Transform + pos: 6.5,23.5 + parent: 21002 + - uid: 22305 + components: + - type: Transform + pos: 6.5,22.5 + parent: 21002 + - uid: 22306 + components: + - type: Transform + pos: 7.5,23.5 + parent: 21002 + - uid: 22307 + components: + - type: Transform + pos: 7.5,22.5 + parent: 21002 + - uid: 22308 + components: + - type: Transform + pos: 8.5,23.5 + parent: 21002 + - uid: 22309 + components: + - type: Transform + pos: 8.5,22.5 + parent: 21002 + - uid: 22310 + components: + - type: Transform + pos: 9.5,23.5 + parent: 21002 + - uid: 22311 + components: + - type: Transform + pos: 6.5,21.5 + parent: 21002 + - uid: 22312 + components: + - type: Transform + pos: 5.5,21.5 + parent: 21002 + - uid: 22313 + components: + - type: Transform + pos: 4.5,21.5 + parent: 21002 + - uid: 22314 + components: + - type: Transform + pos: 9.5,27.5 + parent: 21002 + - uid: 22315 + components: + - type: Transform + pos: 8.5,27.5 + parent: 21002 + - uid: 22321 + components: + - type: Transform + pos: 2.5,27.5 + parent: 21002 + - uid: 22322 + components: + - type: Transform + pos: 1.5,27.5 + parent: 21002 + - uid: 22326 + components: + - type: Transform + pos: 1.5,28.5 + parent: 21002 + - uid: 22327 + components: + - type: Transform + pos: 2.5,28.5 + parent: 21002 + - uid: 22333 + components: + - type: Transform + pos: 6.5,28.5 + parent: 21002 + - uid: 22334 + components: + - type: Transform + pos: 7.5,28.5 + parent: 21002 + - uid: 22335 + components: + - type: Transform + pos: 8.5,28.5 + parent: 21002 + - uid: 22336 + components: + - type: Transform + pos: 7.5,29.5 + parent: 21002 + - uid: 22337 + components: + - type: Transform + pos: 6.5,29.5 + parent: 21002 + - uid: 22338 + components: + - type: Transform + pos: 5.5,29.5 + parent: 21002 + - uid: 22341 + components: + - type: Transform + pos: 2.5,29.5 + parent: 21002 + - uid: 22342 + components: + - type: Transform + pos: 1.5,29.5 + parent: 21002 + - uid: 22343 + components: + - type: Transform + pos: 0.5,29.5 + parent: 21002 + - uid: 22344 + components: + - type: Transform + pos: -0.5,29.5 + parent: 21002 + - uid: 22345 + components: + - type: Transform + pos: -1.5,30.5 + parent: 21002 + - uid: 22346 + components: + - type: Transform + pos: -0.5,30.5 + parent: 21002 + - uid: 22347 + components: + - type: Transform + pos: 0.5,30.5 + parent: 21002 + - uid: 22348 + components: + - type: Transform + pos: 1.5,30.5 + parent: 21002 + - uid: 22349 + components: + - type: Transform + pos: 2.5,30.5 + parent: 21002 + - uid: 22352 + components: + - type: Transform + pos: 5.5,30.5 + parent: 21002 + - uid: 22353 + components: + - type: Transform + pos: 6.5,30.5 + parent: 21002 + - uid: 22354 + components: + - type: Transform + pos: 7.5,30.5 + parent: 21002 + - uid: 22355 + components: + - type: Transform + pos: 8.5,30.5 + parent: 21002 + - uid: 22356 + components: + - type: Transform + pos: 7.5,31.5 + parent: 21002 + - uid: 22357 + components: + - type: Transform + pos: 6.5,31.5 + parent: 21002 + - uid: 22358 + components: + - type: Transform + pos: 5.5,31.5 + parent: 21002 + - uid: 22360 + components: + - type: Transform + pos: 3.5,31.5 + parent: 21002 + - uid: 22366 + components: + - type: Transform + pos: 1.5,31.5 + parent: 21002 + - uid: 22368 + components: + - type: Transform + pos: -0.5,31.5 + parent: 21002 + - uid: 22369 + components: + - type: Transform + pos: -1.5,31.5 + parent: 21002 + - uid: 22370 + components: + - type: Transform + pos: -1.5,32.5 + parent: 21002 + - uid: 22371 + components: + - type: Transform + pos: -0.5,32.5 + parent: 21002 + - uid: 22378 + components: + - type: Transform + pos: 6.5,32.5 + parent: 21002 + - uid: 22379 + components: + - type: Transform + pos: 6.5,33.5 + parent: 21002 + - uid: 22380 + components: + - type: Transform + pos: 5.5,33.5 + parent: 21002 + - uid: 22385 + components: + - type: Transform + pos: 0.5,33.5 + parent: 21002 + - uid: 22386 + components: + - type: Transform + pos: -0.5,33.5 + parent: 21002 + - uid: 22387 + components: + - type: Transform + pos: 0.5,34.5 + parent: 21002 + - uid: 22388 + components: + - type: Transform + pos: 1.5,34.5 + parent: 21002 + - uid: 22389 + components: + - type: Transform + pos: 2.5,34.5 + parent: 21002 + - uid: 22390 + components: + - type: Transform + pos: 3.5,34.5 + parent: 21002 + - uid: 22391 + components: + - type: Transform + pos: 4.5,34.5 + parent: 21002 + - uid: 22392 + components: + - type: Transform + pos: 5.5,34.5 + parent: 21002 + - uid: 22393 + components: + - type: Transform + pos: 3.5,35.5 + parent: 21002 + - uid: 22394 + components: + - type: Transform + pos: 2.5,35.5 + parent: 21002 + - uid: 22395 + components: + - type: Transform + pos: 12.5,27.5 + parent: 21002 + - uid: 22396 + components: + - type: Transform + pos: 26.5,29.5 + parent: 21002 + - uid: 22397 + components: + - type: Transform + pos: 15.5,21.5 + parent: 21002 + - uid: 22570 + components: + - type: Transform + pos: 22.5,10.5 + parent: 21002 + - uid: 22877 + components: + - type: Transform + pos: 9.5,11.5 + parent: 21002 + - uid: 22879 + components: + - type: Transform + pos: 8.5,11.5 + parent: 21002 + - uid: 23824 + components: + - type: Transform + pos: 22.5,52.5 + parent: 2 + - uid: 23825 + components: + - type: Transform + pos: 22.5,53.5 + parent: 2 + - uid: 23826 + components: + - type: Transform + pos: 23.5,54.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + pos: 54.5,12.5 + parent: 21002 + - uid: 24307 + components: + - type: Transform + pos: 54.5,13.5 + parent: 21002 + - uid: 25348 + components: + - type: Transform + pos: 91.5,-10.5 + parent: 21002 + - uid: 25416 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 21002 + - uid: 25425 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 21002 + - uid: 25476 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 21002 + - uid: 25477 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 21002 + - uid: 25478 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 21002 + - uid: 25479 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 21002 + - uid: 25480 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 21002 + - uid: 25481 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 21002 + - uid: 25482 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 21002 + - uid: 25483 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 21002 + - uid: 25484 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 21002 + - uid: 25485 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 21002 + - uid: 25486 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 21002 + - uid: 25487 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 21002 + - uid: 25488 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 21002 + - uid: 25489 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 21002 + - uid: 25490 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 21002 + - uid: 25491 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 21002 + - uid: 25492 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 21002 + - uid: 25493 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 21002 + - uid: 25494 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 21002 + - uid: 25495 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 21002 + - uid: 25496 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 21002 + - uid: 25497 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 21002 + - uid: 25498 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 21002 + - uid: 25499 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 21002 + - uid: 25500 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 21002 + - uid: 25501 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 21002 + - uid: 25503 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 21002 + - uid: 25504 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 21002 + - uid: 25505 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 21002 + - uid: 25506 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 21002 + - uid: 25507 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 21002 + - uid: 25509 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 21002 + - uid: 25510 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 21002 + - uid: 25511 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 21002 + - uid: 25512 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 21002 + - uid: 25513 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 21002 + - uid: 25514 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 21002 + - uid: 25515 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 21002 + - uid: 25521 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 21002 + - uid: 25522 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 21002 + - uid: 25523 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 21002 + - uid: 25525 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 21002 + - uid: 25526 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 21002 + - uid: 25527 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 21002 + - uid: 25532 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 21002 + - uid: 25533 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 21002 + - uid: 25536 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 21002 + - uid: 25540 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 21002 + - uid: 25541 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 21002 + - uid: 25542 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 21002 + - uid: 25543 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 21002 + - uid: 25544 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 21002 + - uid: 25546 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 21002 + - uid: 25548 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 21002 + - uid: 25549 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 21002 + - uid: 25550 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 21002 + - uid: 25551 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 21002 + - uid: 25552 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 21002 + - uid: 25553 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 21002 + - uid: 25569 + components: + - type: Transform + pos: 22.5,16.5 + parent: 21002 + - uid: 25574 + components: + - type: Transform + pos: 41.5,37.5 + parent: 21002 + - uid: 25575 + components: + - type: Transform + pos: 45.5,37.5 + parent: 21002 + - uid: 25576 + components: + - type: Transform + pos: 40.5,36.5 + parent: 21002 + - uid: 25577 + components: + - type: Transform + pos: 41.5,36.5 + parent: 21002 + - uid: 25578 + components: + - type: Transform + pos: 42.5,36.5 + parent: 21002 + - uid: 25580 + components: + - type: Transform + pos: 44.5,36.5 + parent: 21002 + - uid: 25581 + components: + - type: Transform + pos: 45.5,36.5 + parent: 21002 + - uid: 25582 + components: + - type: Transform + pos: 47.5,34.5 + parent: 21002 + - uid: 25583 + components: + - type: Transform + pos: 46.5,34.5 + parent: 21002 + - uid: 25584 + components: + - type: Transform + pos: 45.5,34.5 + parent: 21002 + - uid: 25585 + components: + - type: Transform + pos: 44.5,34.5 + parent: 21002 + - uid: 25586 + components: + - type: Transform + pos: 43.5,34.5 + parent: 21002 + - uid: 25587 + components: + - type: Transform + pos: 42.5,34.5 + parent: 21002 + - uid: 25589 + components: + - type: Transform + pos: 40.5,34.5 + parent: 21002 + - uid: 25590 + components: + - type: Transform + pos: 39.5,34.5 + parent: 21002 + - uid: 25591 + components: + - type: Transform + pos: 40.5,35.5 + parent: 21002 + - uid: 25592 + components: + - type: Transform + pos: 41.5,35.5 + parent: 21002 + - uid: 25593 + components: + - type: Transform + pos: 42.5,35.5 + parent: 21002 + - uid: 25594 + components: + - type: Transform + pos: 43.5,35.5 + parent: 21002 + - uid: 25595 + components: + - type: Transform + pos: 44.5,35.5 + parent: 21002 + - uid: 25596 + components: + - type: Transform + pos: 45.5,35.5 + parent: 21002 + - uid: 25597 + components: + - type: Transform + pos: 39.5,33.5 + parent: 21002 + - uid: 25598 + components: + - type: Transform + pos: 39.5,32.5 + parent: 21002 + - uid: 25599 + components: + - type: Transform + pos: 39.5,31.5 + parent: 21002 + - uid: 25600 + components: + - type: Transform + pos: 39.5,30.5 + parent: 21002 + - uid: 25601 + components: + - type: Transform + pos: 39.5,29.5 + parent: 21002 + - uid: 25603 + components: + - type: Transform + pos: 39.5,27.5 + parent: 21002 + - uid: 25605 + components: + - type: Transform + pos: 40.5,33.5 + parent: 21002 + - uid: 25606 + components: + - type: Transform + pos: 40.5,32.5 + parent: 21002 + - uid: 25607 + components: + - type: Transform + pos: 40.5,31.5 + parent: 21002 + - uid: 25608 + components: + - type: Transform + pos: 40.5,30.5 + parent: 21002 + - uid: 25609 + components: + - type: Transform + pos: 40.5,29.5 + parent: 21002 + - uid: 25611 + components: + - type: Transform + pos: 40.5,27.5 + parent: 21002 + - uid: 25619 + components: + - type: Transform + pos: 41.5,27.5 + parent: 21002 + - uid: 25620 + components: + - type: Transform + pos: 41.5,26.5 + parent: 21002 + - uid: 25621 + components: + - type: Transform + pos: 42.5,33.5 + parent: 21002 + - uid: 25622 + components: + - type: Transform + pos: 42.5,32.5 + parent: 21002 + - uid: 25623 + components: + - type: Transform + pos: 42.5,31.5 + parent: 21002 + - uid: 25624 + components: + - type: Transform + pos: 42.5,30.5 + parent: 21002 + - uid: 25625 + components: + - type: Transform + pos: 42.5,29.5 + parent: 21002 + - uid: 25627 + components: + - type: Transform + pos: 42.5,27.5 + parent: 21002 + - uid: 25628 + components: + - type: Transform + pos: 42.5,26.5 + parent: 21002 + - uid: 25629 + components: + - type: Transform + pos: 43.5,33.5 + parent: 21002 + - uid: 25631 + components: + - type: Transform + pos: 43.5,31.5 + parent: 21002 + - uid: 25632 + components: + - type: Transform + pos: 43.5,30.5 + parent: 21002 + - uid: 25633 + components: + - type: Transform + pos: 43.5,29.5 + parent: 21002 + - uid: 25634 + components: + - type: Transform + pos: 43.5,28.5 + parent: 21002 + - uid: 25635 + components: + - type: Transform + pos: 43.5,27.5 + parent: 21002 + - uid: 25636 + components: + - type: Transform + pos: 43.5,26.5 + parent: 21002 + - uid: 25639 + components: + - type: Transform + pos: 44.5,31.5 + parent: 21002 + - uid: 25640 + components: + - type: Transform + pos: 44.5,30.5 + parent: 21002 + - uid: 25641 + components: + - type: Transform + pos: 44.5,29.5 + parent: 21002 + - uid: 25642 + components: + - type: Transform + pos: 44.5,28.5 + parent: 21002 + - uid: 25644 + components: + - type: Transform + pos: 44.5,26.5 + parent: 21002 + - uid: 25645 + components: + - type: Transform + pos: 45.5,33.5 + parent: 21002 + - uid: 25646 + components: + - type: Transform + pos: 45.5,32.5 + parent: 21002 + - uid: 25647 + components: + - type: Transform + pos: 45.5,31.5 + parent: 21002 + - uid: 25648 + components: + - type: Transform + pos: 45.5,30.5 + parent: 21002 + - uid: 25650 + components: + - type: Transform + pos: 45.5,28.5 + parent: 21002 + - uid: 25651 + components: + - type: Transform + pos: 45.5,27.5 + parent: 21002 + - uid: 25652 + components: + - type: Transform + pos: 45.5,26.5 + parent: 21002 + - uid: 25653 + components: + - type: Transform + pos: 46.5,33.5 + parent: 21002 + - uid: 25654 + components: + - type: Transform + pos: 46.5,32.5 + parent: 21002 + - uid: 25656 + components: + - type: Transform + pos: 46.5,30.5 + parent: 21002 + - uid: 25657 + components: + - type: Transform + pos: 46.5,29.5 + parent: 21002 + - uid: 25658 + components: + - type: Transform + pos: 46.5,28.5 + parent: 21002 + - uid: 25659 + components: + - type: Transform + pos: 46.5,27.5 + parent: 21002 + - uid: 25660 + components: + - type: Transform + pos: 46.5,26.5 + parent: 21002 + - uid: 25661 + components: + - type: Transform + pos: 47.5,33.5 + parent: 21002 + - uid: 25662 + components: + - type: Transform + pos: 47.5,32.5 + parent: 21002 + - uid: 25665 + components: + - type: Transform + pos: 47.5,29.5 + parent: 21002 + - uid: 25666 + components: + - type: Transform + pos: 47.5,28.5 + parent: 21002 + - uid: 25667 + components: + - type: Transform + pos: 47.5,27.5 + parent: 21002 + - uid: 25668 + components: + - type: Transform + pos: 47.5,26.5 + parent: 21002 + - uid: 25669 + components: + - type: Transform + pos: 48.5,33.5 + parent: 21002 + - uid: 25670 + components: + - type: Transform + pos: 48.5,32.5 + parent: 21002 + - uid: 25672 + components: + - type: Transform + pos: 48.5,30.5 + parent: 21002 + - uid: 25673 + components: + - type: Transform + pos: 48.5,29.5 + parent: 21002 + - uid: 25674 + components: + - type: Transform + pos: 48.5,28.5 + parent: 21002 + - uid: 25675 + components: + - type: Transform + pos: 48.5,27.5 + parent: 21002 + - uid: 25676 + components: + - type: Transform + pos: 48.5,26.5 + parent: 21002 + - uid: 25677 + components: + - type: Transform + pos: 49.5,33.5 + parent: 21002 + - uid: 25680 + components: + - type: Transform + pos: 49.5,30.5 + parent: 21002 + - uid: 25681 + components: + - type: Transform + pos: 49.5,29.5 + parent: 21002 + - uid: 25682 + components: + - type: Transform + pos: 49.5,28.5 + parent: 21002 + - uid: 25683 + components: + - type: Transform + pos: 49.5,27.5 + parent: 21002 + - uid: 25684 + components: + - type: Transform + pos: 49.5,26.5 + parent: 21002 + - uid: 25685 + components: + - type: Transform + pos: 50.5,33.5 + parent: 21002 + - uid: 25688 + components: + - type: Transform + pos: 50.5,30.5 + parent: 21002 + - uid: 25689 + components: + - type: Transform + pos: 50.5,29.5 + parent: 21002 + - uid: 25691 + components: + - type: Transform + pos: 50.5,27.5 + parent: 21002 + - uid: 25692 + components: + - type: Transform + pos: 50.5,26.5 + parent: 21002 + - uid: 25693 + components: + - type: Transform + pos: 51.5,33.5 + parent: 21002 + - uid: 25694 + components: + - type: Transform + pos: 51.5,32.5 + parent: 21002 + - uid: 25696 + components: + - type: Transform + pos: 51.5,30.5 + parent: 21002 + - uid: 25697 + components: + - type: Transform + pos: 51.5,29.5 + parent: 21002 + - uid: 25698 + components: + - type: Transform + pos: 51.5,28.5 + parent: 21002 + - uid: 25700 + components: + - type: Transform + pos: 51.5,26.5 + parent: 21002 + - uid: 25701 + components: + - type: Transform + pos: 52.5,33.5 + parent: 21002 + - uid: 25702 + components: + - type: Transform + pos: 52.5,32.5 + parent: 21002 + - uid: 25703 + components: + - type: Transform + pos: 52.5,31.5 + parent: 21002 + - uid: 25707 + components: + - type: Transform + pos: 52.5,27.5 + parent: 21002 + - uid: 25708 + components: + - type: Transform + pos: 52.5,26.5 + parent: 21002 + - uid: 25709 + components: + - type: Transform + pos: 53.5,33.5 + parent: 21002 + - uid: 25710 + components: + - type: Transform + pos: 53.5,32.5 + parent: 21002 + - uid: 25711 + components: + - type: Transform + pos: 53.5,31.5 + parent: 21002 + - uid: 25712 + components: + - type: Transform + pos: 53.5,30.5 + parent: 21002 + - uid: 25715 + components: + - type: Transform + pos: 53.5,27.5 + parent: 21002 + - uid: 25717 + components: + - type: Transform + pos: 54.5,33.5 + parent: 21002 + - uid: 25719 + components: + - type: Transform + pos: 54.5,31.5 + parent: 21002 + - uid: 25720 + components: + - type: Transform + pos: 54.5,30.5 + parent: 21002 + - uid: 25722 + components: + - type: Transform + pos: 54.5,28.5 + parent: 21002 + - uid: 25724 + components: + - type: Transform + pos: 54.5,26.5 + parent: 21002 + - uid: 25725 + components: + - type: Transform + pos: 55.5,33.5 + parent: 21002 + - uid: 25726 + components: + - type: Transform + pos: 55.5,32.5 + parent: 21002 + - uid: 25727 + components: + - type: Transform + pos: 55.5,31.5 + parent: 21002 + - uid: 25728 + components: + - type: Transform + pos: 55.5,30.5 + parent: 21002 + - uid: 25730 + components: + - type: Transform + pos: 55.5,28.5 + parent: 21002 + - uid: 25731 + components: + - type: Transform + pos: 55.5,27.5 + parent: 21002 + - uid: 25732 + components: + - type: Transform + pos: 55.5,26.5 + parent: 21002 + - uid: 25733 + components: + - type: Transform + pos: 56.5,33.5 + parent: 21002 + - uid: 25734 + components: + - type: Transform + pos: 56.5,32.5 + parent: 21002 + - uid: 25735 + components: + - type: Transform + pos: 56.5,31.5 + parent: 21002 + - uid: 25736 + components: + - type: Transform + pos: 56.5,30.5 + parent: 21002 + - uid: 25737 + components: + - type: Transform + pos: 56.5,29.5 + parent: 21002 + - uid: 25738 + components: + - type: Transform + pos: 56.5,28.5 + parent: 21002 + - uid: 25739 + components: + - type: Transform + pos: 56.5,27.5 + parent: 21002 + - uid: 25740 + components: + - type: Transform + pos: 56.5,26.5 + parent: 21002 + - uid: 25741 + components: + - type: Transform + pos: 57.5,33.5 + parent: 21002 + - uid: 25742 + components: + - type: Transform + pos: 57.5,32.5 + parent: 21002 + - uid: 25743 + components: + - type: Transform + pos: 57.5,31.5 + parent: 21002 + - uid: 25744 + components: + - type: Transform + pos: 57.5,30.5 + parent: 21002 + - uid: 25745 + components: + - type: Transform + pos: 57.5,29.5 + parent: 21002 + - uid: 25746 + components: + - type: Transform + pos: 57.5,28.5 + parent: 21002 + - uid: 25747 + components: + - type: Transform + pos: 57.5,27.5 + parent: 21002 + - uid: 25749 + components: + - type: Transform + pos: 58.5,33.5 + parent: 21002 + - uid: 25750 + components: + - type: Transform + pos: 58.5,32.5 + parent: 21002 + - uid: 25751 + components: + - type: Transform + pos: 58.5,31.5 + parent: 21002 + - uid: 25752 + components: + - type: Transform + pos: 58.5,30.5 + parent: 21002 + - uid: 25753 + components: + - type: Transform + pos: 58.5,29.5 + parent: 21002 + - uid: 25754 + components: + - type: Transform + pos: 58.5,28.5 + parent: 21002 + - uid: 25759 + components: + - type: Transform + pos: 59.5,31.5 + parent: 21002 + - uid: 25760 + components: + - type: Transform + pos: 59.5,30.5 + parent: 21002 + - uid: 25761 + components: + - type: Transform + pos: 59.5,29.5 + parent: 21002 + - uid: 25762 + components: + - type: Transform + pos: 59.5,28.5 + parent: 21002 + - uid: 25763 + components: + - type: Transform + pos: 59.5,27.5 + parent: 21002 + - uid: 25764 + components: + - type: Transform + pos: 59.5,26.5 + parent: 21002 + - uid: 25765 + components: + - type: Transform + pos: 32.5,28.5 + parent: 21002 + - uid: 25766 + components: + - type: Transform + pos: 32.5,27.5 + parent: 21002 + - uid: 25768 + components: + - type: Transform + pos: 32.5,25.5 + parent: 21002 + - uid: 25769 + components: + - type: Transform + pos: 32.5,24.5 + parent: 21002 + - uid: 25770 + components: + - type: Transform + pos: 33.5,28.5 + parent: 21002 + - uid: 25776 + components: + - type: Transform + pos: 34.5,28.5 + parent: 21002 + - uid: 25777 + components: + - type: Transform + pos: 34.5,27.5 + parent: 21002 + - uid: 25779 + components: + - type: Transform + pos: 34.5,25.5 + parent: 21002 + - uid: 25780 + components: + - type: Transform + pos: 34.5,24.5 + parent: 21002 + - uid: 25781 + components: + - type: Transform + pos: 34.5,23.5 + parent: 21002 + - uid: 25782 + components: + - type: Transform + pos: 35.5,28.5 + parent: 21002 + - uid: 25783 + components: + - type: Transform + pos: 35.5,27.5 + parent: 21002 + - uid: 25785 + components: + - type: Transform + pos: 35.5,25.5 + parent: 21002 + - uid: 25787 + components: + - type: Transform + pos: 36.5,28.5 + parent: 21002 + - uid: 25788 + components: + - type: Transform + pos: 36.5,27.5 + parent: 21002 + - uid: 25792 + components: + - type: Transform + pos: 37.5,28.5 + parent: 21002 + - uid: 25793 + components: + - type: Transform + pos: 37.5,27.5 + parent: 21002 + - uid: 25796 + components: + - type: Transform + pos: 37.5,24.5 + parent: 21002 + - uid: 25798 + components: + - type: Transform + pos: 38.5,27.5 + parent: 21002 + - uid: 25802 + components: + - type: Transform + pos: 38.5,23.5 + parent: 21002 + - uid: 25804 + components: + - type: Transform + pos: 39.5,24.5 + parent: 21002 + - uid: 25807 + components: + - type: Transform + pos: 40.5,24.5 + parent: 21002 + - uid: 25808 + components: + - type: Transform + pos: 40.5,23.5 + parent: 21002 + - uid: 25809 + components: + - type: Transform + pos: 41.5,25.5 + parent: 21002 + - uid: 25810 + components: + - type: Transform + pos: 38.5,29.5 + parent: 21002 + - uid: 25811 + components: + - type: Transform + pos: 37.5,29.5 + parent: 21002 + - uid: 25812 + components: + - type: Transform + pos: 29.5,27.5 + parent: 21002 + - uid: 25814 + components: + - type: Transform + pos: 30.5,27.5 + parent: 21002 + - uid: 25816 + components: + - type: Transform + pos: 30.5,25.5 + parent: 21002 + - uid: 25818 + components: + - type: Transform + pos: 31.5,27.5 + parent: 21002 + - uid: 25820 + components: + - type: Transform + pos: 31.5,25.5 + parent: 21002 + - uid: 25823 + components: + - type: Transform + pos: 32.5,17.5 + parent: 21002 + - uid: 25828 + components: + - type: Transform + pos: 32.5,12.5 + parent: 21002 + - uid: 25829 + components: + - type: Transform + pos: 32.5,11.5 + parent: 21002 + - uid: 25830 + components: + - type: Transform + pos: 33.5,20.5 + parent: 21002 + - uid: 25831 + components: + - type: Transform + pos: 33.5,18.5 + parent: 21002 + - uid: 25832 + components: + - type: Transform + pos: 33.5,17.5 + parent: 21002 + - uid: 25833 + components: + - type: Transform + pos: 33.5,16.5 + parent: 21002 + - uid: 25834 + components: + - type: Transform + pos: 33.5,15.5 + parent: 21002 + - uid: 25835 + components: + - type: Transform + pos: 33.5,14.5 + parent: 21002 + - uid: 25836 + components: + - type: Transform + pos: 33.5,13.5 + parent: 21002 + - uid: 25837 + components: + - type: Transform + pos: 33.5,12.5 + parent: 21002 + - uid: 25838 + components: + - type: Transform + pos: 33.5,11.5 + parent: 21002 + - uid: 25839 + components: + - type: Transform + pos: 33.5,10.5 + parent: 21002 + - uid: 25841 + components: + - type: Transform + pos: 34.5,19.5 + parent: 21002 + - uid: 25842 + components: + - type: Transform + pos: 34.5,18.5 + parent: 21002 + - uid: 25843 + components: + - type: Transform + pos: 34.5,17.5 + parent: 21002 + - uid: 25844 + components: + - type: Transform + pos: 34.5,16.5 + parent: 21002 + - uid: 25845 + components: + - type: Transform + pos: 34.5,15.5 + parent: 21002 + - uid: 25846 + components: + - type: Transform + pos: 34.5,14.5 + parent: 21002 + - uid: 25847 + components: + - type: Transform + pos: 34.5,13.5 + parent: 21002 + - uid: 25849 + components: + - type: Transform + pos: 34.5,11.5 + parent: 21002 + - uid: 25850 + components: + - type: Transform + pos: 34.5,10.5 + parent: 21002 + - uid: 25851 + components: + - type: Transform + pos: 35.5,21.5 + parent: 21002 + - uid: 25852 + components: + - type: Transform + pos: 35.5,20.5 + parent: 21002 + - uid: 25854 + components: + - type: Transform + pos: 35.5,18.5 + parent: 21002 + - uid: 25855 + components: + - type: Transform + pos: 35.5,17.5 + parent: 21002 + - uid: 25856 + components: + - type: Transform + pos: 35.5,16.5 + parent: 21002 + - uid: 25857 + components: + - type: Transform + pos: 35.5,15.5 + parent: 21002 + - uid: 25858 + components: + - type: Transform + pos: 35.5,14.5 + parent: 21002 + - uid: 25862 + components: + - type: Transform + pos: 35.5,10.5 + parent: 21002 + - uid: 25863 + components: + - type: Transform + pos: 36.5,21.5 + parent: 21002 + - uid: 25869 + components: + - type: Transform + pos: 36.5,15.5 + parent: 21002 + - uid: 25873 + components: + - type: Transform + pos: 36.5,11.5 + parent: 21002 + - uid: 25874 + components: + - type: Transform + pos: 36.5,10.5 + parent: 21002 + - uid: 25875 + components: + - type: Transform + pos: 36.5,9.5 + parent: 21002 + - uid: 25880 + components: + - type: Transform + pos: 37.5,13.5 + parent: 21002 + - uid: 25881 + components: + - type: Transform + pos: 37.5,12.5 + parent: 21002 + - uid: 25882 + components: + - type: Transform + pos: 37.5,11.5 + parent: 21002 + - uid: 25883 + components: + - type: Transform + pos: 37.5,10.5 + parent: 21002 + - uid: 25884 + components: + - type: Transform + pos: 37.5,9.5 + parent: 21002 + - uid: 25885 + components: + - type: Transform + pos: 38.5,17.5 + parent: 21002 + - uid: 25888 + components: + - type: Transform + pos: 38.5,14.5 + parent: 21002 + - uid: 25889 + components: + - type: Transform + pos: 38.5,13.5 + parent: 21002 + - uid: 25890 + components: + - type: Transform + pos: 38.5,12.5 + parent: 21002 + - uid: 25891 + components: + - type: Transform + pos: 38.5,11.5 + parent: 21002 + - uid: 25892 + components: + - type: Transform + pos: 38.5,10.5 + parent: 21002 + - uid: 25893 + components: + - type: Transform + pos: 38.5,9.5 + parent: 21002 + - uid: 25894 + components: + - type: Transform + pos: 38.5,8.5 + parent: 21002 + - uid: 25895 + components: + - type: Transform + pos: 31.5,16.5 + parent: 21002 + - uid: 25901 + components: + - type: Transform + pos: 50.5,38.5 + parent: 21002 + - uid: 25902 + components: + - type: Transform + pos: 50.5,37.5 + parent: 21002 + - uid: 25903 + components: + - type: Transform + pos: 50.5,36.5 + parent: 21002 + - uid: 25904 + components: + - type: Transform + pos: 50.5,35.5 + parent: 21002 + - uid: 25906 + components: + - type: Transform + pos: 51.5,38.5 + parent: 21002 + - uid: 25907 + components: + - type: Transform + pos: 51.5,37.5 + parent: 21002 + - uid: 25911 + components: + - type: Transform + pos: 52.5,38.5 + parent: 21002 + - uid: 25912 + components: + - type: Transform + pos: 52.5,37.5 + parent: 21002 + - uid: 25914 + components: + - type: Transform + pos: 52.5,35.5 + parent: 21002 + - uid: 25915 + components: + - type: Transform + pos: 52.5,34.5 + parent: 21002 + - uid: 25916 + components: + - type: Transform + pos: 53.5,38.5 + parent: 21002 + - uid: 25917 + components: + - type: Transform + pos: 53.5,37.5 + parent: 21002 + - uid: 25918 + components: + - type: Transform + pos: 53.5,36.5 + parent: 21002 + - uid: 25919 + components: + - type: Transform + pos: 53.5,35.5 + parent: 21002 + - uid: 25920 + components: + - type: Transform + pos: 53.5,34.5 + parent: 21002 + - uid: 25921 + components: + - type: Transform + pos: 54.5,38.5 + parent: 21002 + - uid: 25922 + components: + - type: Transform + pos: 54.5,37.5 + parent: 21002 + - uid: 25923 + components: + - type: Transform + pos: 54.5,36.5 + parent: 21002 + - uid: 25924 + components: + - type: Transform + pos: 54.5,35.5 + parent: 21002 + - uid: 25925 + components: + - type: Transform + pos: 54.5,34.5 + parent: 21002 + - uid: 25926 + components: + - type: Transform + pos: 55.5,38.5 + parent: 21002 + - uid: 25927 + components: + - type: Transform + pos: 55.5,37.5 + parent: 21002 + - uid: 25928 + components: + - type: Transform + pos: 55.5,36.5 + parent: 21002 + - uid: 25929 + components: + - type: Transform + pos: 55.5,35.5 + parent: 21002 + - uid: 25930 + components: + - type: Transform + pos: 55.5,34.5 + parent: 21002 + - uid: 25931 + components: + - type: Transform + pos: 56.5,38.5 + parent: 21002 + - uid: 25932 + components: + - type: Transform + pos: 56.5,37.5 + parent: 21002 + - uid: 25933 + components: + - type: Transform + pos: 56.5,36.5 + parent: 21002 + - uid: 25934 + components: + - type: Transform + pos: 56.5,35.5 + parent: 21002 + - uid: 25935 + components: + - type: Transform + pos: 56.5,34.5 + parent: 21002 + - uid: 25936 + components: + - type: Transform + pos: 57.5,38.5 + parent: 21002 + - uid: 25937 + components: + - type: Transform + pos: 57.5,37.5 + parent: 21002 + - uid: 25938 + components: + - type: Transform + pos: 57.5,36.5 + parent: 21002 + - uid: 25939 + components: + - type: Transform + pos: 57.5,35.5 + parent: 21002 + - uid: 25940 + components: + - type: Transform + pos: 57.5,34.5 + parent: 21002 + - uid: 25941 + components: + - type: Transform + pos: 49.5,37.5 + parent: 21002 + - uid: 25942 + components: + - type: Transform + pos: 49.5,36.5 + parent: 21002 + - uid: 25943 + components: + - type: Transform + pos: 49.5,35.5 + parent: 21002 + - uid: 25944 + components: + - type: Transform + pos: 49.5,34.5 + parent: 21002 + - uid: 25945 + components: + - type: Transform + pos: 56.5,46.5 + parent: 21002 + - uid: 25946 + components: + - type: Transform + pos: 56.5,45.5 + parent: 21002 + - uid: 25948 + components: + - type: Transform + pos: 56.5,43.5 + parent: 21002 + - uid: 25949 + components: + - type: Transform + pos: 57.5,46.5 + parent: 21002 + - uid: 25950 + components: + - type: Transform + pos: 57.5,45.5 + parent: 21002 + - uid: 25951 + components: + - type: Transform + pos: 57.5,44.5 + parent: 21002 + - uid: 25952 + components: + - type: Transform + pos: 57.5,43.5 + parent: 21002 + - uid: 25953 + components: + - type: Transform + pos: 58.5,44.5 + parent: 21002 + - uid: 25954 + components: + - type: Transform + pos: 58.5,45.5 + parent: 21002 + - uid: 25955 + components: + - type: Transform + pos: 54.5,45.5 + parent: 21002 + - uid: 25956 + components: + - type: Transform + pos: 54.5,44.5 + parent: 21002 + - uid: 25958 + components: + - type: Transform + pos: 54.5,42.5 + parent: 21002 + - uid: 25959 + components: + - type: Transform + pos: 54.5,41.5 + parent: 21002 + - uid: 25961 + components: + - type: Transform + pos: 54.5,39.5 + parent: 21002 + - uid: 25962 + components: + - type: Transform + pos: 55.5,45.5 + parent: 21002 + - uid: 25965 + components: + - type: Transform + pos: 55.5,42.5 + parent: 21002 + - uid: 25966 + components: + - type: Transform + pos: 55.5,41.5 + parent: 21002 + - uid: 25967 + components: + - type: Transform + pos: 55.5,40.5 + parent: 21002 + - uid: 25968 + components: + - type: Transform + pos: 55.5,39.5 + parent: 21002 + - uid: 25969 + components: + - type: Transform + pos: 57.5,39.5 + parent: 21002 + - uid: 25970 + components: + - type: Transform + pos: 56.5,39.5 + parent: 21002 + - uid: 25971 + components: + - type: Transform + pos: 56.5,40.5 + parent: 21002 + - uid: 25972 + components: + - type: Transform + pos: 56.5,41.5 + parent: 21002 + - uid: 25973 + components: + - type: Transform + pos: 56.5,42.5 + parent: 21002 + - uid: 25974 + components: + - type: Transform + pos: 53.5,44.5 + parent: 21002 + - uid: 25975 + components: + - type: Transform + pos: 53.5,43.5 + parent: 21002 + - uid: 25976 + components: + - type: Transform + pos: 53.5,42.5 + parent: 21002 + - uid: 25977 + components: + - type: Transform + pos: 53.5,41.5 + parent: 21002 + - uid: 25978 + components: + - type: Transform + pos: 53.5,40.5 + parent: 21002 + - uid: 25979 + components: + - type: Transform + pos: 53.5,39.5 + parent: 21002 + - uid: 25980 + components: + - type: Transform + pos: 52.5,39.5 + parent: 21002 + - uid: 25981 + components: + - type: Transform + pos: 52.5,40.5 + parent: 21002 + - uid: 25982 + components: + - type: Transform + pos: 52.5,41.5 + parent: 21002 + - uid: 25983 + components: + - type: Transform + pos: 52.5,42.5 + parent: 21002 + - uid: 25984 + components: + - type: Transform + pos: 58.5,36.5 + parent: 21002 + - uid: 25985 + components: + - type: Transform + pos: 58.5,35.5 + parent: 21002 + - uid: 25987 + components: + - type: Transform + pos: 59.5,36.5 + parent: 21002 + - uid: 25988 + components: + - type: Transform + pos: 59.5,35.5 + parent: 21002 + - uid: 25990 + components: + - type: Transform + pos: 60.5,36.5 + parent: 21002 + - uid: 25991 + components: + - type: Transform + pos: 60.5,35.5 + parent: 21002 + - uid: 25992 + components: + - type: Transform + pos: 60.5,34.5 + parent: 21002 + - uid: 25993 + components: + - type: Transform + pos: 61.5,36.5 + parent: 21002 + - uid: 25994 + components: + - type: Transform + pos: 61.5,35.5 + parent: 21002 + - uid: 25995 + components: + - type: Transform + pos: 61.5,34.5 + parent: 21002 + - uid: 25996 + components: + - type: Transform + pos: 62.5,36.5 + parent: 21002 + - uid: 25997 + components: + - type: Transform + pos: 62.5,35.5 + parent: 21002 + - uid: 25998 + components: + - type: Transform + pos: 62.5,34.5 + parent: 21002 + - uid: 25999 + components: + - type: Transform + pos: 63.5,36.5 + parent: 21002 + - uid: 26000 + components: + - type: Transform + pos: 63.5,35.5 + parent: 21002 + - uid: 26001 + components: + - type: Transform + pos: 63.5,34.5 + parent: 21002 + - uid: 26002 + components: + - type: Transform + pos: 64.5,36.5 + parent: 21002 + - uid: 26003 + components: + - type: Transform + pos: 64.5,35.5 + parent: 21002 + - uid: 26004 + components: + - type: Transform + pos: 64.5,34.5 + parent: 21002 + - uid: 26007 + components: + - type: Transform + pos: 65.5,34.5 + parent: 21002 + - uid: 26009 + components: + - type: Transform + pos: 66.5,35.5 + parent: 21002 + - uid: 26010 + components: + - type: Transform + pos: 66.5,34.5 + parent: 21002 + - uid: 26011 + components: + - type: Transform + pos: 67.5,36.5 + parent: 21002 + - uid: 26012 + components: + - type: Transform + pos: 67.5,35.5 + parent: 21002 + - uid: 26013 + components: + - type: Transform + pos: 67.5,34.5 + parent: 21002 + - uid: 26015 + components: + - type: Transform + pos: 68.5,35.5 + parent: 21002 + - uid: 26016 + components: + - type: Transform + pos: 68.5,34.5 + parent: 21002 + - uid: 26017 + components: + - type: Transform + pos: 69.5,36.5 + parent: 21002 + - uid: 26018 + components: + - type: Transform + pos: 69.5,35.5 + parent: 21002 + - uid: 26019 + components: + - type: Transform + pos: 69.5,34.5 + parent: 21002 + - uid: 26020 + components: + - type: Transform + pos: 70.5,36.5 + parent: 21002 + - uid: 26021 + components: + - type: Transform + pos: 70.5,35.5 + parent: 21002 + - uid: 26022 + components: + - type: Transform + pos: 70.5,34.5 + parent: 21002 + - uid: 26023 + components: + - type: Transform + pos: 71.5,36.5 + parent: 21002 + - uid: 26024 + components: + - type: Transform + pos: 71.5,35.5 + parent: 21002 + - uid: 26025 + components: + - type: Transform + pos: 71.5,34.5 + parent: 21002 + - uid: 26026 + components: + - type: Transform + pos: 72.5,36.5 + parent: 21002 + - uid: 26027 + components: + - type: Transform + pos: 72.5,35.5 + parent: 21002 + - uid: 26028 + components: + - type: Transform + pos: 72.5,34.5 + parent: 21002 + - uid: 26029 + components: + - type: Transform + pos: 60.5,39.5 + parent: 21002 + - uid: 26030 + components: + - type: Transform + pos: 60.5,38.5 + parent: 21002 + - uid: 26031 + components: + - type: Transform + pos: 60.5,37.5 + parent: 21002 + - uid: 26032 + components: + - type: Transform + pos: 61.5,39.5 + parent: 21002 + - uid: 26033 + components: + - type: Transform + pos: 61.5,38.5 + parent: 21002 + - uid: 26034 + components: + - type: Transform + pos: 61.5,37.5 + parent: 21002 + - uid: 26035 + components: + - type: Transform + pos: 62.5,39.5 + parent: 21002 + - uid: 26036 + components: + - type: Transform + pos: 62.5,38.5 + parent: 21002 + - uid: 26037 + components: + - type: Transform + pos: 62.5,37.5 + parent: 21002 + - uid: 26038 + components: + - type: Transform + pos: 63.5,39.5 + parent: 21002 + - uid: 26039 + components: + - type: Transform + pos: 63.5,38.5 + parent: 21002 + - uid: 26040 + components: + - type: Transform + pos: 63.5,37.5 + parent: 21002 + - uid: 26041 + components: + - type: Transform + pos: 64.5,39.5 + parent: 21002 + - uid: 26042 + components: + - type: Transform + pos: 64.5,38.5 + parent: 21002 + - uid: 26043 + components: + - type: Transform + pos: 64.5,37.5 + parent: 21002 + - uid: 26044 + components: + - type: Transform + pos: 65.5,39.5 + parent: 21002 + - uid: 26045 + components: + - type: Transform + pos: 65.5,38.5 + parent: 21002 + - uid: 26046 + components: + - type: Transform + pos: 65.5,37.5 + parent: 21002 + - uid: 26047 + components: + - type: Transform + pos: 66.5,39.5 + parent: 21002 + - uid: 26049 + components: + - type: Transform + pos: 66.5,37.5 + parent: 21002 + - uid: 26050 + components: + - type: Transform + pos: 67.5,39.5 + parent: 21002 + - uid: 26051 + components: + - type: Transform + pos: 67.5,38.5 + parent: 21002 + - uid: 26053 + components: + - type: Transform + pos: 68.5,39.5 + parent: 21002 + - uid: 26056 + components: + - type: Transform + pos: 69.5,39.5 + parent: 21002 + - uid: 26057 + components: + - type: Transform + pos: 69.5,38.5 + parent: 21002 + - uid: 26058 + components: + - type: Transform + pos: 69.5,37.5 + parent: 21002 + - uid: 26059 + components: + - type: Transform + pos: 70.5,39.5 + parent: 21002 + - uid: 26060 + components: + - type: Transform + pos: 70.5,38.5 + parent: 21002 + - uid: 26061 + components: + - type: Transform + pos: 70.5,37.5 + parent: 21002 + - uid: 26062 + components: + - type: Transform + pos: 71.5,39.5 + parent: 21002 + - uid: 26063 + components: + - type: Transform + pos: 71.5,38.5 + parent: 21002 + - uid: 26064 + components: + - type: Transform + pos: 71.5,37.5 + parent: 21002 + - uid: 26065 + components: + - type: Transform + pos: 72.5,39.5 + parent: 21002 + - uid: 26066 + components: + - type: Transform + pos: 72.5,38.5 + parent: 21002 + - uid: 26067 + components: + - type: Transform + pos: 72.5,37.5 + parent: 21002 + - uid: 26068 + components: + - type: Transform + pos: 70.5,40.5 + parent: 21002 + - uid: 26069 + components: + - type: Transform + pos: 70.5,41.5 + parent: 21002 + - uid: 26070 + components: + - type: Transform + pos: 69.5,40.5 + parent: 21002 + - uid: 26071 + components: + - type: Transform + pos: 69.5,41.5 + parent: 21002 + - uid: 26072 + components: + - type: Transform + pos: 68.5,40.5 + parent: 21002 + - uid: 26073 + components: + - type: Transform + pos: 68.5,41.5 + parent: 21002 + - uid: 26074 + components: + - type: Transform + pos: 67.5,40.5 + parent: 21002 + - uid: 26075 + components: + - type: Transform + pos: 67.5,41.5 + parent: 21002 + - uid: 26076 + components: + - type: Transform + pos: 66.5,40.5 + parent: 21002 + - uid: 26077 + components: + - type: Transform + pos: 66.5,41.5 + parent: 21002 + - uid: 26078 + components: + - type: Transform + pos: 65.5,40.5 + parent: 21002 + - uid: 26079 + components: + - type: Transform + pos: 65.5,41.5 + parent: 21002 + - uid: 26080 + components: + - type: Transform + pos: 64.5,40.5 + parent: 21002 + - uid: 26081 + components: + - type: Transform + pos: 64.5,41.5 + parent: 21002 + - uid: 26082 + components: + - type: Transform + pos: 63.5,40.5 + parent: 21002 + - uid: 26083 + components: + - type: Transform + pos: 63.5,41.5 + parent: 21002 + - uid: 26084 + components: + - type: Transform + pos: 62.5,40.5 + parent: 21002 + - uid: 26085 + components: + - type: Transform + pos: 62.5,41.5 + parent: 21002 + - uid: 26086 + components: + - type: Transform + pos: 64.5,42.5 + parent: 21002 + - uid: 26087 + components: + - type: Transform + pos: 65.5,42.5 + parent: 21002 + - uid: 26088 + components: + - type: Transform + pos: 66.5,42.5 + parent: 21002 + - uid: 26089 + components: + - type: Transform + pos: 67.5,42.5 + parent: 21002 + - uid: 26090 + components: + - type: Transform + pos: 68.5,42.5 + parent: 21002 + - uid: 26091 + components: + - type: Transform + pos: 69.5,42.5 + parent: 21002 + - uid: 26092 + components: + - type: Transform + pos: 70.5,42.5 + parent: 21002 + - uid: 26093 + components: + - type: Transform + pos: 70.5,43.5 + parent: 21002 + - uid: 26094 + components: + - type: Transform + pos: 70.5,44.5 + parent: 21002 + - uid: 26095 + components: + - type: Transform + pos: 69.5,43.5 + parent: 21002 + - uid: 26096 + components: + - type: Transform + pos: 69.5,44.5 + parent: 21002 + - uid: 26098 + components: + - type: Transform + pos: 68.5,44.5 + parent: 21002 + - uid: 26099 + components: + - type: Transform + pos: 67.5,43.5 + parent: 21002 + - uid: 26100 + components: + - type: Transform + pos: 67.5,44.5 + parent: 21002 + - uid: 26101 + components: + - type: Transform + pos: 66.5,43.5 + parent: 21002 + - uid: 26102 + components: + - type: Transform + pos: 66.5,44.5 + parent: 21002 + - uid: 26103 + components: + - type: Transform + pos: 65.5,43.5 + parent: 21002 + - uid: 26104 + components: + - type: Transform + pos: 65.5,44.5 + parent: 21002 + - uid: 26105 + components: + - type: Transform + pos: 65.5,45.5 + parent: 21002 + - uid: 26106 + components: + - type: Transform + pos: 66.5,45.5 + parent: 21002 + - uid: 26107 + components: + - type: Transform + pos: 67.5,45.5 + parent: 21002 + - uid: 26108 + components: + - type: Transform + pos: 68.5,45.5 + parent: 21002 + - uid: 26109 + components: + - type: Transform + pos: 69.5,45.5 + parent: 21002 + - uid: 26110 + components: + - type: Transform + pos: 69.5,46.5 + parent: 21002 + - uid: 26111 + components: + - type: Transform + pos: 69.5,47.5 + parent: 21002 + - uid: 26112 + components: + - type: Transform + pos: 69.5,48.5 + parent: 21002 + - uid: 26113 + components: + - type: Transform + pos: 69.5,49.5 + parent: 21002 + - uid: 26115 + components: + - type: Transform + pos: 69.5,51.5 + parent: 21002 + - uid: 26116 + components: + - type: Transform + pos: 69.5,52.5 + parent: 21002 + - uid: 26117 + components: + - type: Transform + pos: 69.5,53.5 + parent: 21002 + - uid: 26118 + components: + - type: Transform + pos: 69.5,54.5 + parent: 21002 + - uid: 26119 + components: + - type: Transform + pos: 69.5,55.5 + parent: 21002 + - uid: 26120 + components: + - type: Transform + pos: 69.5,56.5 + parent: 21002 + - uid: 26121 + components: + - type: Transform + pos: 68.5,46.5 + parent: 21002 + - uid: 26122 + components: + - type: Transform + pos: 68.5,47.5 + parent: 21002 + - uid: 26123 + components: + - type: Transform + pos: 68.5,48.5 + parent: 21002 + - uid: 26124 + components: + - type: Transform + pos: 68.5,49.5 + parent: 21002 + - uid: 26125 + components: + - type: Transform + pos: 68.5,50.5 + parent: 21002 + - uid: 26126 + components: + - type: Transform + pos: 68.5,51.5 + parent: 21002 + - uid: 26128 + components: + - type: Transform + pos: 68.5,53.5 + parent: 21002 + - uid: 26129 + components: + - type: Transform + pos: 68.5,54.5 + parent: 21002 + - uid: 26130 + components: + - type: Transform + pos: 68.5,55.5 + parent: 21002 + - uid: 26131 + components: + - type: Transform + pos: 68.5,56.5 + parent: 21002 + - uid: 26132 + components: + - type: Transform + pos: 67.5,46.5 + parent: 21002 + - uid: 26133 + components: + - type: Transform + pos: 67.5,47.5 + parent: 21002 + - uid: 26134 + components: + - type: Transform + pos: 67.5,48.5 + parent: 21002 + - uid: 26135 + components: + - type: Transform + pos: 67.5,49.5 + parent: 21002 + - uid: 26136 + components: + - type: Transform + pos: 67.5,50.5 + parent: 21002 + - uid: 26139 + components: + - type: Transform + pos: 67.5,53.5 + parent: 21002 + - uid: 26141 + components: + - type: Transform + pos: 67.5,55.5 + parent: 21002 + - uid: 26142 + components: + - type: Transform + pos: 67.5,56.5 + parent: 21002 + - uid: 26143 + components: + - type: Transform + pos: 66.5,50.5 + parent: 21002 + - uid: 26144 + components: + - type: Transform + pos: 66.5,51.5 + parent: 21002 + - uid: 26146 + components: + - type: Transform + pos: 66.5,53.5 + parent: 21002 + - uid: 26147 + components: + - type: Transform + pos: 66.5,54.5 + parent: 21002 + - uid: 26148 + components: + - type: Transform + pos: 66.5,55.5 + parent: 21002 + - uid: 26149 + components: + - type: Transform + pos: 66.5,56.5 + parent: 21002 + - uid: 26150 + components: + - type: Transform + pos: 65.5,50.5 + parent: 21002 + - uid: 26151 + components: + - type: Transform + pos: 65.5,51.5 + parent: 21002 + - uid: 26153 + components: + - type: Transform + pos: 65.5,53.5 + parent: 21002 + - uid: 26154 + components: + - type: Transform + pos: 65.5,54.5 + parent: 21002 + - uid: 26155 + components: + - type: Transform + pos: 65.5,55.5 + parent: 21002 + - uid: 26156 + components: + - type: Transform + pos: 65.5,56.5 + parent: 21002 + - uid: 26157 + components: + - type: Transform + pos: 64.5,51.5 + parent: 21002 + - uid: 26158 + components: + - type: Transform + pos: 64.5,52.5 + parent: 21002 + - uid: 26159 + components: + - type: Transform + pos: 64.5,53.5 + parent: 21002 + - uid: 26160 + components: + - type: Transform + pos: 64.5,54.5 + parent: 21002 + - uid: 26161 + components: + - type: Transform + pos: 63.5,51.5 + parent: 21002 + - uid: 26162 + components: + - type: Transform + pos: 63.5,52.5 + parent: 21002 + - uid: 26163 + components: + - type: Transform + pos: 63.5,53.5 + parent: 21002 + - uid: 26164 + components: + - type: Transform + pos: 63.5,54.5 + parent: 21002 + - uid: 26165 + components: + - type: Transform + pos: 64.5,55.5 + parent: 21002 + - uid: 26166 + components: + - type: Transform + pos: 67.5,57.5 + parent: 21002 + - uid: 26167 + components: + - type: Transform + pos: 68.5,57.5 + parent: 21002 + - uid: 26168 + components: + - type: Transform + pos: 70.5,56.5 + parent: 21002 + - uid: 26169 + components: + - type: Transform + pos: 70.5,55.5 + parent: 21002 + - uid: 26170 + components: + - type: Transform + pos: 70.5,54.5 + parent: 21002 + - uid: 26171 + components: + - type: Transform + pos: 70.5,53.5 + parent: 21002 + - uid: 26173 + components: + - type: Transform + pos: 70.5,51.5 + parent: 21002 + - uid: 26174 + components: + - type: Transform + pos: 70.5,50.5 + parent: 21002 + - uid: 26175 + components: + - type: Transform + pos: 70.5,49.5 + parent: 21002 + - uid: 26176 + components: + - type: Transform + pos: 70.5,48.5 + parent: 21002 + - uid: 26177 + components: + - type: Transform + pos: 71.5,48.5 + parent: 21002 + - uid: 26178 + components: + - type: Transform + pos: 71.5,49.5 + parent: 21002 + - uid: 26180 + components: + - type: Transform + pos: 71.5,51.5 + parent: 21002 + - uid: 26181 + components: + - type: Transform + pos: 71.5,52.5 + parent: 21002 + - uid: 26182 + components: + - type: Transform + pos: 71.5,53.5 + parent: 21002 + - uid: 26183 + components: + - type: Transform + pos: 71.5,54.5 + parent: 21002 + - uid: 26184 + components: + - type: Transform + pos: 71.5,55.5 + parent: 21002 + - uid: 26185 + components: + - type: Transform + pos: 72.5,54.5 + parent: 21002 + - uid: 26186 + components: + - type: Transform + pos: 72.5,53.5 + parent: 21002 + - uid: 26187 + components: + - type: Transform + pos: 72.5,52.5 + parent: 21002 + - uid: 26190 + components: + - type: Transform + pos: 72.5,49.5 + parent: 21002 + - uid: 26191 + components: + - type: Transform + pos: 73.5,49.5 + parent: 21002 + - uid: 26192 + components: + - type: Transform + pos: 73.5,50.5 + parent: 21002 + - uid: 26193 + components: + - type: Transform + pos: 73.5,51.5 + parent: 21002 + - uid: 26194 + components: + - type: Transform + pos: 73.5,52.5 + parent: 21002 + - uid: 26195 + components: + - type: Transform + pos: 73.5,35.5 + parent: 21002 + - uid: 26196 + components: + - type: Transform + pos: 73.5,34.5 + parent: 21002 + - uid: 26197 + components: + - type: Transform + pos: 73.5,33.5 + parent: 21002 + - uid: 26198 + components: + - type: Transform + pos: 73.5,32.5 + parent: 21002 + - uid: 26199 + components: + - type: Transform + pos: 74.5,31.5 + parent: 21002 + - uid: 26200 + components: + - type: Transform + pos: 74.5,30.5 + parent: 21002 + - uid: 26201 + components: + - type: Transform + pos: 74.5,29.5 + parent: 21002 + - uid: 26202 + components: + - type: Transform + pos: 74.5,28.5 + parent: 21002 + - uid: 26204 + components: + - type: Transform + pos: 74.5,26.5 + parent: 21002 + - uid: 26205 + components: + - type: Transform + pos: 74.5,25.5 + parent: 21002 + - uid: 26206 + components: + - type: Transform + pos: 74.5,24.5 + parent: 21002 + - uid: 26207 + components: + - type: Transform + pos: 74.5,23.5 + parent: 21002 + - uid: 26208 + components: + - type: Transform + pos: 74.5,22.5 + parent: 21002 + - uid: 26209 + components: + - type: Transform + pos: 73.5,31.5 + parent: 21002 + - uid: 26210 + components: + - type: Transform + pos: 73.5,30.5 + parent: 21002 + - uid: 26211 + components: + - type: Transform + pos: 73.5,29.5 + parent: 21002 + - uid: 26212 + components: + - type: Transform + pos: 73.5,28.5 + parent: 21002 + - uid: 26213 + components: + - type: Transform + pos: 73.5,27.5 + parent: 21002 + - uid: 26214 + components: + - type: Transform + pos: 73.5,26.5 + parent: 21002 + - uid: 26215 + components: + - type: Transform + pos: 73.5,25.5 + parent: 21002 + - uid: 26216 + components: + - type: Transform + pos: 73.5,24.5 + parent: 21002 + - uid: 26217 + components: + - type: Transform + pos: 73.5,23.5 + parent: 21002 + - uid: 26218 + components: + - type: Transform + pos: 73.5,22.5 + parent: 21002 + - uid: 26219 + components: + - type: Transform + pos: 75.5,25.5 + parent: 21002 + - uid: 26220 + components: + - type: Transform + pos: 75.5,29.5 + parent: 21002 + - uid: 26223 + components: + - type: Transform + pos: 72.5,33.5 + parent: 21002 + - uid: 26224 + components: + - type: Transform + pos: 72.5,32.5 + parent: 21002 + - uid: 26225 + components: + - type: Transform + pos: 72.5,31.5 + parent: 21002 + - uid: 26226 + components: + - type: Transform + pos: 72.5,30.5 + parent: 21002 + - uid: 26227 + components: + - type: Transform + pos: 72.5,29.5 + parent: 21002 + - uid: 26228 + components: + - type: Transform + pos: 72.5,28.5 + parent: 21002 + - uid: 26229 + components: + - type: Transform + pos: 72.5,27.5 + parent: 21002 + - uid: 26230 + components: + - type: Transform + pos: 72.5,26.5 + parent: 21002 + - uid: 26231 + components: + - type: Transform + pos: 72.5,25.5 + parent: 21002 + - uid: 26232 + components: + - type: Transform + pos: 72.5,24.5 + parent: 21002 + - uid: 26233 + components: + - type: Transform + pos: 72.5,23.5 + parent: 21002 + - uid: 26234 + components: + - type: Transform + pos: 72.5,22.5 + parent: 21002 + - uid: 26235 + components: + - type: Transform + pos: 72.5,21.5 + parent: 21002 + - uid: 26236 + components: + - type: Transform + pos: 72.5,20.5 + parent: 21002 + - uid: 26237 + components: + - type: Transform + pos: 71.5,33.5 + parent: 21002 + - uid: 26238 + components: + - type: Transform + pos: 71.5,32.5 + parent: 21002 + - uid: 26241 + components: + - type: Transform + pos: 71.5,29.5 + parent: 21002 + - uid: 26242 + components: + - type: Transform + pos: 71.5,28.5 + parent: 21002 + - uid: 26243 + components: + - type: Transform + pos: 71.5,27.5 + parent: 21002 + - uid: 26244 + components: + - type: Transform + pos: 71.5,26.5 + parent: 21002 + - uid: 26245 + components: + - type: Transform + pos: 71.5,25.5 + parent: 21002 + - uid: 26246 + components: + - type: Transform + pos: 71.5,24.5 + parent: 21002 + - uid: 26247 + components: + - type: Transform + pos: 71.5,23.5 + parent: 21002 + - uid: 26248 + components: + - type: Transform + pos: 71.5,22.5 + parent: 21002 + - uid: 26249 + components: + - type: Transform + pos: 71.5,21.5 + parent: 21002 + - uid: 26250 + components: + - type: Transform + pos: 71.5,20.5 + parent: 21002 + - uid: 26251 + components: + - type: Transform + pos: 70.5,33.5 + parent: 21002 + - uid: 26252 + components: + - type: Transform + pos: 70.5,32.5 + parent: 21002 + - uid: 26253 + components: + - type: Transform + pos: 70.5,31.5 + parent: 21002 + - uid: 26254 + components: + - type: Transform + pos: 70.5,30.5 + parent: 21002 + - uid: 26255 + components: + - type: Transform + pos: 70.5,29.5 + parent: 21002 + - uid: 26256 + components: + - type: Transform + pos: 70.5,28.5 + parent: 21002 + - uid: 26257 + components: + - type: Transform + pos: 70.5,27.5 + parent: 21002 + - uid: 26260 + components: + - type: Transform + pos: 70.5,24.5 + parent: 21002 + - uid: 26261 + components: + - type: Transform + pos: 70.5,23.5 + parent: 21002 + - uid: 26262 + components: + - type: Transform + pos: 70.5,22.5 + parent: 21002 + - uid: 26263 + components: + - type: Transform + pos: 70.5,21.5 + parent: 21002 + - uid: 26264 + components: + - type: Transform + pos: 70.5,20.5 + parent: 21002 + - uid: 26265 + components: + - type: Transform + pos: 69.5,33.5 + parent: 21002 + - uid: 26266 + components: + - type: Transform + pos: 69.5,32.5 + parent: 21002 + - uid: 26267 + components: + - type: Transform + pos: 69.5,31.5 + parent: 21002 + - uid: 26268 + components: + - type: Transform + pos: 69.5,30.5 + parent: 21002 + - uid: 26269 + components: + - type: Transform + pos: 69.5,29.5 + parent: 21002 + - uid: 26270 + components: + - type: Transform + pos: 69.5,28.5 + parent: 21002 + - uid: 26271 + components: + - type: Transform + pos: 69.5,27.5 + parent: 21002 + - uid: 26273 + components: + - type: Transform + pos: 69.5,25.5 + parent: 21002 + - uid: 26274 + components: + - type: Transform + pos: 69.5,24.5 + parent: 21002 + - uid: 26275 + components: + - type: Transform + pos: 69.5,23.5 + parent: 21002 + - uid: 26276 + components: + - type: Transform + pos: 69.5,22.5 + parent: 21002 + - uid: 26279 + components: + - type: Transform + pos: 68.5,33.5 + parent: 21002 + - uid: 26280 + components: + - type: Transform + pos: 68.5,32.5 + parent: 21002 + - uid: 26281 + components: + - type: Transform + pos: 68.5,31.5 + parent: 21002 + - uid: 26282 + components: + - type: Transform + pos: 68.5,30.5 + parent: 21002 + - uid: 26283 + components: + - type: Transform + pos: 68.5,29.5 + parent: 21002 + - uid: 26287 + components: + - type: Transform + pos: 68.5,25.5 + parent: 21002 + - uid: 26288 + components: + - type: Transform + pos: 68.5,24.5 + parent: 21002 + - uid: 26289 + components: + - type: Transform + pos: 68.5,23.5 + parent: 21002 + - uid: 26290 + components: + - type: Transform + pos: 68.5,22.5 + parent: 21002 + - uid: 26291 + components: + - type: Transform + pos: 68.5,21.5 + parent: 21002 + - uid: 26293 + components: + - type: Transform + pos: 67.5,33.5 + parent: 21002 + - uid: 26294 + components: + - type: Transform + pos: 67.5,32.5 + parent: 21002 + - uid: 26295 + components: + - type: Transform + pos: 67.5,31.5 + parent: 21002 + - uid: 26297 + components: + - type: Transform + pos: 67.5,29.5 + parent: 21002 + - uid: 26298 + components: + - type: Transform + pos: 67.5,28.5 + parent: 21002 + - uid: 26301 + components: + - type: Transform + pos: 67.5,25.5 + parent: 21002 + - uid: 26302 + components: + - type: Transform + pos: 67.5,24.5 + parent: 21002 + - uid: 26303 + components: + - type: Transform + pos: 67.5,23.5 + parent: 21002 + - uid: 26304 + components: + - type: Transform + pos: 67.5,22.5 + parent: 21002 + - uid: 26305 + components: + - type: Transform + pos: 67.5,21.5 + parent: 21002 + - uid: 26306 + components: + - type: Transform + pos: 67.5,20.5 + parent: 21002 + - uid: 26307 + components: + - type: Transform + pos: 66.5,33.5 + parent: 21002 + - uid: 26308 + components: + - type: Transform + pos: 66.5,32.5 + parent: 21002 + - uid: 26309 + components: + - type: Transform + pos: 66.5,31.5 + parent: 21002 + - uid: 26310 + components: + - type: Transform + pos: 66.5,30.5 + parent: 21002 + - uid: 26311 + components: + - type: Transform + pos: 66.5,29.5 + parent: 21002 + - uid: 26312 + components: + - type: Transform + pos: 66.5,28.5 + parent: 21002 + - uid: 26315 + components: + - type: Transform + pos: 66.5,25.5 + parent: 21002 + - uid: 26316 + components: + - type: Transform + pos: 66.5,24.5 + parent: 21002 + - uid: 26317 + components: + - type: Transform + pos: 66.5,23.5 + parent: 21002 + - uid: 26319 + components: + - type: Transform + pos: 66.5,21.5 + parent: 21002 + - uid: 26320 + components: + - type: Transform + pos: 66.5,20.5 + parent: 21002 + - uid: 26321 + components: + - type: Transform + pos: 65.5,33.5 + parent: 21002 + - uid: 26322 + components: + - type: Transform + pos: 65.5,32.5 + parent: 21002 + - uid: 26323 + components: + - type: Transform + pos: 65.5,31.5 + parent: 21002 + - uid: 26324 + components: + - type: Transform + pos: 65.5,30.5 + parent: 21002 + - uid: 26327 + components: + - type: Transform + pos: 65.5,27.5 + parent: 21002 + - uid: 26328 + components: + - type: Transform + pos: 65.5,26.5 + parent: 21002 + - uid: 26329 + components: + - type: Transform + pos: 65.5,25.5 + parent: 21002 + - uid: 26330 + components: + - type: Transform + pos: 65.5,24.5 + parent: 21002 + - uid: 26331 + components: + - type: Transform + pos: 65.5,23.5 + parent: 21002 + - uid: 26332 + components: + - type: Transform + pos: 65.5,22.5 + parent: 21002 + - uid: 26333 + components: + - type: Transform + pos: 65.5,21.5 + parent: 21002 + - uid: 26334 + components: + - type: Transform + pos: 65.5,20.5 + parent: 21002 + - uid: 26335 + components: + - type: Transform + pos: 64.5,33.5 + parent: 21002 + - uid: 26336 + components: + - type: Transform + pos: 64.5,32.5 + parent: 21002 + - uid: 26337 + components: + - type: Transform + pos: 64.5,31.5 + parent: 21002 + - uid: 26338 + components: + - type: Transform + pos: 64.5,30.5 + parent: 21002 + - uid: 26340 + components: + - type: Transform + pos: 64.5,28.5 + parent: 21002 + - uid: 26341 + components: + - type: Transform + pos: 64.5,27.5 + parent: 21002 + - uid: 26342 + components: + - type: Transform + pos: 64.5,26.5 + parent: 21002 + - uid: 26343 + components: + - type: Transform + pos: 64.5,25.5 + parent: 21002 + - uid: 26344 + components: + - type: Transform + pos: 64.5,24.5 + parent: 21002 + - uid: 26345 + components: + - type: Transform + pos: 64.5,23.5 + parent: 21002 + - uid: 26346 + components: + - type: Transform + pos: 64.5,22.5 + parent: 21002 + - uid: 26347 + components: + - type: Transform + pos: 64.5,21.5 + parent: 21002 + - uid: 26349 + components: + - type: Transform + pos: 63.5,33.5 + parent: 21002 + - uid: 26350 + components: + - type: Transform + pos: 63.5,32.5 + parent: 21002 + - uid: 26353 + components: + - type: Transform + pos: 63.5,29.5 + parent: 21002 + - uid: 26354 + components: + - type: Transform + pos: 63.5,28.5 + parent: 21002 + - uid: 26355 + components: + - type: Transform + pos: 63.5,27.5 + parent: 21002 + - uid: 26356 + components: + - type: Transform + pos: 63.5,26.5 + parent: 21002 + - uid: 26357 + components: + - type: Transform + pos: 63.5,25.5 + parent: 21002 + - uid: 26358 + components: + - type: Transform + pos: 63.5,24.5 + parent: 21002 + - uid: 26359 + components: + - type: Transform + pos: 63.5,23.5 + parent: 21002 + - uid: 26360 + components: + - type: Transform + pos: 63.5,22.5 + parent: 21002 + - uid: 26361 + components: + - type: Transform + pos: 63.5,21.5 + parent: 21002 + - uid: 26363 + components: + - type: Transform + pos: 62.5,33.5 + parent: 21002 + - uid: 26364 + components: + - type: Transform + pos: 62.5,32.5 + parent: 21002 + - uid: 26365 + components: + - type: Transform + pos: 62.5,31.5 + parent: 21002 + - uid: 26366 + components: + - type: Transform + pos: 62.5,30.5 + parent: 21002 + - uid: 26367 + components: + - type: Transform + pos: 62.5,29.5 + parent: 21002 + - uid: 26368 + components: + - type: Transform + pos: 62.5,28.5 + parent: 21002 + - uid: 26369 + components: + - type: Transform + pos: 62.5,27.5 + parent: 21002 + - uid: 26370 + components: + - type: Transform + pos: 62.5,26.5 + parent: 21002 + - uid: 26371 + components: + - type: Transform + pos: 62.5,25.5 + parent: 21002 + - uid: 26372 + components: + - type: Transform + pos: 62.5,24.5 + parent: 21002 + - uid: 26373 + components: + - type: Transform + pos: 62.5,23.5 + parent: 21002 + - uid: 26374 + components: + - type: Transform + pos: 62.5,22.5 + parent: 21002 + - uid: 26375 + components: + - type: Transform + pos: 62.5,21.5 + parent: 21002 + - uid: 26376 + components: + - type: Transform + pos: 62.5,20.5 + parent: 21002 + - uid: 26377 + components: + - type: Transform + pos: 61.5,33.5 + parent: 21002 + - uid: 26378 + components: + - type: Transform + pos: 61.5,32.5 + parent: 21002 + - uid: 26379 + components: + - type: Transform + pos: 61.5,31.5 + parent: 21002 + - uid: 26380 + components: + - type: Transform + pos: 61.5,30.5 + parent: 21002 + - uid: 26381 + components: + - type: Transform + pos: 61.5,29.5 + parent: 21002 + - uid: 26382 + components: + - type: Transform + pos: 61.5,28.5 + parent: 21002 + - uid: 26383 + components: + - type: Transform + pos: 61.5,27.5 + parent: 21002 + - uid: 26384 + components: + - type: Transform + pos: 61.5,26.5 + parent: 21002 + - uid: 26386 + components: + - type: Transform + pos: 61.5,24.5 + parent: 21002 + - uid: 26387 + components: + - type: Transform + pos: 61.5,23.5 + parent: 21002 + - uid: 26388 + components: + - type: Transform + pos: 61.5,22.5 + parent: 21002 + - uid: 26389 + components: + - type: Transform + pos: 61.5,21.5 + parent: 21002 + - uid: 26390 + components: + - type: Transform + pos: 61.5,20.5 + parent: 21002 + - uid: 26392 + components: + - type: Transform + pos: 60.5,32.5 + parent: 21002 + - uid: 26393 + components: + - type: Transform + pos: 60.5,31.5 + parent: 21002 + - uid: 26394 + components: + - type: Transform + pos: 60.5,30.5 + parent: 21002 + - uid: 26395 + components: + - type: Transform + pos: 60.5,29.5 + parent: 21002 + - uid: 26396 + components: + - type: Transform + pos: 60.5,28.5 + parent: 21002 + - uid: 26397 + components: + - type: Transform + pos: 60.5,27.5 + parent: 21002 + - uid: 26398 + components: + - type: Transform + pos: 60.5,26.5 + parent: 21002 + - uid: 26400 + components: + - type: Transform + pos: 60.5,24.5 + parent: 21002 + - uid: 26401 + components: + - type: Transform + pos: 60.5,23.5 + parent: 21002 + - uid: 26402 + components: + - type: Transform + pos: 60.5,22.5 + parent: 21002 + - uid: 26403 + components: + - type: Transform + pos: 60.5,21.5 + parent: 21002 + - uid: 26404 + components: + - type: Transform + pos: 60.5,20.5 + parent: 21002 + - uid: 26406 + components: + - type: Transform + pos: 59.5,24.5 + parent: 21002 + - uid: 26408 + components: + - type: Transform + pos: 59.5,22.5 + parent: 21002 + - uid: 26409 + components: + - type: Transform + pos: 59.5,21.5 + parent: 21002 + - uid: 26410 + components: + - type: Transform + pos: 59.5,20.5 + parent: 21002 + - uid: 26412 + components: + - type: Transform + pos: 58.5,24.5 + parent: 21002 + - uid: 26413 + components: + - type: Transform + pos: 58.5,23.5 + parent: 21002 + - uid: 26414 + components: + - type: Transform + pos: 58.5,22.5 + parent: 21002 + - uid: 26415 + components: + - type: Transform + pos: 58.5,21.5 + parent: 21002 + - uid: 26416 + components: + - type: Transform + pos: 58.5,20.5 + parent: 21002 + - uid: 26418 + components: + - type: Transform + pos: 57.5,24.5 + parent: 21002 + - uid: 26419 + components: + - type: Transform + pos: 57.5,23.5 + parent: 21002 + - uid: 26420 + components: + - type: Transform + pos: 57.5,22.5 + parent: 21002 + - uid: 26421 + components: + - type: Transform + pos: 57.5,21.5 + parent: 21002 + - uid: 26426 + components: + - type: Transform + pos: 57.5,16.5 + parent: 21002 + - uid: 26427 + components: + - type: Transform + pos: 57.5,15.5 + parent: 21002 + - uid: 26428 + components: + - type: Transform + pos: 57.5,14.5 + parent: 21002 + - uid: 26431 + components: + - type: Transform + pos: 56.5,23.5 + parent: 21002 + - uid: 26433 + components: + - type: Transform + pos: 56.5,21.5 + parent: 21002 + - uid: 26434 + components: + - type: Transform + pos: 56.5,20.5 + parent: 21002 + - uid: 26436 + components: + - type: Transform + pos: 56.5,18.5 + parent: 21002 + - uid: 26439 + components: + - type: Transform + pos: 56.5,15.5 + parent: 21002 + - uid: 26440 + components: + - type: Transform + pos: 55.5,25.5 + parent: 21002 + - uid: 26441 + components: + - type: Transform + pos: 55.5,24.5 + parent: 21002 + - uid: 26444 + components: + - type: Transform + pos: 55.5,21.5 + parent: 21002 + - uid: 26445 + components: + - type: Transform + pos: 55.5,20.5 + parent: 21002 + - uid: 26446 + components: + - type: Transform + pos: 55.5,19.5 + parent: 21002 + - uid: 26447 + components: + - type: Transform + pos: 55.5,18.5 + parent: 21002 + - uid: 26451 + components: + - type: Transform + pos: 55.5,14.5 + parent: 21002 + - uid: 26452 + components: + - type: Transform + pos: 54.5,25.5 + parent: 21002 + - uid: 26453 + components: + - type: Transform + pos: 54.5,24.5 + parent: 21002 + - uid: 26469 + components: + - type: Transform + pos: 53.5,20.5 + parent: 21002 + - uid: 26475 + components: + - type: Transform + pos: 52.5,25.5 + parent: 21002 + - uid: 26476 + components: + - type: Transform + pos: 52.5,24.5 + parent: 21002 + - uid: 26477 + components: + - type: Transform + pos: 52.5,23.5 + parent: 21002 + - uid: 26479 + components: + - type: Transform + pos: 52.5,21.5 + parent: 21002 + - uid: 26482 + components: + - type: Transform + pos: 52.5,18.5 + parent: 21002 + - uid: 26486 + components: + - type: Transform + pos: 51.5,25.5 + parent: 21002 + - uid: 26487 + components: + - type: Transform + pos: 51.5,24.5 + parent: 21002 + - uid: 26492 + components: + - type: Transform + pos: 51.5,19.5 + parent: 21002 + - uid: 26493 + components: + - type: Transform + pos: 51.5,18.5 + parent: 21002 + - uid: 26494 + components: + - type: Transform + pos: 51.5,17.5 + parent: 21002 + - uid: 26495 + components: + - type: Transform + pos: 51.5,16.5 + parent: 21002 + - uid: 26496 + components: + - type: Transform + pos: 50.5,25.5 + parent: 21002 + - uid: 26501 + components: + - type: Transform + pos: 50.5,20.5 + parent: 21002 + - uid: 26502 + components: + - type: Transform + pos: 50.5,19.5 + parent: 21002 + - uid: 26503 + components: + - type: Transform + pos: 50.5,18.5 + parent: 21002 + - uid: 26504 + components: + - type: Transform + pos: 50.5,17.5 + parent: 21002 + - uid: 26505 + components: + - type: Transform + pos: 50.5,16.5 + parent: 21002 + - uid: 26506 + components: + - type: Transform + pos: 49.5,25.5 + parent: 21002 + - uid: 26507 + components: + - type: Transform + pos: 49.5,24.5 + parent: 21002 + - uid: 26508 + components: + - type: Transform + pos: 49.5,23.5 + parent: 21002 + - uid: 26511 + components: + - type: Transform + pos: 49.5,20.5 + parent: 21002 + - uid: 26512 + components: + - type: Transform + pos: 49.5,16.5 + parent: 21002 + - uid: 26513 + components: + - type: Transform + pos: 48.5,25.5 + parent: 21002 + - uid: 26514 + components: + - type: Transform + pos: 48.5,24.5 + parent: 21002 + - uid: 26515 + components: + - type: Transform + pos: 48.5,23.5 + parent: 21002 + - uid: 26518 + components: + - type: Transform + pos: 47.5,25.5 + parent: 21002 + - uid: 26519 + components: + - type: Transform + pos: 47.5,24.5 + parent: 21002 + - uid: 26520 + components: + - type: Transform + pos: 47.5,23.5 + parent: 21002 + - uid: 26524 + components: + - type: Transform + pos: 46.5,24.5 + parent: 21002 + - uid: 26525 + components: + - type: Transform + pos: 46.5,23.5 + parent: 21002 + - uid: 26528 + components: + - type: Transform + pos: 46.5,16.5 + parent: 21002 + - uid: 26529 + components: + - type: Transform + pos: 45.5,25.5 + parent: 21002 + - uid: 26530 + components: + - type: Transform + pos: 45.5,24.5 + parent: 21002 + - uid: 26531 + components: + - type: Transform + pos: 45.5,23.5 + parent: 21002 + - uid: 26534 + components: + - type: Transform + pos: 45.5,20.5 + parent: 21002 + - uid: 26538 + components: + - type: Transform + pos: 45.5,15.5 + parent: 21002 + - uid: 26539 + components: + - type: Transform + pos: 45.5,14.5 + parent: 21002 + - uid: 26544 + components: + - type: Transform + pos: 44.5,18.5 + parent: 21002 + - uid: 26545 + components: + - type: Transform + pos: 44.5,17.5 + parent: 21002 + - uid: 26551 + components: + - type: Transform + pos: 43.5,17.5 + parent: 21002 + - uid: 26552 + components: + - type: Transform + pos: 43.5,16.5 + parent: 21002 + - uid: 26553 + components: + - type: Transform + pos: 43.5,15.5 + parent: 21002 + - uid: 26555 + components: + - type: Transform + pos: 43.5,13.5 + parent: 21002 + - uid: 26556 + components: + - type: Transform + pos: 42.5,17.5 + parent: 21002 + - uid: 26561 + components: + - type: Transform + pos: 33.5,4.5 + parent: 21002 + - uid: 26564 + components: + - type: Transform + pos: 33.5,1.5 + parent: 21002 + - uid: 26565 + components: + - type: Transform + pos: 33.5,0.5 + parent: 21002 + - uid: 26566 + components: + - type: Transform + pos: 34.5,5.5 + parent: 21002 + - uid: 26567 + components: + - type: Transform + pos: 34.5,4.5 + parent: 21002 + - uid: 26570 + components: + - type: Transform + pos: 34.5,1.5 + parent: 21002 + - uid: 26571 + components: + - type: Transform + pos: 34.5,0.5 + parent: 21002 + - uid: 26572 + components: + - type: Transform + pos: 35.5,6.5 + parent: 21002 + - uid: 26578 + components: + - type: Transform + pos: 35.5,0.5 + parent: 21002 + - uid: 26579 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 21002 + - uid: 26580 + components: + - type: Transform + pos: 36.5,7.5 + parent: 21002 + - uid: 26589 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 21002 + - uid: 26590 + components: + - type: Transform + pos: 37.5,7.5 + parent: 21002 + - uid: 26594 + components: + - type: Transform + pos: 37.5,3.5 + parent: 21002 + - uid: 26599 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 21002 + - uid: 26600 + components: + - type: Transform + pos: 38.5,7.5 + parent: 21002 + - uid: 26604 + components: + - type: Transform + pos: 38.5,3.5 + parent: 21002 + - uid: 26605 + components: + - type: Transform + pos: 38.5,2.5 + parent: 21002 + - uid: 26606 + components: + - type: Transform + pos: 38.5,1.5 + parent: 21002 + - uid: 26610 + components: + - type: Transform + pos: 39.5,16.5 + parent: 21002 + - uid: 26612 + components: + - type: Transform + pos: 39.5,14.5 + parent: 21002 + - uid: 26613 + components: + - type: Transform + pos: 39.5,13.5 + parent: 21002 + - uid: 26614 + components: + - type: Transform + pos: 39.5,12.5 + parent: 21002 + - uid: 26615 + components: + - type: Transform + pos: 39.5,11.5 + parent: 21002 + - uid: 26616 + components: + - type: Transform + pos: 39.5,10.5 + parent: 21002 + - uid: 26617 + components: + - type: Transform + pos: 39.5,9.5 + parent: 21002 + - uid: 26618 + components: + - type: Transform + pos: 39.5,8.5 + parent: 21002 + - uid: 26619 + components: + - type: Transform + pos: 39.5,7.5 + parent: 21002 + - uid: 26623 + components: + - type: Transform + pos: 39.5,3.5 + parent: 21002 + - uid: 26624 + components: + - type: Transform + pos: 39.5,2.5 + parent: 21002 + - uid: 26625 + components: + - type: Transform + pos: 39.5,1.5 + parent: 21002 + - uid: 26626 + components: + - type: Transform + pos: 39.5,0.5 + parent: 21002 + - uid: 26631 + components: + - type: Transform + pos: 40.5,14.5 + parent: 21002 + - uid: 26632 + components: + - type: Transform + pos: 40.5,13.5 + parent: 21002 + - uid: 26633 + components: + - type: Transform + pos: 40.5,12.5 + parent: 21002 + - uid: 26634 + components: + - type: Transform + pos: 40.5,11.5 + parent: 21002 + - uid: 26635 + components: + - type: Transform + pos: 40.5,10.5 + parent: 21002 + - uid: 26636 + components: + - type: Transform + pos: 40.5,9.5 + parent: 21002 + - uid: 26637 + components: + - type: Transform + pos: 40.5,8.5 + parent: 21002 + - uid: 26638 + components: + - type: Transform + pos: 40.5,7.5 + parent: 21002 + - uid: 26641 + components: + - type: Transform + pos: 40.5,4.5 + parent: 21002 + - uid: 26642 + components: + - type: Transform + pos: 40.5,3.5 + parent: 21002 + - uid: 26643 + components: + - type: Transform + pos: 40.5,2.5 + parent: 21002 + - uid: 26644 + components: + - type: Transform + pos: 40.5,1.5 + parent: 21002 + - uid: 26645 + components: + - type: Transform + pos: 40.5,0.5 + parent: 21002 + - uid: 26646 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 21002 + - uid: 26652 + components: + - type: Transform + pos: 41.5,12.5 + parent: 21002 + - uid: 26653 + components: + - type: Transform + pos: 41.5,11.5 + parent: 21002 + - uid: 26654 + components: + - type: Transform + pos: 41.5,10.5 + parent: 21002 + - uid: 26655 + components: + - type: Transform + pos: 41.5,9.5 + parent: 21002 + - uid: 26656 + components: + - type: Transform + pos: 41.5,8.5 + parent: 21002 + - uid: 26660 + components: + - type: Transform + pos: 41.5,4.5 + parent: 21002 + - uid: 26661 + components: + - type: Transform + pos: 41.5,3.5 + parent: 21002 + - uid: 26663 + components: + - type: Transform + pos: 41.5,1.5 + parent: 21002 + - uid: 26664 + components: + - type: Transform + pos: 41.5,0.5 + parent: 21002 + - uid: 26665 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 21002 + - uid: 26666 + components: + - type: Transform + pos: 42.5,12.5 + parent: 21002 + - uid: 26667 + components: + - type: Transform + pos: 42.5,11.5 + parent: 21002 + - uid: 26668 + components: + - type: Transform + pos: 42.5,10.5 + parent: 21002 + - uid: 26669 + components: + - type: Transform + pos: 42.5,9.5 + parent: 21002 + - uid: 26670 + components: + - type: Transform + pos: 42.5,8.5 + parent: 21002 + - uid: 26674 + components: + - type: Transform + pos: 42.5,4.5 + parent: 21002 + - uid: 26675 + components: + - type: Transform + pos: 42.5,3.5 + parent: 21002 + - uid: 26676 + components: + - type: Transform + pos: 43.5,12.5 + parent: 21002 + - uid: 26677 + components: + - type: Transform + pos: 43.5,11.5 + parent: 21002 + - uid: 26678 + components: + - type: Transform + pos: 43.5,10.5 + parent: 21002 + - uid: 26684 + components: + - type: Transform + pos: 43.5,4.5 + parent: 21002 + - uid: 26687 + components: + - type: Transform + pos: 44.5,4.5 + parent: 21002 + - uid: 26688 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 21002 + - uid: 26689 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 21002 + - uid: 26697 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 21002 + - uid: 26698 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 21002 + - uid: 26704 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 21002 + - uid: 26705 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 21002 + - uid: 26706 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 21002 + - uid: 26709 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 21002 + - uid: 26716 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 21002 + - uid: 26722 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 21002 + - uid: 26729 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 21002 + - uid: 26730 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 21002 + - uid: 26731 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 21002 + - uid: 26733 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 21002 + - uid: 26734 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 21002 + - uid: 26735 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 21002 + - uid: 26736 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 21002 + - uid: 26737 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 21002 + - uid: 26739 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 21002 + - uid: 26741 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 21002 + - uid: 26742 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 21002 + - uid: 26743 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 21002 + - uid: 26744 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 21002 + - uid: 26745 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 21002 + - uid: 26749 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 21002 + - uid: 26750 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 21002 + - uid: 26751 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 21002 + - uid: 26752 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 21002 + - uid: 26754 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 21002 + - uid: 26755 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 21002 + - uid: 26756 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 21002 + - uid: 26762 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 21002 + - uid: 26763 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 21002 + - uid: 26767 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 21002 + - uid: 26777 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 21002 + - uid: 26778 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 21002 + - uid: 26779 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 21002 + - uid: 26780 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 21002 + - uid: 26781 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 21002 + - uid: 26782 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 21002 + - uid: 26783 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 21002 + - uid: 26784 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 21002 + - uid: 26785 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 21002 + - uid: 26786 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 21002 + - uid: 26788 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 21002 + - uid: 26790 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 21002 + - uid: 26791 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 21002 + - uid: 26799 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 21002 + - uid: 26800 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 21002 + - uid: 26804 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 21002 + - uid: 26806 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 21002 + - uid: 26809 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 21002 + - uid: 26810 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 21002 + - uid: 26811 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 21002 + - uid: 26815 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 21002 + - uid: 26816 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 21002 + - uid: 26817 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 21002 + - uid: 26818 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 21002 + - uid: 26819 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 21002 + - uid: 26820 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 21002 + - uid: 26821 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 21002 + - uid: 26822 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 21002 + - uid: 26823 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 21002 + - uid: 26826 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 21002 + - uid: 26830 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 21002 + - uid: 26831 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 21002 + - uid: 26834 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 21002 + - uid: 26835 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 21002 + - uid: 26836 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 21002 + - uid: 26837 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 21002 + - uid: 26840 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 21002 + - uid: 26846 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 21002 + - uid: 26847 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 21002 + - uid: 26848 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 21002 + - uid: 26853 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 21002 + - uid: 26854 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 21002 + - uid: 26855 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 21002 + - uid: 26856 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 21002 + - uid: 26864 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 21002 + - uid: 26872 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 21002 + - uid: 26873 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 21002 + - uid: 26875 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 21002 + - uid: 26876 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 21002 + - uid: 26877 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 21002 + - uid: 26878 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 21002 + - uid: 26879 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 21002 + - uid: 26880 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 21002 + - uid: 26881 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 21002 + - uid: 26883 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 21002 + - uid: 26884 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 21002 + - uid: 26886 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 21002 + - uid: 26887 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 21002 + - uid: 26888 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 21002 + - uid: 26889 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 21002 + - uid: 26891 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 21002 + - uid: 26892 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 21002 + - uid: 26893 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 21002 + - uid: 26894 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 21002 + - uid: 26895 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 21002 + - uid: 26896 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 21002 + - uid: 26902 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 21002 + - uid: 26903 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 21002 + - uid: 26904 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 21002 + - uid: 26905 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 21002 + - uid: 26912 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 21002 + - uid: 26913 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 21002 + - uid: 26914 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 21002 + - uid: 26915 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 21002 + - uid: 26916 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 21002 + - uid: 26917 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 21002 + - uid: 26920 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 21002 + - uid: 26922 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 21002 + - uid: 26923 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 21002 + - uid: 26925 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 21002 + - uid: 26926 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 21002 + - uid: 26927 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 21002 + - uid: 26928 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 21002 + - uid: 26930 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 21002 + - uid: 26933 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 21002 + - uid: 26935 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 21002 + - uid: 26936 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 21002 + - uid: 26937 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 21002 + - uid: 26938 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 21002 + - uid: 26939 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 21002 + - uid: 26940 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 21002 + - uid: 26941 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 21002 + - uid: 26943 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 21002 + - uid: 26944 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 21002 + - uid: 26945 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 21002 + - uid: 26946 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 21002 + - uid: 26947 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 21002 + - uid: 26948 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 21002 + - uid: 26949 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 21002 + - uid: 26950 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 21002 + - uid: 26951 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 21002 + - uid: 26952 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 21002 + - uid: 26953 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 21002 + - uid: 26954 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 21002 + - uid: 26955 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 21002 + - uid: 26956 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 21002 + - uid: 26958 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 21002 + - uid: 26961 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 21002 + - uid: 26962 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 21002 + - uid: 26963 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 21002 + - uid: 26964 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 21002 + - uid: 26969 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 21002 + - uid: 26970 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 21002 + - uid: 26971 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 21002 + - uid: 26973 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 21002 + - uid: 26974 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 21002 + - uid: 26975 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 21002 + - uid: 26976 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 21002 + - uid: 26979 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 21002 + - uid: 26983 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 21002 + - uid: 26985 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 21002 + - uid: 26986 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 21002 + - uid: 26989 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 21002 + - uid: 26990 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 21002 + - uid: 26991 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 21002 + - uid: 26999 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 21002 + - uid: 27009 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 21002 + - uid: 27010 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 21002 + - uid: 27016 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 21002 + - uid: 27017 + components: + - type: Transform + pos: 50.5,-16.5 + parent: 21002 + - uid: 27018 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 21002 + - uid: 27019 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 21002 + - uid: 27021 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 21002 + - uid: 27023 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 21002 + - uid: 27024 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 21002 + - uid: 27025 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 21002 + - uid: 27026 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 21002 + - uid: 27027 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 21002 + - uid: 27028 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 21002 + - uid: 27033 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 21002 + - uid: 27034 + components: + - type: Transform + pos: 55.5,-19.5 + parent: 21002 + - uid: 27035 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 21002 + - uid: 27036 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 21002 + - uid: 27037 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 21002 + - uid: 27038 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 21002 + - uid: 27039 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 21002 + - uid: 27040 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 21002 + - uid: 27041 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 21002 + - uid: 27042 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 21002 + - uid: 27043 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 21002 + - uid: 27044 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 21002 + - uid: 27045 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 21002 + - uid: 27046 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 21002 + - uid: 27047 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 21002 + - uid: 27048 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 21002 + - uid: 27049 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 21002 + - uid: 27050 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 21002 + - uid: 27051 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 21002 + - uid: 27052 + components: + - type: Transform + pos: 58.5,-18.5 + parent: 21002 + - uid: 27053 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 21002 + - uid: 27054 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 21002 + - uid: 27056 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 21002 + - uid: 27057 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 21002 + - uid: 27059 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 21002 + - uid: 27060 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 21002 + - uid: 27061 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 21002 + - uid: 27063 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 21002 + - uid: 27064 + components: + - type: Transform + pos: 52.5,-18.5 + parent: 21002 + - uid: 27067 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 21002 + - uid: 27068 + components: + - type: Transform + pos: 50.5,-18.5 + parent: 21002 + - uid: 27069 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 21002 + - uid: 27074 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 21002 + - uid: 27075 + components: + - type: Transform + pos: 55.5,-21.5 + parent: 21002 + - uid: 27076 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 21002 + - uid: 27077 + components: + - type: Transform + pos: 54.5,-21.5 + parent: 21002 + - uid: 27078 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 21002 + - uid: 27079 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 21002 + - uid: 27080 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 21002 + - uid: 27082 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 21002 + - uid: 27084 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 21002 + - uid: 27085 + components: + - type: Transform + pos: 50.5,-21.5 + parent: 21002 + - uid: 27086 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 21002 + - uid: 27087 + components: + - type: Transform + pos: 50.5,-23.5 + parent: 21002 + - uid: 27088 + components: + - type: Transform + pos: 50.5,-24.5 + parent: 21002 + - uid: 27089 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 21002 + - uid: 27090 + components: + - type: Transform + pos: 51.5,-24.5 + parent: 21002 + - uid: 27091 + components: + - type: Transform + pos: 52.5,-23.5 + parent: 21002 + - uid: 27092 + components: + - type: Transform + pos: 52.5,-24.5 + parent: 21002 + - uid: 27093 + components: + - type: Transform + pos: 53.5,-23.5 + parent: 21002 + - uid: 27094 + components: + - type: Transform + pos: 54.5,-23.5 + parent: 21002 + - uid: 27095 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 21002 + - uid: 27096 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 21002 + - uid: 27097 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 21002 + - uid: 27099 + components: + - type: Transform + pos: 53.5,-15.5 + parent: 21002 + - uid: 27100 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 21002 + - uid: 27101 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 21002 + - uid: 27102 + components: + - type: Transform + pos: 52.5,-14.5 + parent: 21002 + - uid: 27103 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 21002 + - uid: 27104 + components: + - type: Transform + pos: 52.5,-12.5 + parent: 21002 + - uid: 27105 + components: + - type: Transform + pos: 52.5,-11.5 + parent: 21002 + - uid: 27106 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 21002 + - uid: 27107 + components: + - type: Transform + pos: 52.5,-9.5 + parent: 21002 + - uid: 27108 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 21002 + - uid: 27110 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 21002 + - uid: 27111 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 21002 + - uid: 27112 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 21002 + - uid: 27113 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 21002 + - uid: 27114 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 21002 + - uid: 27115 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 21002 + - uid: 27117 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 21002 + - uid: 27118 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 21002 + - uid: 27119 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 21002 + - uid: 27120 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 21002 + - uid: 27121 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 21002 + - uid: 27123 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 21002 + - uid: 27125 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 21002 + - uid: 27126 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 21002 + - uid: 27127 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 21002 + - uid: 27128 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 21002 + - uid: 27130 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 21002 + - uid: 27132 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 21002 + - uid: 27135 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 21002 + - uid: 27136 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 21002 + - uid: 27138 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 21002 + - uid: 27140 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 21002 + - uid: 27141 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 21002 + - uid: 27142 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 21002 + - uid: 27143 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 21002 + - uid: 27144 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 21002 + - uid: 27146 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 21002 + - uid: 27147 + components: + - type: Transform + pos: 52.5,0.5 + parent: 21002 + - uid: 27149 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 21002 + - uid: 27150 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 21002 + - uid: 27151 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 21002 + - uid: 27152 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 21002 + - uid: 27153 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 21002 + - uid: 27154 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 21002 + - uid: 27155 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 21002 + - uid: 27156 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 21002 + - uid: 27157 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 21002 + - uid: 27158 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 21002 + - uid: 27160 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 21002 + - uid: 27161 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 21002 + - uid: 27162 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 21002 + - uid: 27163 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 21002 + - uid: 27164 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 21002 + - uid: 27165 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 21002 + - uid: 27166 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 21002 + - uid: 27170 + components: + - type: Transform + pos: 54.5,-8.5 + parent: 21002 + - uid: 27174 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 21002 + - uid: 27177 + components: + - type: Transform + pos: 54.5,-1.5 + parent: 21002 + - uid: 27178 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 21002 + - uid: 27179 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 21002 + - uid: 27183 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 21002 + - uid: 27184 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 21002 + - uid: 27185 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 21002 + - uid: 27186 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 21002 + - uid: 27187 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 21002 + - uid: 27188 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 21002 + - uid: 27189 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 21002 + - uid: 27191 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 21002 + - uid: 27192 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 21002 + - uid: 27193 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 21002 + - uid: 27194 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 21002 + - uid: 27198 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 21002 + - uid: 27199 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 21002 + - uid: 27200 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 21002 + - uid: 27201 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 21002 + - uid: 27202 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 21002 + - uid: 27203 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 21002 + - uid: 27204 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 21002 + - uid: 27205 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 21002 + - uid: 27209 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 21002 + - uid: 27211 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 21002 + - uid: 27212 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 21002 + - uid: 27213 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 21002 + - uid: 27214 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 21002 + - uid: 27215 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 21002 + - uid: 27218 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 21002 + - uid: 27219 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 21002 + - uid: 27220 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 21002 + - uid: 27221 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 21002 + - uid: 27222 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 21002 + - uid: 27223 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 21002 + - uid: 27224 + components: + - type: Transform + pos: 59.5,-5.5 + parent: 21002 + - uid: 27225 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 21002 + - uid: 27226 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 21002 + - uid: 27227 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 21002 + - uid: 27228 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 21002 + - uid: 27230 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 21002 + - uid: 27231 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 21002 + - uid: 27232 + components: + - type: Transform + pos: 58.5,-5.5 + parent: 21002 + - uid: 27233 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 21002 + - uid: 27234 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 21002 + - uid: 27235 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 21002 + - uid: 27236 + components: + - type: Transform + pos: 58.5,-1.5 + parent: 21002 + - uid: 27237 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 21002 + - uid: 27238 + components: + - type: Transform + pos: 61.5,-6.5 + parent: 21002 + - uid: 27239 + components: + - type: Transform + pos: 61.5,-5.5 + parent: 21002 + - uid: 27240 + components: + - type: Transform + pos: 61.5,-4.5 + parent: 21002 + - uid: 27241 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 21002 + - uid: 27242 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 21002 + - uid: 27243 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 21002 + - uid: 27244 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 21002 + - uid: 27245 + components: + - type: Transform + pos: 60.5,-1.5 + parent: 21002 + - uid: 27248 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 21002 + - uid: 27249 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 21002 + - uid: 27250 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 21002 + - uid: 27253 + components: + - type: Transform + pos: 61.5,2.5 + parent: 21002 + - uid: 27255 + components: + - type: Transform + pos: 61.5,4.5 + parent: 21002 + - uid: 27258 + components: + - type: Transform + pos: 61.5,7.5 + parent: 21002 + - uid: 27259 + components: + - type: Transform + pos: 61.5,8.5 + parent: 21002 + - uid: 27260 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 21002 + - uid: 27262 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 21002 + - uid: 27264 + components: + - type: Transform + pos: 62.5,1.5 + parent: 21002 + - uid: 27265 + components: + - type: Transform + pos: 62.5,2.5 + parent: 21002 + - uid: 27269 + components: + - type: Transform + pos: 62.5,6.5 + parent: 21002 + - uid: 27270 + components: + - type: Transform + pos: 62.5,7.5 + parent: 21002 + - uid: 27271 + components: + - type: Transform + pos: 62.5,8.5 + parent: 21002 + - uid: 27272 + components: + - type: Transform + pos: 62.5,9.5 + parent: 21002 + - uid: 27273 + components: + - type: Transform + pos: 62.5,12.5 + parent: 21002 + - uid: 27278 + components: + - type: Transform + pos: 63.5,1.5 + parent: 21002 + - uid: 27279 + components: + - type: Transform + pos: 63.5,2.5 + parent: 21002 + - uid: 27284 + components: + - type: Transform + pos: 63.5,7.5 + parent: 21002 + - uid: 27285 + components: + - type: Transform + pos: 63.5,8.5 + parent: 21002 + - uid: 27286 + components: + - type: Transform + pos: 63.5,9.5 + parent: 21002 + - uid: 27288 + components: + - type: Transform + pos: 63.5,12.5 + parent: 21002 + - uid: 27289 + components: + - type: Transform + pos: 63.5,13.5 + parent: 21002 + - uid: 27290 + components: + - type: Transform + pos: 63.5,14.5 + parent: 21002 + - uid: 27295 + components: + - type: Transform + pos: 64.5,1.5 + parent: 21002 + - uid: 27296 + components: + - type: Transform + pos: 64.5,2.5 + parent: 21002 + - uid: 27297 + components: + - type: Transform + pos: 64.5,3.5 + parent: 21002 + - uid: 27301 + components: + - type: Transform + pos: 64.5,7.5 + parent: 21002 + - uid: 27302 + components: + - type: Transform + pos: 64.5,8.5 + parent: 21002 + - uid: 27303 + components: + - type: Transform + pos: 64.5,9.5 + parent: 21002 + - uid: 27304 + components: + - type: Transform + pos: 64.5,10.5 + parent: 21002 + - uid: 27306 + components: + - type: Transform + pos: 64.5,12.5 + parent: 21002 + - uid: 27310 + components: + - type: Transform + pos: 58.5,18.5 + parent: 21002 + - uid: 27312 + components: + - type: Transform + pos: 59.5,18.5 + parent: 21002 + - uid: 27313 + components: + - type: Transform + pos: 60.5,19.5 + parent: 21002 + - uid: 27314 + components: + - type: Transform + pos: 60.5,18.5 + parent: 21002 + - uid: 27315 + components: + - type: Transform + pos: 61.5,19.5 + parent: 21002 + - uid: 27316 + components: + - type: Transform + pos: 61.5,18.5 + parent: 21002 + - uid: 27317 + components: + - type: Transform + pos: 62.5,19.5 + parent: 21002 + - uid: 27318 + components: + - type: Transform + pos: 62.5,18.5 + parent: 21002 + - uid: 27320 + components: + - type: Transform + pos: 63.5,18.5 + parent: 21002 + - uid: 27322 + components: + - type: Transform + pos: 64.5,18.5 + parent: 21002 + - uid: 27323 + components: + - type: Transform + pos: 65.5,19.5 + parent: 21002 + - uid: 27324 + components: + - type: Transform + pos: 65.5,18.5 + parent: 21002 + - uid: 27325 + components: + - type: Transform + pos: 66.5,19.5 + parent: 21002 + - uid: 27326 + components: + - type: Transform + pos: 66.5,18.5 + parent: 21002 + - uid: 27328 + components: + - type: Transform + pos: 67.5,18.5 + parent: 21002 + - uid: 27331 + components: + - type: Transform + pos: 69.5,19.5 + parent: 21002 + - uid: 27332 + components: + - type: Transform + pos: 69.5,18.5 + parent: 21002 + - uid: 27333 + components: + - type: Transform + pos: 70.5,19.5 + parent: 21002 + - uid: 27334 + components: + - type: Transform + pos: 70.5,18.5 + parent: 21002 + - uid: 27335 + components: + - type: Transform + pos: 71.5,19.5 + parent: 21002 + - uid: 27336 + components: + - type: Transform + pos: 71.5,18.5 + parent: 21002 + - uid: 27337 + components: + - type: Transform + pos: 63.5,17.5 + parent: 21002 + - uid: 27338 + components: + - type: Transform + pos: 63.5,16.5 + parent: 21002 + - uid: 27339 + components: + - type: Transform + pos: 63.5,15.5 + parent: 21002 + - uid: 27340 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 21002 + - uid: 27341 + components: + - type: Transform + pos: 63.5,-4.5 + parent: 21002 + - uid: 27342 + components: + - type: Transform + pos: 64.5,17.5 + parent: 21002 + - uid: 27343 + components: + - type: Transform + pos: 64.5,16.5 + parent: 21002 + - uid: 27344 + components: + - type: Transform + pos: 64.5,15.5 + parent: 21002 + - uid: 27345 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 21002 + - uid: 27346 + components: + - type: Transform + pos: 64.5,-4.5 + parent: 21002 + - uid: 27347 + components: + - type: Transform + pos: 65.5,17.5 + parent: 21002 + - uid: 27348 + components: + - type: Transform + pos: 65.5,16.5 + parent: 21002 + - uid: 27349 + components: + - type: Transform + pos: 65.5,15.5 + parent: 21002 + - uid: 27350 + components: + - type: Transform + pos: 65.5,14.5 + parent: 21002 + - uid: 27355 + components: + - type: Transform + pos: 65.5,9.5 + parent: 21002 + - uid: 27356 + components: + - type: Transform + pos: 65.5,8.5 + parent: 21002 + - uid: 27357 + components: + - type: Transform + pos: 65.5,7.5 + parent: 21002 + - uid: 27358 + components: + - type: Transform + pos: 65.5,6.5 + parent: 21002 + - uid: 27361 + components: + - type: Transform + pos: 65.5,3.5 + parent: 21002 + - uid: 27362 + components: + - type: Transform + pos: 65.5,2.5 + parent: 21002 + - uid: 27363 + components: + - type: Transform + pos: 65.5,1.5 + parent: 21002 + - uid: 27365 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 21002 + - uid: 27366 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 21002 + - uid: 27367 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 21002 + - uid: 27368 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 21002 + - uid: 27369 + components: + - type: Transform + pos: 65.5,-4.5 + parent: 21002 + - uid: 27370 + components: + - type: Transform + pos: 66.5,17.5 + parent: 21002 + - uid: 27371 + components: + - type: Transform + pos: 66.5,16.5 + parent: 21002 + - uid: 27372 + components: + - type: Transform + pos: 66.5,15.5 + parent: 21002 + - uid: 27373 + components: + - type: Transform + pos: 66.5,14.5 + parent: 21002 + - uid: 27374 + components: + - type: Transform + pos: 66.5,13.5 + parent: 21002 + - uid: 27375 + components: + - type: Transform + pos: 66.5,12.5 + parent: 21002 + - uid: 27379 + components: + - type: Transform + pos: 66.5,8.5 + parent: 21002 + - uid: 27380 + components: + - type: Transform + pos: 66.5,7.5 + parent: 21002 + - uid: 27381 + components: + - type: Transform + pos: 66.5,6.5 + parent: 21002 + - uid: 27383 + components: + - type: Transform + pos: 66.5,4.5 + parent: 21002 + - uid: 27384 + components: + - type: Transform + pos: 66.5,3.5 + parent: 21002 + - uid: 27385 + components: + - type: Transform + pos: 66.5,2.5 + parent: 21002 + - uid: 27386 + components: + - type: Transform + pos: 66.5,1.5 + parent: 21002 + - uid: 27387 + components: + - type: Transform + pos: 66.5,0.5 + parent: 21002 + - uid: 27388 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 21002 + - uid: 27389 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 21002 + - uid: 27390 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 21002 + - uid: 27392 + components: + - type: Transform + pos: 66.5,-4.5 + parent: 21002 + - uid: 27393 + components: + - type: Transform + pos: 67.5,17.5 + parent: 21002 + - uid: 27394 + components: + - type: Transform + pos: 67.5,16.5 + parent: 21002 + - uid: 27395 + components: + - type: Transform + pos: 67.5,15.5 + parent: 21002 + - uid: 27396 + components: + - type: Transform + pos: 67.5,14.5 + parent: 21002 + - uid: 27397 + components: + - type: Transform + pos: 67.5,13.5 + parent: 21002 + - uid: 27398 + components: + - type: Transform + pos: 67.5,12.5 + parent: 21002 + - uid: 27399 + components: + - type: Transform + pos: 67.5,11.5 + parent: 21002 + - uid: 27400 + components: + - type: Transform + pos: 67.5,10.5 + parent: 21002 + - uid: 27401 + components: + - type: Transform + pos: 67.5,9.5 + parent: 21002 + - uid: 27406 + components: + - type: Transform + pos: 67.5,4.5 + parent: 21002 + - uid: 27407 + components: + - type: Transform + pos: 67.5,3.5 + parent: 21002 + - uid: 27408 + components: + - type: Transform + pos: 67.5,2.5 + parent: 21002 + - uid: 27409 + components: + - type: Transform + pos: 67.5,1.5 + parent: 21002 + - uid: 27410 + components: + - type: Transform + pos: 67.5,0.5 + parent: 21002 + - uid: 27416 + components: + - type: Transform + pos: 68.5,17.5 + parent: 21002 + - uid: 27417 + components: + - type: Transform + pos: 68.5,16.5 + parent: 21002 + - uid: 27418 + components: + - type: Transform + pos: 68.5,15.5 + parent: 21002 + - uid: 27419 + components: + - type: Transform + pos: 68.5,14.5 + parent: 21002 + - uid: 27420 + components: + - type: Transform + pos: 68.5,13.5 + parent: 21002 + - uid: 27421 + components: + - type: Transform + pos: 68.5,12.5 + parent: 21002 + - uid: 27422 + components: + - type: Transform + pos: 68.5,11.5 + parent: 21002 + - uid: 27423 + components: + - type: Transform + pos: 68.5,10.5 + parent: 21002 + - uid: 27424 + components: + - type: Transform + pos: 68.5,9.5 + parent: 21002 + - uid: 27426 + components: + - type: Transform + pos: 68.5,7.5 + parent: 21002 + - uid: 27427 + components: + - type: Transform + pos: 68.5,6.5 + parent: 21002 + - uid: 27428 + components: + - type: Transform + pos: 68.5,5.5 + parent: 21002 + - uid: 27429 + components: + - type: Transform + pos: 68.5,4.5 + parent: 21002 + - uid: 27431 + components: + - type: Transform + pos: 68.5,2.5 + parent: 21002 + - uid: 27432 + components: + - type: Transform + pos: 68.5,1.5 + parent: 21002 + - uid: 27434 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 21002 + - uid: 27439 + components: + - type: Transform + pos: 69.5,17.5 + parent: 21002 + - uid: 27440 + components: + - type: Transform + pos: 69.5,16.5 + parent: 21002 + - uid: 27441 + components: + - type: Transform + pos: 69.5,15.5 + parent: 21002 + - uid: 27442 + components: + - type: Transform + pos: 69.5,14.5 + parent: 21002 + - uid: 27444 + components: + - type: Transform + pos: 69.5,12.5 + parent: 21002 + - uid: 27445 + components: + - type: Transform + pos: 69.5,11.5 + parent: 21002 + - uid: 27446 + components: + - type: Transform + pos: 69.5,10.5 + parent: 21002 + - uid: 27447 + components: + - type: Transform + pos: 69.5,9.5 + parent: 21002 + - uid: 27448 + components: + - type: Transform + pos: 69.5,8.5 + parent: 21002 + - uid: 27449 + components: + - type: Transform + pos: 69.5,7.5 + parent: 21002 + - uid: 27450 + components: + - type: Transform + pos: 69.5,6.5 + parent: 21002 + - uid: 27451 + components: + - type: Transform + pos: 69.5,5.5 + parent: 21002 + - uid: 27453 + components: + - type: Transform + pos: 69.5,3.5 + parent: 21002 + - uid: 27454 + components: + - type: Transform + pos: 69.5,2.5 + parent: 21002 + - uid: 27455 + components: + - type: Transform + pos: 69.5,1.5 + parent: 21002 + - uid: 27458 + components: + - type: Transform + pos: 69.5,-1.5 + parent: 21002 + - uid: 27459 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 21002 + - uid: 27460 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 21002 + - uid: 27461 + components: + - type: Transform + pos: 69.5,-4.5 + parent: 21002 + - uid: 27462 + components: + - type: Transform + pos: 70.5,17.5 + parent: 21002 + - uid: 27463 + components: + - type: Transform + pos: 70.5,16.5 + parent: 21002 + - uid: 27464 + components: + - type: Transform + pos: 70.5,15.5 + parent: 21002 + - uid: 27467 + components: + - type: Transform + pos: 70.5,12.5 + parent: 21002 + - uid: 27468 + components: + - type: Transform + pos: 70.5,11.5 + parent: 21002 + - uid: 27469 + components: + - type: Transform + pos: 70.5,10.5 + parent: 21002 + - uid: 27470 + components: + - type: Transform + pos: 70.5,9.5 + parent: 21002 + - uid: 27471 + components: + - type: Transform + pos: 70.5,8.5 + parent: 21002 + - uid: 27472 + components: + - type: Transform + pos: 70.5,7.5 + parent: 21002 + - uid: 27473 + components: + - type: Transform + pos: 70.5,6.5 + parent: 21002 + - uid: 27476 + components: + - type: Transform + pos: 70.5,3.5 + parent: 21002 + - uid: 27477 + components: + - type: Transform + pos: 70.5,2.5 + parent: 21002 + - uid: 27479 + components: + - type: Transform + pos: 70.5,0.5 + parent: 21002 + - uid: 27480 + components: + - type: Transform + pos: 70.5,-0.5 + parent: 21002 + - uid: 27481 + components: + - type: Transform + pos: 70.5,-1.5 + parent: 21002 + - uid: 27482 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 21002 + - uid: 27483 + components: + - type: Transform + pos: 70.5,-3.5 + parent: 21002 + - uid: 27484 + components: + - type: Transform + pos: 70.5,-4.5 + parent: 21002 + - uid: 27485 + components: + - type: Transform + pos: 71.5,17.5 + parent: 21002 + - uid: 27486 + components: + - type: Transform + pos: 71.5,16.5 + parent: 21002 + - uid: 27487 + components: + - type: Transform + pos: 71.5,15.5 + parent: 21002 + - uid: 27488 + components: + - type: Transform + pos: 71.5,14.5 + parent: 21002 + - uid: 27489 + components: + - type: Transform + pos: 71.5,13.5 + parent: 21002 + - uid: 27490 + components: + - type: Transform + pos: 71.5,12.5 + parent: 21002 + - uid: 27491 + components: + - type: Transform + pos: 71.5,11.5 + parent: 21002 + - uid: 27492 + components: + - type: Transform + pos: 71.5,10.5 + parent: 21002 + - uid: 27493 + components: + - type: Transform + pos: 71.5,9.5 + parent: 21002 + - uid: 27494 + components: + - type: Transform + pos: 71.5,8.5 + parent: 21002 + - uid: 27495 + components: + - type: Transform + pos: 71.5,7.5 + parent: 21002 + - uid: 27497 + components: + - type: Transform + pos: 71.5,5.5 + parent: 21002 + - uid: 27499 + components: + - type: Transform + pos: 71.5,3.5 + parent: 21002 + - uid: 27500 + components: + - type: Transform + pos: 71.5,2.5 + parent: 21002 + - uid: 27503 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 21002 + - uid: 27504 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 21002 + - uid: 27505 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 21002 + - uid: 27506 + components: + - type: Transform + pos: 71.5,-3.5 + parent: 21002 + - uid: 27507 + components: + - type: Transform + pos: 71.5,-4.5 + parent: 21002 + - uid: 27508 + components: + - type: Transform + pos: 72.5,17.5 + parent: 21002 + - uid: 27509 + components: + - type: Transform + pos: 72.5,16.5 + parent: 21002 + - uid: 27510 + components: + - type: Transform + pos: 72.5,15.5 + parent: 21002 + - uid: 27511 + components: + - type: Transform + pos: 72.5,14.5 + parent: 21002 + - uid: 27512 + components: + - type: Transform + pos: 72.5,13.5 + parent: 21002 + - uid: 27513 + components: + - type: Transform + pos: 72.5,12.5 + parent: 21002 + - uid: 27514 + components: + - type: Transform + pos: 72.5,11.5 + parent: 21002 + - uid: 27515 + components: + - type: Transform + pos: 72.5,10.5 + parent: 21002 + - uid: 27516 + components: + - type: Transform + pos: 72.5,9.5 + parent: 21002 + - uid: 27517 + components: + - type: Transform + pos: 72.5,8.5 + parent: 21002 + - uid: 27518 + components: + - type: Transform + pos: 72.5,7.5 + parent: 21002 + - uid: 27519 + components: + - type: Transform + pos: 72.5,6.5 + parent: 21002 + - uid: 27520 + components: + - type: Transform + pos: 72.5,5.5 + parent: 21002 + - uid: 27521 + components: + - type: Transform + pos: 72.5,4.5 + parent: 21002 + - uid: 27523 + components: + - type: Transform + pos: 72.5,2.5 + parent: 21002 + - uid: 27524 + components: + - type: Transform + pos: 72.5,1.5 + parent: 21002 + - uid: 27525 + components: + - type: Transform + pos: 72.5,0.5 + parent: 21002 + - uid: 27526 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 21002 + - uid: 27527 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 21002 + - uid: 27528 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 21002 + - uid: 27529 + components: + - type: Transform + pos: 72.5,-3.5 + parent: 21002 + - uid: 27530 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 21002 + - uid: 27531 + components: + - type: Transform + pos: 73.5,17.5 + parent: 21002 + - uid: 27532 + components: + - type: Transform + pos: 73.5,16.5 + parent: 21002 + - uid: 27533 + components: + - type: Transform + pos: 73.5,15.5 + parent: 21002 + - uid: 27534 + components: + - type: Transform + pos: 73.5,14.5 + parent: 21002 + - uid: 27536 + components: + - type: Transform + pos: 73.5,12.5 + parent: 21002 + - uid: 27537 + components: + - type: Transform + pos: 73.5,11.5 + parent: 21002 + - uid: 27538 + components: + - type: Transform + pos: 74.5,16.5 + parent: 21002 + - uid: 27539 + components: + - type: Transform + pos: 74.5,15.5 + parent: 21002 + - uid: 27540 + components: + - type: Transform + pos: 74.5,14.5 + parent: 21002 + - uid: 27542 + components: + - type: Transform + pos: 74.5,12.5 + parent: 21002 + - uid: 27543 + components: + - type: Transform + pos: 74.5,11.5 + parent: 21002 + - uid: 27544 + components: + - type: Transform + pos: 75.5,15.5 + parent: 21002 + - uid: 27545 + components: + - type: Transform + pos: 75.5,14.5 + parent: 21002 + - uid: 27546 + components: + - type: Transform + pos: 75.5,13.5 + parent: 21002 + - uid: 27547 + components: + - type: Transform + pos: 75.5,12.5 + parent: 21002 + - uid: 27548 + components: + - type: Transform + pos: 75.5,11.5 + parent: 21002 + - uid: 27549 + components: + - type: Transform + pos: 75.5,10.5 + parent: 21002 + - uid: 27550 + components: + - type: Transform + pos: 76.5,15.5 + parent: 21002 + - uid: 27551 + components: + - type: Transform + pos: 76.5,14.5 + parent: 21002 + - uid: 27552 + components: + - type: Transform + pos: 76.5,13.5 + parent: 21002 + - uid: 27553 + components: + - type: Transform + pos: 76.5,12.5 + parent: 21002 + - uid: 27554 + components: + - type: Transform + pos: 76.5,11.5 + parent: 21002 + - uid: 27555 + components: + - type: Transform + pos: 76.5,10.5 + parent: 21002 + - uid: 27556 + components: + - type: Transform + pos: 77.5,13.5 + parent: 21002 + - uid: 27559 + components: + - type: Transform + pos: 77.5,10.5 + parent: 21002 + - uid: 27560 + components: + - type: Transform + pos: 77.5,9.5 + parent: 21002 + - uid: 27561 + components: + - type: Transform + pos: 78.5,13.5 + parent: 21002 + - uid: 27562 + components: + - type: Transform + pos: 78.5,12.5 + parent: 21002 + - uid: 27564 + components: + - type: Transform + pos: 78.5,10.5 + parent: 21002 + - uid: 27565 + components: + - type: Transform + pos: 78.5,9.5 + parent: 21002 + - uid: 27566 + components: + - type: Transform + pos: 79.5,12.5 + parent: 21002 + - uid: 27567 + components: + - type: Transform + pos: 79.5,11.5 + parent: 21002 + - uid: 27568 + components: + - type: Transform + pos: 79.5,10.5 + parent: 21002 + - uid: 27569 + components: + - type: Transform + pos: 79.5,9.5 + parent: 21002 + - uid: 27570 + components: + - type: Transform + pos: 79.5,8.5 + parent: 21002 + - uid: 27571 + components: + - type: Transform + pos: 79.5,7.5 + parent: 21002 + - uid: 27572 + components: + - type: Transform + pos: 80.5,12.5 + parent: 21002 + - uid: 27573 + components: + - type: Transform + pos: 80.5,11.5 + parent: 21002 + - uid: 27574 + components: + - type: Transform + pos: 80.5,10.5 + parent: 21002 + - uid: 27577 + components: + - type: Transform + pos: 80.5,7.5 + parent: 21002 + - uid: 27578 + components: + - type: Transform + pos: 78.5,7.5 + parent: 21002 + - uid: 27579 + components: + - type: Transform + pos: 78.5,8.5 + parent: 21002 + - uid: 27580 + components: + - type: Transform + pos: 81.5,11.5 + parent: 21002 + - uid: 27581 + components: + - type: Transform + pos: 81.5,10.5 + parent: 21002 + - uid: 27584 + components: + - type: Transform + pos: 81.5,7.5 + parent: 21002 + - uid: 27585 + components: + - type: Transform + pos: 81.5,6.5 + parent: 21002 + - uid: 27586 + components: + - type: Transform + pos: 82.5,10.5 + parent: 21002 + - uid: 27589 + components: + - type: Transform + pos: 82.5,7.5 + parent: 21002 + - uid: 27590 + components: + - type: Transform + pos: 82.5,6.5 + parent: 21002 + - uid: 27591 + components: + - type: Transform + pos: 83.5,10.5 + parent: 21002 + - uid: 27594 + components: + - type: Transform + pos: 83.5,7.5 + parent: 21002 + - uid: 27595 + components: + - type: Transform + pos: 83.5,6.5 + parent: 21002 + - uid: 27596 + components: + - type: Transform + pos: 84.5,10.5 + parent: 21002 + - uid: 27597 + components: + - type: Transform + pos: 84.5,9.5 + parent: 21002 + - uid: 27598 + components: + - type: Transform + pos: 84.5,8.5 + parent: 21002 + - uid: 27599 + components: + - type: Transform + pos: 84.5,7.5 + parent: 21002 + - uid: 27600 + components: + - type: Transform + pos: 84.5,6.5 + parent: 21002 + - uid: 27601 + components: + - type: Transform + pos: 82.5,4.5 + parent: 21002 + - uid: 27602 + components: + - type: Transform + pos: 82.5,5.5 + parent: 21002 + - uid: 27603 + components: + - type: Transform + pos: 83.5,4.5 + parent: 21002 + - uid: 27604 + components: + - type: Transform + pos: 83.5,5.5 + parent: 21002 + - uid: 27605 + components: + - type: Transform + pos: 84.5,4.5 + parent: 21002 + - uid: 27606 + components: + - type: Transform + pos: 84.5,5.5 + parent: 21002 + - uid: 27607 + components: + - type: Transform + pos: 85.5,4.5 + parent: 21002 + - uid: 27608 + components: + - type: Transform + pos: 85.5,5.5 + parent: 21002 + - uid: 27609 + components: + - type: Transform + pos: 86.5,4.5 + parent: 21002 + - uid: 27615 + components: + - type: Transform + pos: 89.5,4.5 + parent: 21002 + - uid: 27616 + components: + - type: Transform + pos: 89.5,5.5 + parent: 21002 + - uid: 27617 + components: + - type: Transform + pos: 92.5,8.5 + parent: 21002 + - uid: 27618 + components: + - type: Transform + pos: 92.5,9.5 + parent: 21002 + - uid: 27619 + components: + - type: Transform + pos: 92.5,10.5 + parent: 21002 + - uid: 27620 + components: + - type: Transform + pos: 92.5,11.5 + parent: 21002 + - uid: 27621 + components: + - type: Transform + pos: 91.5,8.5 + parent: 21002 + - uid: 27624 + components: + - type: Transform + pos: 91.5,11.5 + parent: 21002 + - uid: 27625 + components: + - type: Transform + pos: 90.5,8.5 + parent: 21002 + - uid: 27628 + components: + - type: Transform + pos: 90.5,11.5 + parent: 21002 + - uid: 27630 + components: + - type: Transform + pos: 89.5,9.5 + parent: 21002 + - uid: 27631 + components: + - type: Transform + pos: 89.5,10.5 + parent: 21002 + - uid: 27632 + components: + - type: Transform + pos: 89.5,11.5 + parent: 21002 + - uid: 27633 + components: + - type: Transform + pos: 90.5,6.5 + parent: 21002 + - uid: 27634 + components: + - type: Transform + pos: 90.5,7.5 + parent: 21002 + - uid: 27635 + components: + - type: Transform + pos: 89.5,6.5 + parent: 21002 + - uid: 27642 + components: + - type: Transform + pos: 87.5,8.5 + parent: 21002 + - uid: 27645 + components: + - type: Transform + pos: 86.5,8.5 + parent: 21002 + - uid: 27647 + components: + - type: Transform + pos: 85.5,7.5 + parent: 21002 + - uid: 27648 + components: + - type: Transform + pos: 85.5,8.5 + parent: 21002 + - uid: 27649 + components: + - type: Transform + pos: 88.5,9.5 + parent: 21002 + - uid: 27650 + components: + - type: Transform + pos: 87.5,9.5 + parent: 21002 + - uid: 27651 + components: + - type: Transform + pos: 84.5,3.5 + parent: 21002 + - uid: 27652 + components: + - type: Transform + pos: 85.5,3.5 + parent: 21002 + - uid: 27653 + components: + - type: Transform + pos: 86.5,3.5 + parent: 21002 + - uid: 27655 + components: + - type: Transform + pos: 88.5,3.5 + parent: 21002 + - uid: 27656 + components: + - type: Transform + pos: 89.5,3.5 + parent: 21002 + - uid: 27657 + components: + - type: Transform + pos: 85.5,2.5 + parent: 21002 + - uid: 27658 + components: + - type: Transform + pos: 85.5,1.5 + parent: 21002 + - uid: 27659 + components: + - type: Transform + pos: 86.5,2.5 + parent: 21002 + - uid: 27660 + components: + - type: Transform + pos: 86.5,1.5 + parent: 21002 + - uid: 27661 + components: + - type: Transform + pos: 87.5,2.5 + parent: 21002 + - uid: 27662 + components: + - type: Transform + pos: 87.5,1.5 + parent: 21002 + - uid: 27665 + components: + - type: Transform + pos: 89.5,2.5 + parent: 21002 + - uid: 27666 + components: + - type: Transform + pos: 89.5,1.5 + parent: 21002 + - uid: 27667 + components: + - type: Transform + pos: 90.5,2.5 + parent: 21002 + - uid: 27668 + components: + - type: Transform + pos: 90.5,1.5 + parent: 21002 + - uid: 27669 + components: + - type: Transform + pos: 87.5,0.5 + parent: 21002 + - uid: 27670 + components: + - type: Transform + pos: 87.5,-0.5 + parent: 21002 + - uid: 27671 + components: + - type: Transform + pos: 87.5,-1.5 + parent: 21002 + - uid: 27673 + components: + - type: Transform + pos: 88.5,-0.5 + parent: 21002 + - uid: 27674 + components: + - type: Transform + pos: 88.5,-1.5 + parent: 21002 + - uid: 27678 + components: + - type: Transform + pos: 90.5,0.5 + parent: 21002 + - uid: 27679 + components: + - type: Transform + pos: 90.5,-0.5 + parent: 21002 + - uid: 27681 + components: + - type: Transform + pos: 92.5,-0.5 + parent: 21002 + - uid: 27682 + components: + - type: Transform + pos: 92.5,-1.5 + parent: 21002 + - uid: 27683 + components: + - type: Transform + pos: 92.5,-2.5 + parent: 21002 + - uid: 27684 + components: + - type: Transform + pos: 92.5,-3.5 + parent: 21002 + - uid: 27685 + components: + - type: Transform + pos: 91.5,-0.5 + parent: 21002 + - uid: 27693 + components: + - type: Transform + pos: 88.5,-2.5 + parent: 21002 + - uid: 27694 + components: + - type: Transform + pos: 88.5,-3.5 + parent: 21002 + - uid: 27695 + components: + - type: Transform + pos: 92.5,-8.5 + parent: 21002 + - uid: 27696 + components: + - type: Transform + pos: 92.5,-7.5 + parent: 21002 + - uid: 27697 + components: + - type: Transform + pos: 92.5,-6.5 + parent: 21002 + - uid: 27698 + components: + - type: Transform + pos: 92.5,-5.5 + parent: 21002 + - uid: 27699 + components: + - type: Transform + pos: 91.5,-8.5 + parent: 21002 + - uid: 27706 + components: + - type: Transform + pos: 90.5,-5.5 + parent: 21002 + - uid: 27715 + components: + - type: Transform + pos: 87.5,-8.5 + parent: 21002 + - uid: 27716 + components: + - type: Transform + pos: 87.5,-7.5 + parent: 21002 + - uid: 27717 + components: + - type: Transform + pos: 87.5,-6.5 + parent: 21002 + - uid: 27718 + components: + - type: Transform + pos: 87.5,-5.5 + parent: 21002 + - uid: 27719 + components: + - type: Transform + pos: 87.5,-4.5 + parent: 21002 + - uid: 27720 + components: + - type: Transform + pos: 88.5,-4.5 + parent: 21002 + - uid: 27724 + components: + - type: Transform + pos: 91.5,-9.5 + parent: 21002 + - uid: 27725 + components: + - type: Transform + pos: 90.5,-10.5 + parent: 21002 + - uid: 27726 + components: + - type: Transform + pos: 90.5,-9.5 + parent: 21002 + - uid: 27727 + components: + - type: Transform + pos: 89.5,-10.5 + parent: 21002 + - uid: 27728 + components: + - type: Transform + pos: 89.5,-9.5 + parent: 21002 + - uid: 27729 + components: + - type: Transform + pos: 88.5,-10.5 + parent: 21002 + - uid: 27731 + components: + - type: Transform + pos: 87.5,-10.5 + parent: 21002 + - uid: 27734 + components: + - type: Transform + pos: 86.5,-9.5 + parent: 21002 + - uid: 27735 + components: + - type: Transform + pos: 85.5,-10.5 + parent: 21002 + - uid: 27737 + components: + - type: Transform + pos: 84.5,-10.5 + parent: 21002 + - uid: 27739 + components: + - type: Transform + pos: 83.5,-10.5 + parent: 21002 + - uid: 27741 + components: + - type: Transform + pos: 82.5,-10.5 + parent: 21002 + - uid: 27743 + components: + - type: Transform + pos: 81.5,-10.5 + parent: 21002 + - uid: 27744 + components: + - type: Transform + pos: 81.5,-9.5 + parent: 21002 + - uid: 27745 + components: + - type: Transform + pos: 80.5,-10.5 + parent: 21002 + - uid: 27746 + components: + - type: Transform + pos: 80.5,-9.5 + parent: 21002 + - uid: 27747 + components: + - type: Transform + pos: 79.5,-10.5 + parent: 21002 + - uid: 27748 + components: + - type: Transform + pos: 79.5,-9.5 + parent: 21002 + - uid: 27749 + components: + - type: Transform + pos: 87.5,-11.5 + parent: 21002 + - uid: 27750 + components: + - type: Transform + pos: 86.5,-11.5 + parent: 21002 + - uid: 27751 + components: + - type: Transform + pos: 86.5,-8.5 + parent: 21002 + - uid: 27752 + components: + - type: Transform + pos: 85.5,-11.5 + parent: 21002 + - uid: 27753 + components: + - type: Transform + pos: 85.5,-8.5 + parent: 21002 + - uid: 27754 + components: + - type: Transform + pos: 84.5,-11.5 + parent: 21002 + - uid: 27755 + components: + - type: Transform + pos: 84.5,-8.5 + parent: 21002 + - uid: 27756 + components: + - type: Transform + pos: 83.5,-11.5 + parent: 21002 + - uid: 27757 + components: + - type: Transform + pos: 83.5,-8.5 + parent: 21002 + - uid: 27758 + components: + - type: Transform + pos: 82.5,-11.5 + parent: 21002 + - uid: 27759 + components: + - type: Transform + pos: 82.5,-8.5 + parent: 21002 + - uid: 27761 + components: + - type: Transform + pos: 83.5,-7.5 + parent: 21002 + - uid: 27762 + components: + - type: Transform + pos: 82.5,-7.5 + parent: 21002 + - uid: 27763 + components: + - type: Transform + pos: 81.5,-7.5 + parent: 21002 + - uid: 27766 + components: + - type: Transform + pos: 80.5,-8.5 + parent: 21002 + - uid: 27768 + components: + - type: Transform + pos: 79.5,-8.5 + parent: 21002 + - uid: 27769 + components: + - type: Transform + pos: 78.5,-7.5 + parent: 21002 + - uid: 27770 + components: + - type: Transform + pos: 78.5,-8.5 + parent: 21002 + - uid: 27771 + components: + - type: Transform + pos: 77.5,-7.5 + parent: 21002 + - uid: 27772 + components: + - type: Transform + pos: 77.5,-8.5 + parent: 21002 + - uid: 27773 + components: + - type: Transform + pos: 82.5,-6.5 + parent: 21002 + - uid: 27774 + components: + - type: Transform + pos: 81.5,-6.5 + parent: 21002 + - uid: 27775 + components: + - type: Transform + pos: 80.5,-6.5 + parent: 21002 + - uid: 27776 + components: + - type: Transform + pos: 79.5,-6.5 + parent: 21002 + - uid: 27778 + components: + - type: Transform + pos: 77.5,-6.5 + parent: 21002 + - uid: 27779 + components: + - type: Transform + pos: 76.5,-6.5 + parent: 21002 + - uid: 27780 + components: + - type: Transform + pos: 76.5,-7.5 + parent: 21002 + - uid: 27781 + components: + - type: Transform + pos: 75.5,-6.5 + parent: 21002 + - uid: 27782 + components: + - type: Transform + pos: 75.5,-7.5 + parent: 21002 + - uid: 27783 + components: + - type: Transform + pos: 80.5,-5.5 + parent: 21002 + - uid: 27784 + components: + - type: Transform + pos: 79.5,-5.5 + parent: 21002 + - uid: 27785 + components: + - type: Transform + pos: 78.5,-5.5 + parent: 21002 + - uid: 27786 + components: + - type: Transform + pos: 77.5,-5.5 + parent: 21002 + - uid: 27787 + components: + - type: Transform + pos: 76.5,-5.5 + parent: 21002 + - uid: 27788 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 21002 + - uid: 27789 + components: + - type: Transform + pos: 74.5,-5.5 + parent: 21002 + - uid: 27790 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 21002 + - uid: 27791 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 21002 + - uid: 27792 + components: + - type: Transform + pos: 73.5,-5.5 + parent: 21002 + - uid: 27793 + components: + - type: Transform + pos: 79.5,-4.5 + parent: 21002 + - uid: 27794 + components: + - type: Transform + pos: 79.5,-3.5 + parent: 21002 + - uid: 27795 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 21002 + - uid: 27796 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 21002 + - uid: 27797 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 21002 + - uid: 27801 + components: + - type: Transform + pos: 78.5,-1.5 + parent: 21002 + - uid: 27802 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 21002 + - uid: 27806 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 21002 + - uid: 27807 + components: + - type: Transform + pos: 77.5,-0.5 + parent: 21002 + - uid: 27811 + components: + - type: Transform + pos: 76.5,-1.5 + parent: 21002 + - uid: 27812 + components: + - type: Transform + pos: 76.5,-0.5 + parent: 21002 + - uid: 27817 + components: + - type: Transform + pos: 75.5,-0.5 + parent: 21002 + - uid: 27818 + components: + - type: Transform + pos: 74.5,-4.5 + parent: 21002 + - uid: 27819 + components: + - type: Transform + pos: 74.5,-3.5 + parent: 21002 + - uid: 27821 + components: + - type: Transform + pos: 74.5,-1.5 + parent: 21002 + - uid: 27823 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 21002 + - uid: 27824 + components: + - type: Transform + pos: 73.5,-3.5 + parent: 21002 + - uid: 27826 + components: + - type: Transform + pos: 73.5,-1.5 + parent: 21002 + - uid: 27827 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 21002 + - uid: 27828 + components: + - type: Transform + pos: 78.5,0.5 + parent: 21002 + - uid: 27829 + components: + - type: Transform + pos: 78.5,1.5 + parent: 21002 + - uid: 27830 + components: + - type: Transform + pos: 78.5,2.5 + parent: 21002 + - uid: 27831 + components: + - type: Transform + pos: 77.5,0.5 + parent: 21002 + - uid: 27832 + components: + - type: Transform + pos: 77.5,1.5 + parent: 21002 + - uid: 27833 + components: + - type: Transform + pos: 77.5,2.5 + parent: 21002 + - uid: 27843 + components: + - type: Transform + pos: 73.5,0.5 + parent: 21002 + - uid: 27844 + components: + - type: Transform + pos: 73.5,1.5 + parent: 21002 + - uid: 27845 + components: + - type: Transform + pos: 73.5,2.5 + parent: 21002 + - uid: 27846 + components: + - type: Transform + pos: 77.5,3.5 + parent: 21002 + - uid: 27847 + components: + - type: Transform + pos: 77.5,4.5 + parent: 21002 + - uid: 27849 + components: + - type: Transform + pos: 76.5,4.5 + parent: 21002 + - uid: 27851 + components: + - type: Transform + pos: 75.5,4.5 + parent: 21002 + - uid: 27853 + components: + - type: Transform + pos: 74.5,4.5 + parent: 21002 + - uid: 27854 + components: + - type: Transform + pos: 73.5,3.5 + parent: 21002 + - uid: 27855 + components: + - type: Transform + pos: 73.5,4.5 + parent: 21002 + - uid: 27856 + components: + - type: Transform + pos: 75.5,5.5 + parent: 21002 + - uid: 27857 + components: + - type: Transform + pos: 74.5,6.5 + parent: 21002 + - uid: 27858 + components: + - type: Transform + pos: 74.5,5.5 + parent: 21002 + - uid: 27859 + components: + - type: Transform + pos: 73.5,5.5 + parent: 21002 + - uid: 27860 + components: + - type: Transform + pos: 73.5,6.5 + parent: 21002 + - uid: 27861 + components: + - type: Transform + pos: 73.5,7.5 + parent: 21002 + - uid: 27862 + components: + - type: Transform + pos: 73.5,8.5 + parent: 21002 + - uid: 27863 + components: + - type: Transform + pos: 73.5,9.5 + parent: 21002 + - uid: 27864 + components: + - type: Transform + pos: 64.5,-5.5 + parent: 21002 + - uid: 27865 + components: + - type: Transform + pos: 65.5,-5.5 + parent: 21002 + - uid: 27866 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 21002 + - uid: 27869 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 21002 + - uid: 27870 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 21002 + - uid: 27871 + components: + - type: Transform + pos: 65.5,-6.5 + parent: 21002 + - uid: 27872 + components: + - type: Transform + pos: 66.5,-6.5 + parent: 21002 + - uid: 27875 + components: + - type: Transform + pos: 69.5,-6.5 + parent: 21002 + - uid: 27876 + components: + - type: Transform + pos: 66.5,-7.5 + parent: 21002 + - uid: 27877 + components: + - type: Transform + pos: 66.5,-8.5 + parent: 21002 + - uid: 27878 + components: + - type: Transform + pos: 67.5,-7.5 + parent: 21002 + - uid: 27879 + components: + - type: Transform + pos: 67.5,-8.5 + parent: 21002 + - uid: 27882 + components: + - type: Transform + pos: 69.5,-7.5 + parent: 21002 + - uid: 27883 + components: + - type: Transform + pos: 69.5,-8.5 + parent: 21002 + - uid: 27884 + components: + - type: Transform + pos: 67.5,-9.5 + parent: 21002 + - uid: 27885 + components: + - type: Transform + pos: 67.5,-10.5 + parent: 21002 + - uid: 27886 + components: + - type: Transform + pos: 67.5,-11.5 + parent: 21002 + - uid: 27887 + components: + - type: Transform + pos: 67.5,-12.5 + parent: 21002 + - uid: 27891 + components: + - type: Transform + pos: 68.5,-12.5 + parent: 21002 + - uid: 27892 + components: + - type: Transform + pos: 69.5,-9.5 + parent: 21002 + - uid: 27895 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 21002 + - uid: 27896 + components: + - type: Transform + pos: 70.5,-9.5 + parent: 21002 + - uid: 27897 + components: + - type: Transform + pos: 70.5,-10.5 + parent: 21002 + - uid: 27899 + components: + - type: Transform + pos: 70.5,-12.5 + parent: 21002 + - uid: 27900 + components: + - type: Transform + pos: 71.5,-9.5 + parent: 21002 + - uid: 27903 + components: + - type: Transform + pos: 71.5,-12.5 + parent: 21002 + - uid: 27904 + components: + - type: Transform + pos: 72.5,-9.5 + parent: 21002 + - uid: 27905 + components: + - type: Transform + pos: 72.5,-10.5 + parent: 21002 + - uid: 27908 + components: + - type: Transform + pos: 72.5,-8.5 + parent: 21002 + - uid: 27909 + components: + - type: Transform + pos: 72.5,-7.5 + parent: 21002 + - uid: 27910 + components: + - type: Transform + pos: 71.5,-8.5 + parent: 21002 + - uid: 27911 + components: + - type: Transform + pos: 71.5,-7.5 + parent: 21002 + - uid: 27912 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 21002 + - uid: 27913 + components: + - type: Transform + pos: 69.5,-13.5 + parent: 21002 + - uid: 27914 + components: + - type: Transform + pos: 70.5,-13.5 + parent: 21002 + - uid: 27915 + components: + - type: Transform + pos: 71.5,-13.5 + parent: 21002 + - uid: 27917 + components: + - type: Transform + pos: 73.5,-13.5 + parent: 21002 + - uid: 27918 + components: + - type: Transform + pos: 74.5,-13.5 + parent: 21002 + - uid: 27919 + components: + - type: Transform + pos: 75.5,-13.5 + parent: 21002 + - uid: 27920 + components: + - type: Transform + pos: 76.5,-13.5 + parent: 21002 + - uid: 27921 + components: + - type: Transform + pos: 77.5,-12.5 + parent: 21002 + - uid: 27922 + components: + - type: Transform + pos: 76.5,-12.5 + parent: 21002 + - uid: 27923 + components: + - type: Transform + pos: 75.5,-12.5 + parent: 21002 + - uid: 27924 + components: + - type: Transform + pos: 74.5,-12.5 + parent: 21002 + - uid: 27925 + components: + - type: Transform + pos: 73.5,-12.5 + parent: 21002 + - uid: 27926 + components: + - type: Transform + pos: 73.5,-10.5 + parent: 21002 + - uid: 27927 + components: + - type: Transform + pos: 73.5,-11.5 + parent: 21002 + - uid: 27928 + components: + - type: Transform + pos: 74.5,-11.5 + parent: 21002 + - uid: 27929 + components: + - type: Transform + pos: 76.5,-11.5 + parent: 21002 + - uid: 27930 + components: + - type: Transform + pos: 71.5,-14.5 + parent: 21002 + - uid: 27931 + components: + - type: Transform + pos: 71.5,-15.5 + parent: 21002 + - uid: 27932 + components: + - type: Transform + pos: 71.5,-16.5 + parent: 21002 + - uid: 27935 + components: + - type: Transform + pos: 72.5,-16.5 + parent: 21002 + - uid: 27936 + components: + - type: Transform + pos: 73.5,-14.5 + parent: 21002 + - uid: 27942 + components: + - type: Transform + pos: 75.5,-14.5 + parent: 21002 + - uid: 27943 + components: + - type: Transform + pos: 75.5,-15.5 + parent: 21002 + - uid: 27944 + components: + - type: Transform + pos: 75.5,-16.5 + parent: 21002 + - uid: 27945 + components: + - type: Transform + pos: 70.5,-15.5 + parent: 21002 + - uid: 27946 + components: + - type: Transform + pos: 72.5,-17.5 + parent: 21002 + - uid: 27947 + components: + - type: Transform + pos: 73.5,-17.5 + parent: 21002 + - uid: 27950 + components: + - type: Transform + pos: 76.5,-17.5 + parent: 21002 + - uid: 27952 + components: + - type: Transform + pos: 78.5,-17.5 + parent: 21002 + - uid: 27953 + components: + - type: Transform + pos: 79.5,-17.5 + parent: 21002 + - uid: 27954 + components: + - type: Transform + pos: 79.5,-16.5 + parent: 21002 + - uid: 27955 + components: + - type: Transform + pos: 78.5,-16.5 + parent: 21002 + - uid: 27956 + components: + - type: Transform + pos: 77.5,-16.5 + parent: 21002 + - uid: 27957 + components: + - type: Transform + pos: 76.5,-16.5 + parent: 21002 + - uid: 27958 + components: + - type: Transform + pos: 78.5,-15.5 + parent: 21002 + - uid: 27959 + components: + - type: Transform + pos: 77.5,-15.5 + parent: 21002 + - uid: 27960 + components: + - type: Transform + pos: 73.5,-18.5 + parent: 21002 + - uid: 27961 + components: + - type: Transform + pos: 73.5,-19.5 + parent: 21002 + - uid: 27962 + components: + - type: Transform + pos: 73.5,-20.5 + parent: 21002 + - uid: 27971 + components: + - type: Transform + pos: 76.5,-20.5 + parent: 21002 + - uid: 27978 + components: + - type: Transform + pos: 79.5,-18.5 + parent: 21002 + - uid: 27980 + components: + - type: Transform + pos: 79.5,-20.5 + parent: 21002 + - uid: 27981 + components: + - type: Transform + pos: 80.5,-18.5 + parent: 21002 + - uid: 27982 + components: + - type: Transform + pos: 80.5,-19.5 + parent: 21002 + - uid: 27983 + components: + - type: Transform + pos: 80.5,-20.5 + parent: 21002 + - uid: 27984 + components: + - type: Transform + pos: 79.5,-21.5 + parent: 21002 + - uid: 27985 + components: + - type: Transform + pos: 78.5,-21.5 + parent: 21002 + - uid: 27987 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 21002 + - uid: 27990 + components: + - type: Transform + pos: 73.5,-21.5 + parent: 21002 + - uid: 27991 + components: + - type: Transform + pos: 72.5,-21.5 + parent: 21002 + - uid: 27992 + components: + - type: Transform + pos: 75.5,-24.5 + parent: 21002 + - uid: 27993 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 21002 + - uid: 27994 + components: + - type: Transform + pos: 71.5,-22.5 + parent: 21002 + - uid: 27995 + components: + - type: Transform + pos: 71.5,-23.5 + parent: 21002 + - uid: 27996 + components: + - type: Transform + pos: 71.5,-24.5 + parent: 21002 + - uid: 27997 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 21002 + - uid: 27998 + components: + - type: Transform + pos: 72.5,-23.5 + parent: 21002 + - uid: 27999 + components: + - type: Transform + pos: 72.5,-24.5 + parent: 21002 + - uid: 28000 + components: + - type: Transform + pos: 73.5,-22.5 + parent: 21002 + - uid: 28001 + components: + - type: Transform + pos: 73.5,-23.5 + parent: 21002 + - uid: 28002 + components: + - type: Transform + pos: 73.5,-24.5 + parent: 21002 + - uid: 28003 + components: + - type: Transform + pos: 74.5,-23.5 + parent: 21002 + - uid: 28005 + components: + - type: Transform + pos: 75.5,-23.5 + parent: 21002 + - uid: 28007 + components: + - type: Transform + pos: 76.5,-23.5 + parent: 21002 + - uid: 28008 + components: + - type: Transform + pos: 76.5,-22.5 + parent: 21002 + - uid: 28009 + components: + - type: Transform + pos: 77.5,-22.5 + parent: 21002 + - uid: 28010 + components: + - type: Transform + pos: 78.5,-22.5 + parent: 21002 + - uid: 28014 + components: + - type: Transform + pos: 53.5,7.5 + parent: 21002 + - uid: 28015 + components: + - type: Transform + pos: 53.5,6.5 + parent: 21002 + - uid: 28021 + components: + - type: Transform + pos: 54.5,6.5 + parent: 21002 + - uid: 28022 + components: + - type: Transform + pos: 55.5,11.5 + parent: 21002 + - uid: 28023 + components: + - type: Transform + pos: 55.5,10.5 + parent: 21002 + - uid: 28027 + components: + - type: Transform + pos: 55.5,6.5 + parent: 21002 + - uid: 28028 + components: + - type: Transform + pos: 56.5,10.5 + parent: 21002 + - uid: 28029 + components: + - type: Transform + pos: 56.5,9.5 + parent: 21002 + - uid: 28032 + components: + - type: Transform + pos: 56.5,6.5 + parent: 21002 + - uid: 28033 + components: + - type: Transform + pos: 57.5,9.5 + parent: 21002 + - uid: 28036 + components: + - type: Transform + pos: 57.5,6.5 + parent: 21002 + - uid: 28037 + components: + - type: Transform + pos: 58.5,10.5 + parent: 21002 + - uid: 28040 + components: + - type: Transform + pos: 58.5,7.5 + parent: 21002 + - uid: 28041 + components: + - type: Transform + pos: 58.5,6.5 + parent: 21002 + - uid: 28048 + components: + - type: Transform + pos: 52.5,6.5 + parent: 21002 + - uid: 28049 + components: + - type: Transform + pos: 52.5,5.5 + parent: 21002 + - uid: 28050 + components: + - type: Transform + pos: 52.5,4.5 + parent: 21002 + - uid: 28051 + components: + - type: Transform + pos: 52.5,3.5 + parent: 21002 + - uid: 28052 + components: + - type: Transform + pos: 52.5,2.5 + parent: 21002 + - uid: 28055 + components: + - type: Transform + pos: 51.5,6.5 + parent: 21002 + - uid: 28056 + components: + - type: Transform + pos: 51.5,5.5 + parent: 21002 + - uid: 28057 + components: + - type: Transform + pos: 51.5,4.5 + parent: 21002 + - uid: 28058 + components: + - type: Transform + pos: 51.5,3.5 + parent: 21002 + - uid: 28059 + components: + - type: Transform + pos: 51.5,2.5 + parent: 21002 + - uid: 28060 + components: + - type: Transform + pos: 53.5,5.5 + parent: 21002 + - uid: 28061 + components: + - type: Transform + pos: 50.5,3.5 + parent: 21002 + - uid: 28062 + components: + - type: Transform + pos: 50.5,4.5 + parent: 21002 + - uid: 28063 + components: + - type: Transform + pos: 50.5,5.5 + parent: 21002 + - uid: 28064 + components: + - type: Transform + pos: 50.5,6.5 + parent: 21002 + - uid: 28068 + components: + - type: Transform + pos: 49.5,4.5 + parent: 21002 + - uid: 28069 + components: + - type: Transform + pos: 49.5,5.5 + parent: 21002 + - uid: 28070 + components: + - type: Transform + pos: 49.5,6.5 + parent: 21002 + - uid: 28073 + components: + - type: Transform + pos: 48.5,3.5 + parent: 21002 + - uid: 28074 + components: + - type: Transform + pos: 48.5,4.5 + parent: 21002 + - uid: 28077 + components: + - type: Transform + pos: 47.5,4.5 + parent: 21002 + - uid: 28078 + components: + - type: Transform + pos: 47.5,7.5 + parent: 21002 + - uid: 28293 + components: + - type: Transform + pos: 29.5,7.5 + parent: 21002 + - uid: 28301 + components: + - type: Transform + pos: 62.5,4.5 + parent: 21002 +- proto: AsteroidRockArtifactFragment + entities: + - uid: 21525 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 21002 + - uid: 21602 + components: + - type: Transform + pos: 31.5,18.5 + parent: 21002 + - uid: 21614 + components: + - type: Transform + pos: 14.5,13.5 + parent: 21002 + - uid: 22020 + components: + - type: Transform + pos: 24.5,40.5 + parent: 21002 + - uid: 25547 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 21002 + - uid: 25643 + components: + - type: Transform + pos: 44.5,27.5 + parent: 21002 + - uid: 25757 + components: + - type: Transform + pos: 59.5,33.5 + parent: 21002 + - uid: 25947 + components: + - type: Transform + pos: 56.5,44.5 + parent: 21002 + - uid: 25957 + components: + - type: Transform + pos: 54.5,43.5 + parent: 21002 + - uid: 25963 + components: + - type: Transform + pos: 55.5,44.5 + parent: 21002 + - uid: 25964 + components: + - type: Transform + pos: 55.5,43.5 + parent: 21002 + - uid: 26189 + components: + - type: Transform + pos: 72.5,50.5 + parent: 21002 + - uid: 26240 + components: + - type: Transform + pos: 71.5,30.5 + parent: 21002 + - uid: 26362 + components: + - type: Transform + pos: 63.5,20.5 + parent: 21002 + - uid: 26746 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 21002 + - uid: 26758 + components: + - type: Transform + pos: 77.5,11.5 + parent: 21002 + - uid: 26908 + components: + - type: Transform + pos: 21.5,38.5 + parent: 21002 + - uid: 27098 + components: + - type: Transform + pos: 82.5,8.5 + parent: 21002 + - uid: 27275 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 21002 + - uid: 27321 + components: + - type: Transform + pos: 64.5,19.5 + parent: 21002 + - uid: 27541 + components: + - type: Transform + pos: 74.5,13.5 + parent: 21002 + - uid: 27611 + components: + - type: Transform + pos: 87.5,4.5 + parent: 21002 + - uid: 27937 + components: + - type: Transform + pos: 73.5,-15.5 + parent: 21002 +- proto: AsteroidRockBananium + entities: + - uid: 25905 + components: + - type: Transform + pos: 50.5,34.5 + parent: 21002 + - uid: 25908 + components: + - type: Transform + pos: 51.5,36.5 + parent: 21002 + - uid: 25909 + components: + - type: Transform + pos: 51.5,35.5 + parent: 21002 + - uid: 25910 + components: + - type: Transform + pos: 51.5,34.5 + parent: 21002 + - uid: 25913 + components: + - type: Transform + pos: 52.5,36.5 + parent: 21002 + - uid: 27124 + components: + - type: Transform + pos: 91.5,9.5 + parent: 21002 + - uid: 27137 + components: + - type: Transform + pos: 91.5,10.5 + parent: 21002 + - uid: 27139 + components: + - type: Transform + pos: 90.5,9.5 + parent: 21002 + - uid: 27159 + components: + - type: Transform + pos: 90.5,10.5 + parent: 21002 + - uid: 27229 + components: + - type: Transform + pos: 89.5,8.5 + parent: 21002 + - uid: 27247 + components: + - type: Transform + pos: 89.5,7.5 + parent: 21002 + - uid: 27252 + components: + - type: Transform + pos: 88.5,7.5 + parent: 21002 + - uid: 27254 + components: + - type: Transform + pos: 88.5,8.5 + parent: 21002 + - uid: 27261 + components: + - type: Transform + pos: 87.5,6.5 + parent: 21002 +- proto: AsteroidRockCoal + entities: + - uid: 21478 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 21002 + - uid: 21480 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 21002 + - uid: 21481 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 21002 + - uid: 21484 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 21002 + - uid: 21486 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 21002 + - uid: 21487 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 21002 + - uid: 21533 + components: + - type: Transform + pos: 51.5,0.5 + parent: 21002 + - uid: 21541 + components: + - type: Transform + pos: 54.5,0.5 + parent: 21002 + - uid: 21542 + components: + - type: Transform + pos: 53.5,0.5 + parent: 21002 + - uid: 21543 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 21002 + - uid: 21544 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 21002 + - uid: 21583 + components: + - type: Transform + pos: 60.5,16.5 + parent: 21002 + - uid: 21584 + components: + - type: Transform + pos: 58.5,17.5 + parent: 21002 + - uid: 21585 + components: + - type: Transform + pos: 58.5,16.5 + parent: 21002 + - uid: 21586 + components: + - type: Transform + pos: 59.5,16.5 + parent: 21002 + - uid: 21816 + components: + - type: Transform + pos: 41.5,24.5 + parent: 21002 + - uid: 21821 + components: + - type: Transform + pos: 35.5,23.5 + parent: 21002 + - uid: 25612 + components: + - type: Transform + pos: 40.5,26.5 + parent: 21002 + - uid: 25678 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 21002 + - uid: 25679 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 21002 + - uid: 25686 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 21002 + - uid: 25690 + components: + - type: Transform + pos: 50.5,28.5 + parent: 21002 + - uid: 25699 + components: + - type: Transform + pos: 51.5,27.5 + parent: 21002 + - uid: 25704 + components: + - type: Transform + pos: 52.5,30.5 + parent: 21002 + - uid: 25705 + components: + - type: Transform + pos: 52.5,29.5 + parent: 21002 + - uid: 25706 + components: + - type: Transform + pos: 52.5,28.5 + parent: 21002 + - uid: 25713 + components: + - type: Transform + pos: 53.5,29.5 + parent: 21002 + - uid: 25714 + components: + - type: Transform + pos: 53.5,28.5 + parent: 21002 + - uid: 25721 + components: + - type: Transform + pos: 54.5,29.5 + parent: 21002 + - uid: 25723 + components: + - type: Transform + pos: 54.5,27.5 + parent: 21002 + - uid: 25729 + components: + - type: Transform + pos: 55.5,29.5 + parent: 21002 + - uid: 25758 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 21002 + - uid: 25786 + components: + - type: Transform + pos: 35.5,24.5 + parent: 21002 + - uid: 25790 + components: + - type: Transform + pos: 36.5,25.5 + parent: 21002 + - uid: 25791 + components: + - type: Transform + pos: 36.5,24.5 + parent: 21002 + - uid: 25795 + components: + - type: Transform + pos: 37.5,25.5 + parent: 21002 + - uid: 25800 + components: + - type: Transform + pos: 38.5,25.5 + parent: 21002 + - uid: 25801 + components: + - type: Transform + pos: 38.5,24.5 + parent: 21002 + - uid: 25803 + components: + - type: Transform + pos: 39.5,25.5 + parent: 21002 + - uid: 25805 + components: + - type: Transform + pos: 39.5,23.5 + parent: 21002 + - uid: 25806 + components: + - type: Transform + pos: 40.5,25.5 + parent: 21002 + - uid: 25827 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 21002 + - uid: 25986 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 21002 + - uid: 25989 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 21002 + - uid: 26005 + components: + - type: Transform + pos: 65.5,36.5 + parent: 21002 + - uid: 26006 + components: + - type: Transform + pos: 65.5,35.5 + parent: 21002 + - uid: 26008 + components: + - type: Transform + pos: 66.5,36.5 + parent: 21002 + - uid: 26014 + components: + - type: Transform + pos: 68.5,36.5 + parent: 21002 + - uid: 26048 + components: + - type: Transform + pos: 66.5,38.5 + parent: 21002 + - uid: 26052 + components: + - type: Transform + pos: 67.5,37.5 + parent: 21002 + - uid: 26054 + components: + - type: Transform + pos: 68.5,38.5 + parent: 21002 + - uid: 26055 + components: + - type: Transform + pos: 68.5,37.5 + parent: 21002 + - uid: 26179 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 21002 + - uid: 26188 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 21002 + - uid: 26239 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 21002 + - uid: 26258 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 21002 + - uid: 26259 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 21002 + - uid: 26272 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 21002 + - uid: 26284 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 21002 + - uid: 26285 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 21002 + - uid: 26286 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 21002 + - uid: 26313 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 21002 + - uid: 26314 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 21002 + - uid: 26422 + components: + - type: Transform + pos: 57.5,20.5 + parent: 21002 + - uid: 26423 + components: + - type: Transform + pos: 57.5,19.5 + parent: 21002 + - uid: 26424 + components: + - type: Transform + pos: 57.5,18.5 + parent: 21002 + - uid: 26425 + components: + - type: Transform + pos: 57.5,17.5 + parent: 21002 + - uid: 26435 + components: + - type: Transform + pos: 56.5,19.5 + parent: 21002 + - uid: 26437 + components: + - type: Transform + pos: 56.5,17.5 + parent: 21002 + - uid: 26438 + components: + - type: Transform + pos: 56.5,16.5 + parent: 21002 + - uid: 26805 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 21002 + - uid: 26807 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 21002 + - uid: 26812 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 21002 + - uid: 26813 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 21002 + - uid: 26814 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 21002 + - uid: 26918 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 21002 + - uid: 26919 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 21002 + - uid: 26921 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 21002 + - uid: 26929 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 21002 + - uid: 26931 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 21002 + - uid: 26957 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 21002 + - uid: 26980 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 21002 + - uid: 26981 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 21002 + - uid: 26982 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 21002 + - uid: 26984 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 21002 + - uid: 26993 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 21002 + - uid: 26994 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 21002 + - uid: 26995 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 21002 + - uid: 26996 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 21002 + - uid: 27116 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 21002 + - uid: 27129 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 21002 + - uid: 27131 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 21002 + - uid: 27145 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 21002 + - uid: 27148 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 21002 + - uid: 27190 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 21002 + - uid: 27309 + components: + - type: Transform + pos: 58.5,19.5 + parent: 21002 + - uid: 27311 + components: + - type: Transform + pos: 59.5,19.5 + parent: 21002 +- proto: AsteroidRockGold + entities: + - uid: 22046 + components: + - type: Transform + pos: 59.5,32.5 + parent: 21002 + - uid: 22055 + components: + - type: Transform + pos: 58.5,34.5 + parent: 21002 + - uid: 22061 + components: + - type: Transform + pos: 59.5,34.5 + parent: 21002 + - uid: 25235 + components: + - type: Transform + pos: 60.5,33.5 + parent: 21002 + - uid: 26277 + components: + - type: Transform + pos: 69.5,21.5 + parent: 21002 + - uid: 26278 + components: + - type: Transform + pos: 69.5,20.5 + parent: 21002 + - uid: 26292 + components: + - type: Transform + pos: 68.5,20.5 + parent: 21002 + - uid: 26757 + components: + - type: Transform + pos: 77.5,12.5 + parent: 21002 + - uid: 26759 + components: + - type: Transform + pos: 78.5,11.5 + parent: 21002 + - uid: 27083 + components: + - type: Transform + pos: 81.5,8.5 + parent: 21002 + - uid: 27327 + components: + - type: Transform + pos: 67.5,19.5 + parent: 21002 + - uid: 27329 + components: + - type: Transform + pos: 68.5,19.5 + parent: 21002 + - uid: 27330 + components: + - type: Transform + pos: 68.5,18.5 + parent: 21002 + - uid: 27975 + components: + - type: Transform + pos: 78.5,-18.5 + parent: 21002 + - uid: 27976 + components: + - type: Transform + pos: 78.5,-19.5 + parent: 21002 + - uid: 27977 + components: + - type: Transform + pos: 78.5,-20.5 + parent: 21002 + - uid: 27979 + components: + - type: Transform + pos: 79.5,-19.5 + parent: 21002 +- proto: AsteroidRockMining + entities: + - uid: 10319 + components: + - type: Transform + pos: 24.5,-58.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 2 + - uid: 10322 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + pos: 21.5,-62.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + pos: 24.5,-64.5 + parent: 2 + - uid: 10376 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + pos: 19.5,-63.5 + parent: 2 + - uid: 10378 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 2 + - uid: 21218 + components: + - type: Transform + pos: 28.5,11.5 + parent: 21002 + - uid: 21219 + components: + - type: Transform + pos: 29.5,11.5 + parent: 21002 + - uid: 21537 + components: + - type: Transform + pos: 60.5,1.5 + parent: 21002 + - uid: 21538 + components: + - type: Transform + pos: 59.5,0.5 + parent: 21002 + - uid: 21539 + components: + - type: Transform + pos: 58.5,0.5 + parent: 21002 + - uid: 21540 + components: + - type: Transform + pos: 57.5,0.5 + parent: 21002 + - uid: 21567 + components: + - type: Transform + pos: 60.5,3.5 + parent: 21002 + - uid: 21568 + components: + - type: Transform + pos: 60.5,4.5 + parent: 21002 + - uid: 21569 + components: + - type: Transform + pos: 60.5,5.5 + parent: 21002 + - uid: 21805 + components: + - type: Transform + pos: 42.5,21.5 + parent: 21002 + - uid: 21806 + components: + - type: Transform + pos: 42.5,22.5 + parent: 21002 + - uid: 21807 + components: + - type: Transform + pos: 44.5,22.5 + parent: 21002 + - uid: 21808 + components: + - type: Transform + pos: 44.5,23.5 + parent: 21002 + - uid: 21809 + components: + - type: Transform + pos: 44.5,24.5 + parent: 21002 + - uid: 21810 + components: + - type: Transform + pos: 43.5,22.5 + parent: 21002 + - uid: 21822 + components: + - type: Transform + pos: 33.5,22.5 + parent: 21002 + - uid: 21842 + components: + - type: Transform + pos: 30.5,14.5 + parent: 21002 + - uid: 21843 + components: + - type: Transform + pos: 30.5,15.5 + parent: 21002 + - uid: 21850 + components: + - type: Transform + pos: 29.5,13.5 + parent: 21002 + - uid: 21851 + components: + - type: Transform + pos: 29.5,14.5 + parent: 21002 + - uid: 21853 + components: + - type: Transform + pos: 28.5,12.5 + parent: 21002 + - uid: 21861 + components: + - type: Transform + pos: 28.5,13.5 + parent: 21002 + - uid: 21862 + components: + - type: Transform + pos: 28.5,14.5 + parent: 21002 + - uid: 21876 + components: + - type: Transform + pos: 28.5,15.5 + parent: 21002 + - uid: 21877 + components: + - type: Transform + pos: 28.5,16.5 + parent: 21002 + - uid: 21881 + components: + - type: Transform + pos: 29.5,15.5 + parent: 21002 + - uid: 21884 + components: + - type: Transform + pos: 19.5,24.5 + parent: 21002 + - uid: 21887 + components: + - type: Transform + pos: 20.5,24.5 + parent: 21002 + - uid: 21888 + components: + - type: Transform + pos: 21.5,20.5 + parent: 21002 + - uid: 21889 + components: + - type: Transform + pos: 21.5,24.5 + parent: 21002 + - uid: 21901 + components: + - type: Transform + pos: 22.5,20.5 + parent: 21002 + - uid: 21902 + components: + - type: Transform + pos: 22.5,24.5 + parent: 21002 + - uid: 21903 + components: + - type: Transform + pos: 23.5,20.5 + parent: 21002 + - uid: 21904 + components: + - type: Transform + pos: 23.5,24.5 + parent: 21002 + - uid: 21905 + components: + - type: Transform + pos: 24.5,17.5 + parent: 21002 + - uid: 21906 + components: + - type: Transform + pos: 24.5,18.5 + parent: 21002 + - uid: 21908 + components: + - type: Transform + pos: 24.5,20.5 + parent: 21002 + - uid: 21910 + components: + - type: Transform + pos: 24.5,21.5 + parent: 21002 + - uid: 21911 + components: + - type: Transform + pos: 24.5,22.5 + parent: 21002 + - uid: 21914 + components: + - type: Transform + pos: 25.5,20.5 + parent: 21002 + - uid: 21930 + components: + - type: Transform + pos: 26.5,20.5 + parent: 21002 + - uid: 21932 + components: + - type: Transform + pos: 27.5,20.5 + parent: 21002 + - uid: 21935 + components: + - type: Transform + pos: 28.5,17.5 + parent: 21002 + - uid: 21937 + components: + - type: Transform + pos: 28.5,18.5 + parent: 21002 + - uid: 21938 + components: + - type: Transform + pos: 28.5,19.5 + parent: 21002 + - uid: 21940 + components: + - type: Transform + pos: 28.5,20.5 + parent: 21002 + - uid: 21952 + components: + - type: Transform + pos: 28.5,24.5 + parent: 21002 + - uid: 21953 + components: + - type: Transform + pos: 29.5,24.5 + parent: 21002 + - uid: 21958 + components: + - type: Transform + pos: 25.5,38.5 + parent: 21002 + - uid: 21979 + components: + - type: Transform + pos: 25.5,39.5 + parent: 21002 + - uid: 21994 + components: + - type: Transform + pos: 25.5,40.5 + parent: 21002 + - uid: 21995 + components: + - type: Transform + pos: 25.5,41.5 + parent: 21002 + - uid: 21996 + components: + - type: Transform + pos: 25.5,42.5 + parent: 21002 + - uid: 22006 + components: + - type: Transform + pos: 24.5,33.5 + parent: 21002 + - uid: 22014 + components: + - type: Transform + pos: 24.5,34.5 + parent: 21002 + - uid: 22015 + components: + - type: Transform + pos: 24.5,35.5 + parent: 21002 + - uid: 22019 + components: + - type: Transform + pos: 24.5,38.5 + parent: 21002 + - uid: 22027 + components: + - type: Transform + pos: 26.5,42.5 + parent: 21002 + - uid: 22031 + components: + - type: Transform + pos: 26.5,40.5 + parent: 21002 + - uid: 22035 + components: + - type: Transform + pos: 26.5,39.5 + parent: 21002 + - uid: 22039 + components: + - type: Transform + pos: 26.5,38.5 + parent: 21002 + - uid: 22043 + components: + - type: Transform + pos: 26.5,37.5 + parent: 21002 + - uid: 22047 + components: + - type: Transform + pos: 27.5,38.5 + parent: 21002 + - uid: 22048 + components: + - type: Transform + pos: 27.5,39.5 + parent: 21002 + - uid: 22049 + components: + - type: Transform + pos: 27.5,40.5 + parent: 21002 + - uid: 22050 + components: + - type: Transform + pos: 27.5,41.5 + parent: 21002 + - uid: 22051 + components: + - type: Transform + pos: 27.5,42.5 + parent: 21002 + - uid: 22052 + components: + - type: Transform + pos: 23.5,38.5 + parent: 21002 + - uid: 22075 + components: + - type: Transform + pos: 22.5,38.5 + parent: 21002 + - uid: 22082 + components: + - type: Transform + pos: 20.5,38.5 + parent: 21002 + - uid: 22087 + components: + - type: Transform + pos: 17.5,23.5 + parent: 21002 + - uid: 22095 + components: + - type: Transform + pos: 16.5,23.5 + parent: 21002 + - uid: 22129 + components: + - type: Transform + pos: 15.5,23.5 + parent: 21002 + - uid: 22130 + components: + - type: Transform + pos: 15.5,24.5 + parent: 21002 + - uid: 22131 + components: + - type: Transform + pos: 7.5,26.5 + parent: 21002 + - uid: 22132 + components: + - type: Transform + pos: 6.5,26.5 + parent: 21002 + - uid: 22133 + components: + - type: Transform + pos: 5.5,26.5 + parent: 21002 + - uid: 22139 + components: + - type: Transform + pos: 4.5,26.5 + parent: 21002 + - uid: 22140 + components: + - type: Transform + pos: 3.5,26.5 + parent: 21002 + - uid: 22157 + components: + - type: Transform + pos: 8.5,25.5 + parent: 21002 + - uid: 22158 + components: + - type: Transform + pos: 9.5,25.5 + parent: 21002 + - uid: 22159 + components: + - type: Transform + pos: 10.5,25.5 + parent: 21002 + - uid: 22164 + components: + - type: Transform + pos: 11.5,25.5 + parent: 21002 + - uid: 22165 + components: + - type: Transform + pos: 12.5,25.5 + parent: 21002 + - uid: 22188 + components: + - type: Transform + pos: 7.5,27.5 + parent: 21002 + - uid: 22189 + components: + - type: Transform + pos: 6.5,27.5 + parent: 21002 + - uid: 22190 + components: + - type: Transform + pos: 5.5,27.5 + parent: 21002 + - uid: 22195 + components: + - type: Transform + pos: 4.5,27.5 + parent: 21002 + - uid: 22196 + components: + - type: Transform + pos: 3.5,27.5 + parent: 21002 + - uid: 22211 + components: + - type: Transform + pos: 3.5,28.5 + parent: 21002 + - uid: 22212 + components: + - type: Transform + pos: 4.5,28.5 + parent: 21002 + - uid: 22215 + components: + - type: Transform + pos: 4.5,29.5 + parent: 21002 + - uid: 22222 + components: + - type: Transform + pos: 3.5,29.5 + parent: 21002 + - uid: 22223 + components: + - type: Transform + pos: 3.5,30.5 + parent: 21002 + - uid: 22235 + components: + - type: Transform + pos: 4.5,30.5 + parent: 21002 + - uid: 22241 + components: + - type: Transform + pos: 1.5,32.5 + parent: 21002 + - uid: 22242 + components: + - type: Transform + pos: 2.5,32.5 + parent: 21002 + - uid: 22246 + components: + - type: Transform + pos: 3.5,32.5 + parent: 21002 + - uid: 22263 + components: + - type: Transform + pos: 3.5,33.5 + parent: 21002 + - uid: 22264 + components: + - type: Transform + pos: 2.5,33.5 + parent: 21002 + - uid: 22266 + components: + - type: Transform + pos: 1.5,33.5 + parent: 21002 + - uid: 25294 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 21002 + - uid: 25295 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 21002 + - uid: 25296 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 21002 + - uid: 25297 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 21002 + - uid: 25299 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 21002 + - uid: 25300 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 21002 + - uid: 25301 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 21002 + - uid: 25302 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 21002 + - uid: 25303 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 21002 + - uid: 25304 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 21002 + - uid: 25305 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 21002 + - uid: 25306 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 21002 + - uid: 25307 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 21002 + - uid: 25308 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 21002 + - uid: 25309 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 21002 + - uid: 25310 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 21002 + - uid: 25311 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 21002 + - uid: 25312 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 21002 + - uid: 25313 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 21002 + - uid: 25314 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 21002 + - uid: 25320 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 21002 + - uid: 25344 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 21002 + - uid: 25347 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 21002 + - uid: 25350 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 21002 + - uid: 25351 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 21002 + - uid: 25360 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 21002 + - uid: 25361 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 21002 + - uid: 25363 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 21002 + - uid: 25366 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 21002 + - uid: 25367 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 21002 + - uid: 25368 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 21002 + - uid: 25369 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 21002 + - uid: 25370 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 21002 + - uid: 25371 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 21002 + - uid: 25372 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 21002 + - uid: 25373 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 21002 + - uid: 25374 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 21002 + - uid: 25375 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 21002 + - uid: 25376 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 21002 + - uid: 25377 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 21002 + - uid: 25378 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 21002 + - uid: 25379 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 21002 + - uid: 25380 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 21002 + - uid: 25381 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 21002 + - uid: 25382 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 21002 + - uid: 25383 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 21002 + - uid: 25384 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 21002 + - uid: 25385 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 21002 + - uid: 25386 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 21002 + - uid: 25387 + components: + - type: Transform + pos: 43.5,-26.5 + parent: 21002 + - uid: 25388 + components: + - type: Transform + pos: 42.5,-26.5 + parent: 21002 + - uid: 25389 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 21002 + - uid: 25390 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 21002 + - uid: 25391 + components: + - type: Transform + pos: 43.5,-25.5 + parent: 21002 + - uid: 25392 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 21002 + - uid: 25393 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 21002 + - uid: 25394 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 21002 + - uid: 25395 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 21002 + - uid: 25396 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 21002 + - uid: 25397 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 21002 + - uid: 25398 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 21002 + - uid: 25399 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 21002 + - uid: 25400 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 21002 + - uid: 25401 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 21002 + - uid: 25402 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 21002 + - uid: 25403 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 21002 + - uid: 25404 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 21002 + - uid: 25405 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 21002 + - uid: 25406 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 21002 + - uid: 25407 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 21002 + - uid: 25408 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 21002 + - uid: 25409 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 21002 + - uid: 25410 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 21002 + - uid: 25411 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 21002 + - uid: 25412 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 21002 + - uid: 25413 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 21002 + - uid: 25414 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 21002 + - uid: 25415 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 21002 + - uid: 25418 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 21002 + - uid: 25419 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 21002 + - uid: 25420 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 21002 + - uid: 25421 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 21002 + - uid: 25422 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 21002 + - uid: 25423 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 21002 + - uid: 25424 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 21002 + - uid: 25426 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 21002 + - uid: 25427 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 21002 + - uid: 25428 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 21002 + - uid: 25429 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 21002 + - uid: 25430 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 21002 + - uid: 25431 + components: + - type: Transform + pos: 28.5,-40.5 + parent: 21002 + - uid: 25432 + components: + - type: Transform + pos: 28.5,-39.5 + parent: 21002 + - uid: 25433 + components: + - type: Transform + pos: 29.5,-40.5 + parent: 21002 + - uid: 25434 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 21002 + - uid: 25435 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 21002 + - uid: 25436 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 21002 + - uid: 25437 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 21002 + - uid: 25438 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 21002 + - uid: 25439 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 21002 + - uid: 25440 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 21002 + - uid: 25441 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 21002 + - uid: 25442 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 21002 + - uid: 25443 + components: + - type: Transform + pos: 30.5,-36.5 + parent: 21002 + - uid: 25444 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 21002 + - uid: 25445 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 21002 + - uid: 25446 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 21002 + - uid: 25447 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 21002 + - uid: 25448 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 21002 + - uid: 25449 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 21002 + - uid: 25450 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 21002 + - uid: 25451 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 21002 + - uid: 25452 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 21002 + - uid: 25453 + components: + - type: Transform + pos: 33.5,-35.5 + parent: 21002 + - uid: 25454 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 21002 + - uid: 25455 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 21002 + - uid: 25456 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 21002 + - uid: 25457 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 21002 + - uid: 25458 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 21002 + - uid: 25459 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 21002 + - uid: 25460 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 21002 + - uid: 25461 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 21002 + - uid: 25462 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 21002 + - uid: 25463 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 21002 + - uid: 25464 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 21002 + - uid: 25465 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 21002 + - uid: 25466 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 21002 + - uid: 25467 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 21002 + - uid: 25468 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 21002 + - uid: 25469 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 21002 + - uid: 25470 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 21002 + - uid: 25471 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 21002 + - uid: 25472 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 21002 + - uid: 25473 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 21002 + - uid: 25474 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 21002 + - uid: 25475 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 21002 + - uid: 25508 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 21002 + - uid: 25524 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 21002 + - uid: 25534 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 21002 + - uid: 25535 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 21002 + - uid: 25538 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 21002 + - uid: 25539 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 21002 + - uid: 25588 + components: + - type: Transform + pos: 41.5,34.5 + parent: 21002 + - uid: 25602 + components: + - type: Transform + pos: 39.5,28.5 + parent: 21002 + - uid: 25604 + components: + - type: Transform + pos: 39.5,26.5 + parent: 21002 + - uid: 25610 + components: + - type: Transform + pos: 40.5,28.5 + parent: 21002 + - uid: 25613 + components: + - type: Transform + pos: 41.5,33.5 + parent: 21002 + - uid: 25614 + components: + - type: Transform + pos: 41.5,32.5 + parent: 21002 + - uid: 25615 + components: + - type: Transform + pos: 41.5,31.5 + parent: 21002 + - uid: 25616 + components: + - type: Transform + pos: 41.5,30.5 + parent: 21002 + - uid: 25617 + components: + - type: Transform + pos: 41.5,29.5 + parent: 21002 + - uid: 25618 + components: + - type: Transform + pos: 41.5,28.5 + parent: 21002 + - uid: 25626 + components: + - type: Transform + pos: 42.5,28.5 + parent: 21002 + - uid: 25655 + components: + - type: Transform + pos: 46.5,31.5 + parent: 21002 + - uid: 25687 + components: + - type: Transform + pos: 50.5,31.5 + parent: 21002 + - uid: 25695 + components: + - type: Transform + pos: 51.5,31.5 + parent: 21002 + - uid: 25716 + components: + - type: Transform + pos: 53.5,26.5 + parent: 21002 + - uid: 25767 + components: + - type: Transform + pos: 32.5,26.5 + parent: 21002 + - uid: 25771 + components: + - type: Transform + pos: 33.5,27.5 + parent: 21002 + - uid: 25772 + components: + - type: Transform + pos: 33.5,26.5 + parent: 21002 + - uid: 25773 + components: + - type: Transform + pos: 33.5,25.5 + parent: 21002 + - uid: 25774 + components: + - type: Transform + pos: 33.5,24.5 + parent: 21002 + - uid: 25775 + components: + - type: Transform + pos: 33.5,23.5 + parent: 21002 + - uid: 25778 + components: + - type: Transform + pos: 34.5,26.5 + parent: 21002 + - uid: 25784 + components: + - type: Transform + pos: 35.5,26.5 + parent: 21002 + - uid: 25789 + components: + - type: Transform + pos: 36.5,26.5 + parent: 21002 + - uid: 25794 + components: + - type: Transform + pos: 37.5,26.5 + parent: 21002 + - uid: 25797 + components: + - type: Transform + pos: 38.5,28.5 + parent: 21002 + - uid: 25799 + components: + - type: Transform + pos: 38.5,26.5 + parent: 21002 + - uid: 25813 + components: + - type: Transform + pos: 29.5,26.5 + parent: 21002 + - uid: 25815 + components: + - type: Transform + pos: 30.5,26.5 + parent: 21002 + - uid: 25817 + components: + - type: Transform + pos: 30.5,24.5 + parent: 21002 + - uid: 25819 + components: + - type: Transform + pos: 31.5,26.5 + parent: 21002 + - uid: 25821 + components: + - type: Transform + pos: 31.5,24.5 + parent: 21002 + - uid: 25822 + components: + - type: Transform + pos: 28.5,26.5 + parent: 21002 + - uid: 25824 + components: + - type: Transform + pos: 32.5,16.5 + parent: 21002 + - uid: 25825 + components: + - type: Transform + pos: 32.5,15.5 + parent: 21002 + - uid: 25826 + components: + - type: Transform + pos: 32.5,14.5 + parent: 21002 + - uid: 25896 + components: + - type: Transform + pos: 31.5,15.5 + parent: 21002 + - uid: 25897 + components: + - type: Transform + pos: 31.5,14.5 + parent: 21002 + - uid: 25898 + components: + - type: Transform + pos: 31.5,13.5 + parent: 21002 + - uid: 25899 + components: + - type: Transform + pos: 31.5,12.5 + parent: 21002 + - uid: 25900 + components: + - type: Transform + pos: 31.5,11.5 + parent: 21002 + - uid: 26432 + components: + - type: Transform + pos: 56.5,22.5 + parent: 21002 + - uid: 26443 + components: + - type: Transform + pos: 55.5,22.5 + parent: 21002 + - uid: 26455 + components: + - type: Transform + pos: 54.5,22.5 + parent: 21002 + - uid: 26456 + components: + - type: Transform + pos: 54.5,21.5 + parent: 21002 + - uid: 26457 + components: + - type: Transform + pos: 54.5,20.5 + parent: 21002 + - uid: 26458 + components: + - type: Transform + pos: 54.5,19.5 + parent: 21002 + - uid: 26464 + components: + - type: Transform + pos: 53.5,25.5 + parent: 21002 + - uid: 26465 + components: + - type: Transform + pos: 53.5,24.5 + parent: 21002 + - uid: 26466 + components: + - type: Transform + pos: 53.5,23.5 + parent: 21002 + - uid: 26467 + components: + - type: Transform + pos: 53.5,22.5 + parent: 21002 + - uid: 26468 + components: + - type: Transform + pos: 53.5,21.5 + parent: 21002 + - uid: 26478 + components: + - type: Transform + pos: 52.5,22.5 + parent: 21002 + - uid: 26489 + components: + - type: Transform + pos: 51.5,22.5 + parent: 21002 + - uid: 26491 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 21002 + - uid: 26509 + components: + - type: Transform + pos: 49.5,22.5 + parent: 21002 + - uid: 26510 + components: + - type: Transform + pos: 49.5,21.5 + parent: 21002 + - uid: 26516 + components: + - type: Transform + pos: 48.5,22.5 + parent: 21002 + - uid: 26517 + components: + - type: Transform + pos: 48.5,21.5 + parent: 21002 + - uid: 26521 + components: + - type: Transform + pos: 47.5,22.5 + parent: 21002 + - uid: 26522 + components: + - type: Transform + pos: 47.5,21.5 + parent: 21002 + - uid: 26526 + components: + - type: Transform + pos: 46.5,22.5 + parent: 21002 + - uid: 26527 + components: + - type: Transform + pos: 46.5,21.5 + parent: 21002 + - uid: 26532 + components: + - type: Transform + pos: 45.5,22.5 + parent: 21002 + - uid: 26533 + components: + - type: Transform + pos: 45.5,21.5 + parent: 21002 + - uid: 26541 + components: + - type: Transform + pos: 44.5,25.5 + parent: 21002 + - uid: 26542 + components: + - type: Transform + pos: 44.5,21.5 + parent: 21002 + - uid: 26543 + components: + - type: Transform + pos: 44.5,20.5 + parent: 21002 + - uid: 26550 + components: + - type: Transform + pos: 43.5,21.5 + parent: 21002 + - uid: 26723 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 21002 + - uid: 26732 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 21002 + - uid: 26740 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 21002 + - uid: 26748 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 21002 + - uid: 26827 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 21002 + - uid: 26828 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 21002 + - uid: 26832 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 21002 + - uid: 26839 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 21002 + - uid: 26845 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 21002 + - uid: 26851 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 21002 + - uid: 26852 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 21002 + - uid: 26857 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 21002 + - uid: 26861 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 21002 + - uid: 26862 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 21002 + - uid: 26863 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 21002 + - uid: 26865 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 21002 + - uid: 26866 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 21002 + - uid: 26867 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 21002 + - uid: 26869 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 21002 + - uid: 26870 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 21002 + - uid: 26871 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 21002 + - uid: 26874 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 21002 + - uid: 26897 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 21002 + - uid: 26899 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 21002 + - uid: 26900 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 21002 + - uid: 26901 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 21002 + - uid: 26906 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 21002 + - uid: 26909 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 21002 + - uid: 26910 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 21002 + - uid: 26911 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 21002 + - uid: 26934 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 21002 + - uid: 26942 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 21002 + - uid: 26967 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 21002 + - uid: 26977 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 21002 + - uid: 26978 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 21002 + - uid: 26987 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 21002 + - uid: 26988 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 21002 + - uid: 26997 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 21002 + - uid: 26998 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 21002 + - uid: 27000 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 21002 + - uid: 27002 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 21002 + - uid: 27003 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 21002 + - uid: 27005 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 21002 + - uid: 27006 + components: + - type: Transform + pos: 47.5,-16.5 + parent: 21002 + - uid: 27007 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 21002 + - uid: 27008 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 21002 + - uid: 27011 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 21002 + - uid: 27012 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 21002 + - uid: 27013 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 21002 + - uid: 27014 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 21002 + - uid: 27015 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 21002 + - uid: 27020 + components: + - type: Transform + pos: 48.5,-19.5 + parent: 21002 + - uid: 27022 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 21002 + - uid: 27070 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 21002 + - uid: 27071 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 21002 + - uid: 27072 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 21002 + - uid: 27073 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 21002 + - uid: 27133 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 21002 + - uid: 27134 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 21002 + - uid: 27167 + components: + - type: Transform + pos: 54.5,-11.5 + parent: 21002 + - uid: 27168 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 21002 + - uid: 27169 + components: + - type: Transform + pos: 54.5,-9.5 + parent: 21002 + - uid: 27171 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 21002 + - uid: 27172 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 21002 + - uid: 27173 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 21002 + - uid: 27180 + components: + - type: Transform + pos: 53.5,-11.5 + parent: 21002 + - uid: 27181 + components: + - type: Transform + pos: 53.5,-10.5 + parent: 21002 + - uid: 27182 + components: + - type: Transform + pos: 53.5,-9.5 + parent: 21002 + - uid: 27195 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 21002 + - uid: 27196 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 21002 + - uid: 27197 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 21002 + - uid: 27206 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 21002 + - uid: 27207 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 21002 + - uid: 27208 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 21002 + - uid: 27216 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 21002 + - uid: 27217 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 21002 + - uid: 27246 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 21002 + - uid: 27251 + components: + - type: Transform + pos: 61.5,0.5 + parent: 21002 + - uid: 27263 + components: + - type: Transform + pos: 62.5,0.5 + parent: 21002 + - uid: 27277 + components: + - type: Transform + pos: 63.5,0.5 + parent: 21002 + - uid: 27291 + components: + - type: Transform + pos: 64.5,-2.5 + parent: 21002 + - uid: 27294 + components: + - type: Transform + pos: 64.5,0.5 + parent: 21002 + - uid: 27364 + components: + - type: Transform + pos: 65.5,0.5 + parent: 21002 + - uid: 27412 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 21002 + - uid: 27413 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 21002 + - uid: 27414 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 21002 + - uid: 27415 + components: + - type: Transform + pos: 67.5,-4.5 + parent: 21002 + - uid: 27435 + components: + - type: Transform + pos: 68.5,-1.5 + parent: 21002 + - uid: 27436 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 21002 + - uid: 27437 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 21002 + - uid: 27438 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 21002 + - uid: 27575 + components: + - type: Transform + pos: 80.5,9.5 + parent: 21002 + - uid: 27576 + components: + - type: Transform + pos: 80.5,8.5 + parent: 21002 + - uid: 27582 + components: + - type: Transform + pos: 81.5,9.5 + parent: 21002 + - uid: 27587 + components: + - type: Transform + pos: 82.5,9.5 + parent: 21002 + - uid: 27592 + components: + - type: Transform + pos: 83.5,9.5 + parent: 21002 + - uid: 27610 + components: + - type: Transform + pos: 86.5,5.5 + parent: 21002 + - uid: 27612 + components: + - type: Transform + pos: 87.5,5.5 + parent: 21002 + - uid: 27614 + components: + - type: Transform + pos: 88.5,5.5 + parent: 21002 + - uid: 27637 + components: + - type: Transform + pos: 88.5,6.5 + parent: 21002 + - uid: 27641 + components: + - type: Transform + pos: 87.5,7.5 + parent: 21002 + - uid: 27643 + components: + - type: Transform + pos: 86.5,6.5 + parent: 21002 + - uid: 27644 + components: + - type: Transform + pos: 86.5,7.5 + parent: 21002 + - uid: 27663 + components: + - type: Transform + pos: 88.5,2.5 + parent: 21002 + - uid: 27664 + components: + - type: Transform + pos: 88.5,1.5 + parent: 21002 + - uid: 27672 + components: + - type: Transform + pos: 88.5,0.5 + parent: 21002 + - uid: 27677 + components: + - type: Transform + pos: 89.5,-1.5 + parent: 21002 + - uid: 27686 + components: + - type: Transform + pos: 91.5,-1.5 + parent: 21002 + - uid: 27687 + components: + - type: Transform + pos: 91.5,-2.5 + parent: 21002 + - uid: 27688 + components: + - type: Transform + pos: 91.5,-3.5 + parent: 21002 + - uid: 27689 + components: + - type: Transform + pos: 90.5,-2.5 + parent: 21002 + - uid: 27690 + components: + - type: Transform + pos: 90.5,-3.5 + parent: 21002 + - uid: 27691 + components: + - type: Transform + pos: 89.5,-2.5 + parent: 21002 + - uid: 27692 + components: + - type: Transform + pos: 89.5,-3.5 + parent: 21002 + - uid: 27700 + components: + - type: Transform + pos: 91.5,-7.5 + parent: 21002 + - uid: 27701 + components: + - type: Transform + pos: 91.5,-6.5 + parent: 21002 + - uid: 27702 + components: + - type: Transform + pos: 91.5,-5.5 + parent: 21002 + - uid: 27703 + components: + - type: Transform + pos: 90.5,-8.5 + parent: 21002 + - uid: 27704 + components: + - type: Transform + pos: 90.5,-7.5 + parent: 21002 + - uid: 27707 + components: + - type: Transform + pos: 89.5,-8.5 + parent: 21002 + - uid: 27708 + components: + - type: Transform + pos: 89.5,-7.5 + parent: 21002 + - uid: 27709 + components: + - type: Transform + pos: 89.5,-6.5 + parent: 21002 + - uid: 27710 + components: + - type: Transform + pos: 89.5,-5.5 + parent: 21002 + - uid: 27711 + components: + - type: Transform + pos: 88.5,-8.5 + parent: 21002 + - uid: 27712 + components: + - type: Transform + pos: 88.5,-7.5 + parent: 21002 + - uid: 27713 + components: + - type: Transform + pos: 88.5,-6.5 + parent: 21002 + - uid: 27714 + components: + - type: Transform + pos: 88.5,-5.5 + parent: 21002 + - uid: 27721 + components: + - type: Transform + pos: 89.5,-4.5 + parent: 21002 + - uid: 27722 + components: + - type: Transform + pos: 90.5,-4.5 + parent: 21002 + - uid: 27723 + components: + - type: Transform + pos: 91.5,-4.5 + parent: 21002 + - uid: 27798 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 21002 + - uid: 27799 + components: + - type: Transform + pos: 78.5,-3.5 + parent: 21002 + - uid: 27800 + components: + - type: Transform + pos: 78.5,-2.5 + parent: 21002 + - uid: 27803 + components: + - type: Transform + pos: 77.5,-4.5 + parent: 21002 + - uid: 27804 + components: + - type: Transform + pos: 77.5,-3.5 + parent: 21002 + - uid: 27805 + components: + - type: Transform + pos: 77.5,-2.5 + parent: 21002 + - uid: 27808 + components: + - type: Transform + pos: 76.5,-4.5 + parent: 21002 + - uid: 27809 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 21002 + - uid: 27810 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 21002 + - uid: 27813 + components: + - type: Transform + pos: 75.5,-4.5 + parent: 21002 + - uid: 27814 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 21002 + - uid: 27815 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 21002 + - uid: 27835 + components: + - type: Transform + pos: 76.5,1.5 + parent: 21002 + - uid: 27836 + components: + - type: Transform + pos: 76.5,2.5 + parent: 21002 + - uid: 27838 + components: + - type: Transform + pos: 75.5,1.5 + parent: 21002 + - uid: 27839 + components: + - type: Transform + pos: 75.5,2.5 + parent: 21002 + - uid: 27841 + components: + - type: Transform + pos: 74.5,1.5 + parent: 21002 + - uid: 27842 + components: + - type: Transform + pos: 74.5,2.5 + parent: 21002 + - uid: 27848 + components: + - type: Transform + pos: 76.5,3.5 + parent: 21002 + - uid: 27850 + components: + - type: Transform + pos: 75.5,3.5 + parent: 21002 + - uid: 27852 + components: + - type: Transform + pos: 74.5,3.5 + parent: 21002 + - uid: 27867 + components: + - type: Transform + pos: 67.5,-5.5 + parent: 21002 + - uid: 27868 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 21002 + - uid: 27873 + components: + - type: Transform + pos: 67.5,-6.5 + parent: 21002 + - uid: 27874 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 21002 + - uid: 27880 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 21002 + - uid: 27881 + components: + - type: Transform + pos: 68.5,-8.5 + parent: 21002 + - uid: 27888 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 21002 + - uid: 27889 + components: + - type: Transform + pos: 68.5,-10.5 + parent: 21002 + - uid: 27902 + components: + - type: Transform + pos: 71.5,-11.5 + parent: 21002 + - uid: 27906 + components: + - type: Transform + pos: 72.5,-11.5 + parent: 21002 + - uid: 27916 + components: + - type: Transform + pos: 72.5,-13.5 + parent: 21002 + - uid: 27933 + components: + - type: Transform + pos: 72.5,-14.5 + parent: 21002 + - uid: 27934 + components: + - type: Transform + pos: 72.5,-15.5 + parent: 21002 + - uid: 27939 + components: + - type: Transform + pos: 74.5,-14.5 + parent: 21002 + - uid: 27949 + components: + - type: Transform + pos: 75.5,-17.5 + parent: 21002 + - uid: 27951 + components: + - type: Transform + pos: 77.5,-17.5 + parent: 21002 + - uid: 27963 + components: + - type: Transform + pos: 74.5,-18.5 + parent: 21002 + - uid: 27964 + components: + - type: Transform + pos: 74.5,-19.5 + parent: 21002 + - uid: 27965 + components: + - type: Transform + pos: 74.5,-20.5 + parent: 21002 + - uid: 27966 + components: + - type: Transform + pos: 75.5,-18.5 + parent: 21002 + - uid: 27967 + components: + - type: Transform + pos: 75.5,-19.5 + parent: 21002 + - uid: 27968 + components: + - type: Transform + pos: 75.5,-20.5 + parent: 21002 + - uid: 27969 + components: + - type: Transform + pos: 76.5,-18.5 + parent: 21002 + - uid: 27972 + components: + - type: Transform + pos: 77.5,-18.5 + parent: 21002 + - uid: 27973 + components: + - type: Transform + pos: 77.5,-19.5 + parent: 21002 + - uid: 27974 + components: + - type: Transform + pos: 77.5,-20.5 + parent: 21002 + - uid: 27986 + components: + - type: Transform + pos: 77.5,-21.5 + parent: 21002 + - uid: 27988 + components: + - type: Transform + pos: 75.5,-21.5 + parent: 21002 + - uid: 27989 + components: + - type: Transform + pos: 74.5,-21.5 + parent: 21002 + - uid: 28004 + components: + - type: Transform + pos: 74.5,-22.5 + parent: 21002 + - uid: 28006 + components: + - type: Transform + pos: 75.5,-22.5 + parent: 21002 +- proto: AsteroidRockPlasma + entities: + - uid: 21094 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 21002 + - uid: 21096 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 21002 + - uid: 21216 + components: + - type: Transform + pos: 13.5,11.5 + parent: 21002 + - uid: 21220 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 21002 + - uid: 21871 + components: + - type: Transform + pos: 15.5,12.5 + parent: 21002 + - uid: 21872 + components: + - type: Transform + pos: 15.5,13.5 + parent: 21002 + - uid: 21873 + components: + - type: Transform + pos: 14.5,12.5 + parent: 21002 + - uid: 21874 + components: + - type: Transform + pos: 13.5,12.5 + parent: 21002 + - uid: 22059 + components: + - type: Transform + pos: 21.5,37.5 + parent: 21002 + - uid: 22063 + components: + - type: Transform + pos: 21.5,35.5 + parent: 21002 + - uid: 22067 + components: + - type: Transform + pos: 21.5,34.5 + parent: 21002 + - uid: 22079 + components: + - type: Transform + pos: 22.5,37.5 + parent: 21002 + - uid: 22080 + components: + - type: Transform + pos: 22.5,34.5 + parent: 21002 + - uid: 22081 + components: + - type: Transform + pos: 20.5,37.5 + parent: 21002 + - uid: 26480 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 21002 + - uid: 26499 + components: + - type: Transform + pos: 63.5,-0.5 + parent: 21002 + - uid: 26769 + components: + - type: Transform + pos: 69.5,-10.5 + parent: 21002 + - uid: 26824 + components: + - type: Transform + pos: 71.5,-10.5 + parent: 21002 + - uid: 26829 + components: + - type: Transform + pos: 73.5,-16.5 + parent: 21002 + - uid: 26838 + components: + - type: Transform + pos: 30.5,11.5 + parent: 21002 + - uid: 26843 + components: + - type: Transform + pos: 30.5,12.5 + parent: 21002 + - uid: 26844 + components: + - type: Transform + pos: 30.5,13.5 + parent: 21002 + - uid: 26849 + components: + - type: Transform + pos: 29.5,12.5 + parent: 21002 + - uid: 27065 + components: + - type: Transform + pos: 64.5,-1.5 + parent: 21002 + - uid: 27081 + components: + - type: Transform + pos: 64.5,-0.5 + parent: 21002 + - uid: 27319 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 21002 + - uid: 27351 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 21002 + - uid: 27411 + components: + - type: Transform + pos: 70.5,-11.5 + parent: 21002 + - uid: 27430 + components: + - type: Transform + pos: 74.5,-15.5 + parent: 21002 + - uid: 27433 + components: + - type: Transform + pos: 74.5,-16.5 + parent: 21002 + - uid: 27452 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 21002 +- proto: AsteroidRockQuartz + entities: + - uid: 21217 + components: + - type: Transform + pos: 22.5,11.5 + parent: 21002 + - uid: 21863 + components: + - type: Transform + pos: 23.5,14.5 + parent: 21002 + - uid: 21864 + components: + - type: Transform + pos: 22.5,12.5 + parent: 21002 + - uid: 21865 + components: + - type: Transform + pos: 22.5,13.5 + parent: 21002 + - uid: 21866 + components: + - type: Transform + pos: 22.5,14.5 + parent: 21002 + - uid: 21867 + components: + - type: Transform + pos: 21.5,13.5 + parent: 21002 + - uid: 21868 + components: + - type: Transform + pos: 20.5,12.5 + parent: 21002 + - uid: 21869 + components: + - type: Transform + pos: 20.5,13.5 + parent: 21002 + - uid: 21875 + components: + - type: Transform + pos: 21.5,15.5 + parent: 21002 + - uid: 26789 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 21002 + - uid: 26793 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 21002 + - uid: 26794 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 21002 + - uid: 26795 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 21002 + - uid: 26801 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 21002 + - uid: 26802 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 21002 + - uid: 26808 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 21002 +- proto: AsteroidRockQuartzCrab + entities: + - uid: 21870 + components: + - type: Transform + pos: 19.5,12.5 + parent: 21002 + - uid: 26796 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 21002 +- proto: AsteroidRockSalt + entities: + - uid: 21598 + components: + - type: Transform + pos: 59.5,2.5 + parent: 21002 + - uid: 21657 + components: + - type: Transform + pos: 20.5,21.5 + parent: 21002 + - uid: 21746 + components: + - type: Transform + pos: 20.5,22.5 + parent: 21002 + - uid: 21840 + components: + - type: Transform + pos: 20.5,23.5 + parent: 21002 + - uid: 21841 + components: + - type: Transform + pos: 21.5,19.5 + parent: 21002 + - uid: 21849 + components: + - type: Transform + pos: 22.5,18.5 + parent: 21002 + - uid: 21882 + components: + - type: Transform + pos: 23.5,18.5 + parent: 21002 + - uid: 22026 + components: + - type: Transform + pos: 47.5,30.5 + parent: 21002 + - uid: 22033 + components: + - type: Transform + pos: 49.5,32.5 + parent: 21002 + - uid: 22041 + components: + - type: Transform + pos: 50.5,32.5 + parent: 21002 + - uid: 25239 + components: + - type: Transform + pos: 52.5,20.5 + parent: 21002 + - uid: 25240 + components: + - type: Transform + pos: 51.5,21.5 + parent: 21002 + - uid: 25502 + components: + - type: Transform + pos: 51.5,20.5 + parent: 21002 + - uid: 25537 + components: + - type: Transform + pos: 50.5,21.5 + parent: 21002 + - uid: 25848 + components: + - type: Transform + pos: 34.5,12.5 + parent: 21002 + - uid: 25859 + components: + - type: Transform + pos: 35.5,13.5 + parent: 21002 + - uid: 25860 + components: + - type: Transform + pos: 35.5,12.5 + parent: 21002 + - uid: 25861 + components: + - type: Transform + pos: 35.5,11.5 + parent: 21002 + - uid: 25870 + components: + - type: Transform + pos: 36.5,14.5 + parent: 21002 + - uid: 25871 + components: + - type: Transform + pos: 36.5,13.5 + parent: 21002 + - uid: 25872 + components: + - type: Transform + pos: 36.5,12.5 + parent: 21002 + - uid: 25879 + components: + - type: Transform + pos: 37.5,14.5 + parent: 21002 + - uid: 26352 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 21002 + - uid: 26391 + components: + - type: Transform + pos: 61.5,1.5 + parent: 21002 + - uid: 26462 + components: + - type: Transform + pos: 61.5,3.5 + parent: 21002 + - uid: 26490 + components: + - type: Transform + pos: 62.5,3.5 + parent: 21002 + - uid: 26640 + components: + - type: Transform + pos: 68.5,3.5 + parent: 21002 + - uid: 26659 + components: + - type: Transform + pos: 69.5,4.5 + parent: 21002 + - uid: 26662 + components: + - type: Transform + pos: 70.5,5.5 + parent: 21002 + - uid: 26702 + components: + - type: Transform + pos: 70.5,4.5 + parent: 21002 + - uid: 26703 + components: + - type: Transform + pos: 71.5,6.5 + parent: 21002 + - uid: 26738 + components: + - type: Transform + pos: 71.5,4.5 + parent: 21002 + - uid: 26747 + components: + - type: Transform + pos: 72.5,3.5 + parent: 21002 + - uid: 26765 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 21002 + - uid: 26766 + components: + - type: Transform + pos: 74.5,-0.5 + parent: 21002 + - uid: 26768 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 21002 + - uid: 26842 + components: + - type: Transform + pos: 60.5,2.5 + parent: 21002 + - uid: 26850 + components: + - type: Transform + pos: 18.5,23.5 + parent: 21002 + - uid: 26858 + components: + - type: Transform + pos: 19.5,23.5 + parent: 21002 + - uid: 26859 + components: + - type: Transform + pos: 20.5,20.5 + parent: 21002 + - uid: 26860 + components: + - type: Transform + pos: 24.5,19.5 + parent: 21002 + - uid: 26924 + components: + - type: Transform + pos: 17.5,24.5 + parent: 21002 + - uid: 26932 + components: + - type: Transform + pos: 16.5,24.5 + parent: 21002 + - uid: 26959 + components: + - type: Transform + pos: 18.5,24.5 + parent: 21002 + - uid: 26960 + components: + - type: Transform + pos: 47.5,31.5 + parent: 21002 + - uid: 26965 + components: + - type: Transform + pos: 48.5,31.5 + parent: 21002 + - uid: 26966 + components: + - type: Transform + pos: 49.5,31.5 + parent: 21002 + - uid: 26972 + components: + - type: Transform + pos: 50.5,22.5 + parent: 21002 + - uid: 27062 + components: + - type: Transform + pos: 60.5,0.5 + parent: 21002 + - uid: 27276 + components: + - type: Transform + pos: 76.5,0.5 + parent: 21002 + - uid: 27292 + components: + - type: Transform + pos: 75.5,0.5 + parent: 21002 + - uid: 27293 + components: + - type: Transform + pos: 74.5,0.5 + parent: 21002 +- proto: AsteroidRockSilver + entities: + - uid: 21833 + components: + - type: Transform + pos: 30.5,18.5 + parent: 21002 + - uid: 21838 + components: + - type: Transform + pos: 31.5,17.5 + parent: 21002 + - uid: 21839 + components: + - type: Transform + pos: 30.5,17.5 + parent: 21002 + - uid: 22021 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 21002 + - uid: 22022 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 21002 + - uid: 22023 + components: + - type: Transform + pos: 24.5,39.5 + parent: 21002 + - uid: 22053 + components: + - type: Transform + pos: 23.5,39.5 + parent: 21002 + - uid: 22054 + components: + - type: Transform + pos: 23.5,40.5 + parent: 21002 + - uid: 22071 + components: + - type: Transform + pos: 22.5,39.5 + parent: 21002 + - uid: 22156 + components: + - type: Transform + pos: 6.5,25.5 + parent: 21002 + - uid: 22166 + components: + - type: Transform + pos: 7.5,24.5 + parent: 21002 + - uid: 22167 + components: + - type: Transform + pos: 6.5,24.5 + parent: 21002 + - uid: 22236 + components: + - type: Transform + pos: 4.5,31.5 + parent: 21002 + - uid: 22260 + components: + - type: Transform + pos: 4.5,32.5 + parent: 21002 + - uid: 22261 + components: + - type: Transform + pos: 5.5,32.5 + parent: 21002 + - uid: 22262 + components: + - type: Transform + pos: 4.5,33.5 + parent: 21002 + - uid: 25230 + components: + - type: Transform + pos: 64.5,20.5 + parent: 21002 + - uid: 25664 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 21002 + - uid: 25671 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 21002 + - uid: 26470 + components: + - type: Transform + pos: 53.5,19.5 + parent: 21002 + - uid: 26481 + components: + - type: Transform + pos: 52.5,19.5 + parent: 21002 + - uid: 26488 + components: + - type: Transform + pos: 51.5,23.5 + parent: 21002 + - uid: 26497 + components: + - type: Transform + pos: 50.5,24.5 + parent: 21002 + - uid: 26498 + components: + - type: Transform + pos: 50.5,23.5 + parent: 21002 + - uid: 26500 + components: + - type: Transform + pos: 63.5,19.5 + parent: 21002 + - uid: 26753 + components: + - type: Transform + pos: 73.5,13.5 + parent: 21002 + - uid: 26764 + components: + - type: Transform + pos: 89.5,0.5 + parent: 21002 + - uid: 27109 + components: + - type: Transform + pos: 83.5,8.5 + parent: 21002 + - uid: 27175 + components: + - type: Transform + pos: 54.5,-3.5 + parent: 21002 + - uid: 27176 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 21002 + - uid: 27210 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 21002 + - uid: 27266 + components: + - type: Transform + pos: 89.5,-0.5 + parent: 21002 + - uid: 27274 + components: + - type: Transform + pos: 90.5,-1.5 + parent: 21002 + - uid: 27443 + components: + - type: Transform + pos: 69.5,13.5 + parent: 21002 + - uid: 27465 + components: + - type: Transform + pos: 70.5,14.5 + parent: 21002 + - uid: 27466 + components: + - type: Transform + pos: 70.5,13.5 + parent: 21002 +- proto: AsteroidRockTin + entities: + - uid: 21490 + components: + - type: Transform + pos: 42.5,2.5 + parent: 21002 + - uid: 21493 + components: + - type: Transform + pos: 42.5,1.5 + parent: 21002 + - uid: 21497 + components: + - type: Transform + pos: 43.5,2.5 + parent: 21002 + - uid: 21526 + components: + - type: Transform + pos: 43.5,1.5 + parent: 21002 + - uid: 21527 + components: + - type: Transform + pos: 44.5,2.5 + parent: 21002 + - uid: 21528 + components: + - type: Transform + pos: 44.5,3.5 + parent: 21002 + - uid: 21529 + components: + - type: Transform + pos: 45.5,2.5 + parent: 21002 + - uid: 21530 + components: + - type: Transform + pos: 46.5,2.5 + parent: 21002 + - uid: 21535 + components: + - type: Transform + pos: 46.5,1.5 + parent: 21002 + - uid: 21546 + components: + - type: Transform + pos: 47.5,2.5 + parent: 21002 + - uid: 21591 + components: + - type: Transform + pos: 61.5,12.5 + parent: 21002 + - uid: 21594 + components: + - type: Transform + pos: 48.5,2.5 + parent: 21002 + - uid: 21596 + components: + - type: Transform + pos: 49.5,2.5 + parent: 21002 + - uid: 21597 + components: + - type: Transform + pos: 46.5,3.5 + parent: 21002 + - uid: 21606 + components: + - type: Transform + pos: 62.5,11.5 + parent: 21002 + - uid: 21762 + components: + - type: Transform + pos: 47.5,18.5 + parent: 21002 + - uid: 21774 + components: + - type: Transform + pos: 46.5,17.5 + parent: 21002 + - uid: 21786 + components: + - type: Transform + pos: 38.5,19.5 + parent: 21002 + - uid: 21787 + components: + - type: Transform + pos: 37.5,19.5 + parent: 21002 + - uid: 21802 + components: + - type: Transform + pos: 37.5,20.5 + parent: 21002 + - uid: 21883 + components: + - type: Transform + pos: 23.5,23.5 + parent: 21002 + - uid: 21886 + components: + - type: Transform + pos: 25.5,22.5 + parent: 21002 + - uid: 21895 + components: + - type: Transform + pos: 25.5,23.5 + parent: 21002 + - uid: 21907 + components: + - type: Transform + pos: 26.5,25.5 + parent: 21002 + - uid: 21912 + components: + - type: Transform + pos: 25.5,25.5 + parent: 21002 + - uid: 21915 + components: + - type: Transform + pos: 25.5,26.5 + parent: 21002 + - uid: 21931 + components: + - type: Transform + pos: 25.5,27.5 + parent: 21002 + - uid: 21933 + components: + - type: Transform + pos: 25.5,28.5 + parent: 21002 + - uid: 21956 + components: + - type: Transform + pos: 25.5,29.5 + parent: 21002 + - uid: 22099 + components: + - type: Transform + pos: 70.5,26.5 + parent: 21002 + - uid: 22100 + components: + - type: Transform + pos: 70.5,25.5 + parent: 21002 + - uid: 22101 + components: + - type: Transform + pos: 69.5,26.5 + parent: 21002 + - uid: 22110 + components: + - type: Transform + pos: 68.5,28.5 + parent: 21002 + - uid: 22115 + components: + - type: Transform + pos: 68.5,27.5 + parent: 21002 + - uid: 22116 + components: + - type: Transform + pos: 68.5,26.5 + parent: 21002 + - uid: 22120 + components: + - type: Transform + pos: 67.5,27.5 + parent: 21002 + - uid: 22148 + components: + - type: Transform + pos: 67.5,26.5 + parent: 21002 + - uid: 22330 + components: + - type: Transform + pos: 66.5,27.5 + parent: 21002 + - uid: 22454 + components: + - type: Transform + pos: 66.5,26.5 + parent: 21002 + - uid: 22480 + components: + - type: Transform + pos: 65.5,29.5 + parent: 21002 + - uid: 22660 + components: + - type: Transform + pos: 65.5,28.5 + parent: 21002 + - uid: 22977 + components: + - type: Transform + pos: 64.5,29.5 + parent: 21002 + - uid: 25231 + components: + - type: Transform + pos: 63.5,31.5 + parent: 21002 + - uid: 25232 + components: + - type: Transform + pos: 63.5,30.5 + parent: 21002 + - uid: 25663 + components: + - type: Transform + pos: 41.5,2.5 + parent: 21002 + - uid: 25748 + components: + - type: Transform + pos: 57.5,26.5 + parent: 21002 + - uid: 25755 + components: + - type: Transform + pos: 58.5,27.5 + parent: 21002 + - uid: 25756 + components: + - type: Transform + pos: 58.5,26.5 + parent: 21002 + - uid: 25840 + components: + - type: Transform + pos: 34.5,20.5 + parent: 21002 + - uid: 25853 + components: + - type: Transform + pos: 35.5,19.5 + parent: 21002 + - uid: 25864 + components: + - type: Transform + pos: 36.5,20.5 + parent: 21002 + - uid: 25865 + components: + - type: Transform + pos: 36.5,19.5 + parent: 21002 + - uid: 25866 + components: + - type: Transform + pos: 36.5,18.5 + parent: 21002 + - uid: 25867 + components: + - type: Transform + pos: 36.5,17.5 + parent: 21002 + - uid: 25876 + components: + - type: Transform + pos: 37.5,17.5 + parent: 21002 + - uid: 26299 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 21002 + - uid: 26300 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 21002 + - uid: 26325 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 21002 + - uid: 26326 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 21002 + - uid: 26339 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 21002 + - uid: 26348 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 21002 + - uid: 26351 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 21002 + - uid: 26385 + components: + - type: Transform + pos: 61.5,25.5 + parent: 21002 + - uid: 26399 + components: + - type: Transform + pos: 60.5,25.5 + parent: 21002 + - uid: 26405 + components: + - type: Transform + pos: 59.5,25.5 + parent: 21002 + - uid: 26411 + components: + - type: Transform + pos: 58.5,25.5 + parent: 21002 + - uid: 26417 + components: + - type: Transform + pos: 57.5,25.5 + parent: 21002 + - uid: 26429 + components: + - type: Transform + pos: 56.5,25.5 + parent: 21002 + - uid: 26430 + components: + - type: Transform + pos: 56.5,24.5 + parent: 21002 + - uid: 26442 + components: + - type: Transform + pos: 55.5,23.5 + parent: 21002 + - uid: 26454 + components: + - type: Transform + pos: 54.5,23.5 + parent: 21002 + - uid: 26535 + components: + - type: Transform + pos: 45.5,18.5 + parent: 21002 + - uid: 26536 + components: + - type: Transform + pos: 45.5,17.5 + parent: 21002 + - uid: 26537 + components: + - type: Transform + pos: 45.5,16.5 + parent: 21002 + - uid: 26546 + components: + - type: Transform + pos: 44.5,16.5 + parent: 21002 + - uid: 26547 + components: + - type: Transform + pos: 44.5,15.5 + parent: 21002 + - uid: 26833 + components: + - type: Transform + pos: 49.5,3.5 + parent: 21002 + - uid: 26868 + components: + - type: Transform + pos: 24.5,23.5 + parent: 21002 + - uid: 26882 + components: + - type: Transform + pos: 24.5,24.5 + parent: 21002 + - uid: 26890 + components: + - type: Transform + pos: 25.5,24.5 + parent: 21002 + - uid: 26898 + components: + - type: Transform + pos: 26.5,24.5 + parent: 21002 + - uid: 26907 + components: + - type: Transform + pos: 27.5,24.5 + parent: 21002 + - uid: 27001 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 21002 + - uid: 27004 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 21002 + - uid: 27029 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 21002 + - uid: 27030 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 21002 + - uid: 27031 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 21002 + - uid: 27032 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 21002 + - uid: 27058 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 21002 + - uid: 27287 + components: + - type: Transform + pos: 63.5,11.5 + parent: 21002 + - uid: 27305 + components: + - type: Transform + pos: 64.5,11.5 + parent: 21002 + - uid: 27307 + components: + - type: Transform + pos: 64.5,13.5 + parent: 21002 + - uid: 27308 + components: + - type: Transform + pos: 64.5,14.5 + parent: 21002 + - uid: 27352 + components: + - type: Transform + pos: 65.5,12.5 + parent: 21002 + - uid: 27353 + components: + - type: Transform + pos: 65.5,11.5 + parent: 21002 + - uid: 27354 + components: + - type: Transform + pos: 65.5,10.5 + parent: 21002 + - uid: 27359 + components: + - type: Transform + pos: 65.5,5.5 + parent: 21002 + - uid: 27360 + components: + - type: Transform + pos: 65.5,4.5 + parent: 21002 + - uid: 27376 + components: + - type: Transform + pos: 66.5,11.5 + parent: 21002 + - uid: 27377 + components: + - type: Transform + pos: 66.5,10.5 + parent: 21002 + - uid: 27378 + components: + - type: Transform + pos: 66.5,9.5 + parent: 21002 + - uid: 27382 + components: + - type: Transform + pos: 66.5,5.5 + parent: 21002 + - uid: 27402 + components: + - type: Transform + pos: 67.5,8.5 + parent: 21002 + - uid: 27403 + components: + - type: Transform + pos: 67.5,7.5 + parent: 21002 + - uid: 27404 + components: + - type: Transform + pos: 67.5,6.5 + parent: 21002 + - uid: 27405 + components: + - type: Transform + pos: 67.5,5.5 + parent: 21002 + - uid: 27425 + components: + - type: Transform + pos: 68.5,8.5 + parent: 21002 + - uid: 27474 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 21002 + - uid: 27475 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 21002 + - uid: 27478 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 21002 + - uid: 27496 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 21002 + - uid: 27498 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 21002 + - uid: 27501 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 21002 + - uid: 27502 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 21002 + - uid: 27522 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 21002 + - uid: 27535 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 21002 + - uid: 27557 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 21002 + - uid: 27558 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 21002 + - uid: 27563 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 21002 + - uid: 27583 + components: + - type: Transform + pos: 54.5,-19.5 + parent: 21002 + - uid: 27588 + components: + - type: Transform + pos: 55.5,-18.5 + parent: 21002 + - uid: 27593 + components: + - type: Transform + pos: 53.5,-18.5 + parent: 21002 + - uid: 27613 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 21002 + - uid: 27622 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 21002 + - uid: 27623 + components: + - type: Transform + pos: 51.5,-21.5 + parent: 21002 + - uid: 27626 + components: + - type: Transform + pos: 51.5,-16.5 + parent: 21002 + - uid: 27627 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 21002 + - uid: 27629 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 21002 + - uid: 27636 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 21002 + - uid: 27638 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 21002 + - uid: 27639 + components: + - type: Transform + pos: 67.5,-0.5 + parent: 21002 + - uid: 27640 + components: + - type: Transform + pos: 68.5,0.5 + parent: 21002 + - uid: 27654 + components: + - type: Transform + pos: 69.5,0.5 + parent: 21002 + - uid: 27675 + components: + - type: Transform + pos: 70.5,1.5 + parent: 21002 + - uid: 27676 + components: + - type: Transform + pos: 71.5,1.5 + parent: 21002 + - uid: 27680 + components: + - type: Transform + pos: 71.5,0.5 + parent: 21002 + - uid: 27730 + components: + - type: Transform + pos: 88.5,-9.5 + parent: 21002 + - uid: 27732 + components: + - type: Transform + pos: 87.5,-9.5 + parent: 21002 + - uid: 27733 + components: + - type: Transform + pos: 86.5,-10.5 + parent: 21002 + - uid: 27736 + components: + - type: Transform + pos: 85.5,-9.5 + parent: 21002 + - uid: 27738 + components: + - type: Transform + pos: 84.5,-9.5 + parent: 21002 + - uid: 27740 + components: + - type: Transform + pos: 83.5,-9.5 + parent: 21002 + - uid: 27742 + components: + - type: Transform + pos: 82.5,-9.5 + parent: 21002 + - uid: 27764 + components: + - type: Transform + pos: 81.5,-8.5 + parent: 21002 + - uid: 27765 + components: + - type: Transform + pos: 80.5,-7.5 + parent: 21002 + - uid: 27767 + components: + - type: Transform + pos: 79.5,-7.5 + parent: 21002 + - uid: 27777 + components: + - type: Transform + pos: 78.5,-6.5 + parent: 21002 +- proto: AsteroidRockTinCrab + entities: + - uid: 21913 + components: + - type: Transform + pos: 24.5,25.5 + parent: 21002 + - uid: 26992 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 21002 + - uid: 27456 + components: + - type: Transform + pos: 65.5,13.5 + parent: 21002 + - uid: 27457 + components: + - type: Transform + pos: 69.5,-0.5 + parent: 21002 +- proto: AsteroidRockUranium + entities: + - uid: 22062 + components: + - type: Transform + pos: 71.5,50.5 + parent: 21002 + - uid: 22083 + components: + - type: Transform + pos: 72.5,51.5 + parent: 21002 + - uid: 22096 + components: + - type: Transform + pos: 71.5,31.5 + parent: 21002 + - uid: 22238 + components: + - type: Transform + pos: 0.5,31.5 + parent: 21002 + - uid: 22239 + components: + - type: Transform + pos: 0.5,32.5 + parent: 21002 + - uid: 25630 + components: + - type: Transform + pos: 43.5,32.5 + parent: 21002 + - uid: 25637 + components: + - type: Transform + pos: 44.5,33.5 + parent: 21002 + - uid: 25638 + components: + - type: Transform + pos: 44.5,32.5 + parent: 21002 + - uid: 26127 + components: + - type: Transform + pos: 68.5,52.5 + parent: 21002 + - uid: 26137 + components: + - type: Transform + pos: 67.5,51.5 + parent: 21002 + - uid: 26145 + components: + - type: Transform + pos: 66.5,52.5 + parent: 21002 + - uid: 26152 + components: + - type: Transform + pos: 65.5,52.5 + parent: 21002 + - uid: 26760 + components: + - type: Transform + pos: 88.5,4.5 + parent: 21002 + - uid: 26761 + components: + - type: Transform + pos: 87.5,3.5 + parent: 21002 +- proto: AsteroidRockUraniumCrab + entities: + - uid: 26138 + components: + - type: Transform + pos: 67.5,52.5 + parent: 21002 +- proto: AtmosDeviceFanTiny + entities: + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,55.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,55.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: 43.5,-26.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,54.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,54.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: -7.5,-68.5 + parent: 2 + - uid: 10578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + pos: -7.5,-75.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + pos: 2.5,-75.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-19.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 18705 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 21017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 21002 + - uid: 21018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 21002 + - uid: 24241 + components: + - type: Transform + pos: 66.5,4.5 + parent: 2 + - uid: 24242 + components: + - type: Transform + pos: 66.5,2.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 9290 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - uid: 9291 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 9292 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + pos: -40.5,31.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 9299 + components: + - type: Transform + pos: -40.5,23.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 9301 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + pos: -40.5,21.5 + parent: 2 + - uid: 9303 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 9304 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 9305 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 19529 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 19533 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 + - uid: 19534 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 + - uid: 19535 + components: + - type: Transform + pos: 41.5,44.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 9264 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 9267 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 + - uid: 9269 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 9270 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 9271 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 9272 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 9273 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 9274 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 9279 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 17908 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 9282 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 9283 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 9286 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 5580 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 9284 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 9285 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 9287 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 9288 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 6716 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 + - uid: 28366 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 +- proto: BananaSeeds + entities: + - uid: 22755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.4040985,9.609104 + parent: 21002 + - uid: 22756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.4978485,9.437229 + parent: 21002 +- proto: BanjoInstrument + entities: + - uid: 19493 + components: + - type: Transform + pos: -31.491003,-42.47607 + parent: 2 + - uid: 23021 + components: + - type: Transform + pos: 12.501038,5.487854 + parent: 21002 +- proto: Barricade + entities: + - uid: 16228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-33.5 + parent: 2 + - uid: 19060 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 19061 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 19062 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 2 + - uid: 19064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-38.5 + parent: 2 + - uid: 19065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-37.5 + parent: 2 + - uid: 19066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-36.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 5208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 19063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - uid: 19067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-38.5 + parent: 2 +- proto: BarSign + entities: + - uid: 2814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,7.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 2 +- proto: BarSignEngineChange + entities: + - uid: 18505 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 10220 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-50.5 + parent: 2 + - uid: 13016 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 27948 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 21002 + - uid: 28067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-46.5 + parent: 21002 + - uid: 28259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 21002 + - uid: 28261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 21002 +- proto: BaseGasCondenser + entities: + - uid: 1674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-42.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,37.5 + parent: 2 +- proto: BassGuitarInstrument + entities: + - uid: 6653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.3806107,46.645847 + parent: 2 + - uid: 24188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.583576,-8.624299 + parent: 2 +- proto: Bed + entities: + - uid: 479 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: 36.5,-40.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 11262 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 19049 + components: + - type: Transform + pos: 28.5,-40.5 + parent: 2 + - uid: 19050 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 + - uid: 21212 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 21002 + - uid: 22405 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 21002 + - uid: 22406 + components: + - type: Transform + pos: 13.5,7.5 + parent: 21002 +- proto: BedsheetBlack + entities: + - uid: 1317 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 6735 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 2706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 6634 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 2271 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 1560 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 1249 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 3503 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 4342 + components: + - type: Transform + pos: 36.5,-40.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 2202 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 +- proto: BedsheetMime + entities: + - uid: 2272 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 4236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-21.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-21.5 + parent: 2 + - uid: 22382 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 21002 + - uid: 22407 + components: + - type: Transform + pos: 13.5,7.5 + parent: 21002 + - uid: 22409 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 21002 +- proto: BedsheetQM + entities: + - uid: 11264 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 9879 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 484 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 12140 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 +- proto: BedsheetWhite + entities: + - uid: 2182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-33.5 + parent: 2 +- proto: BenchColorfulComfy + entities: + - uid: 23595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-46.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,35.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,34.5 + parent: 2 +- proto: BenchComfy + entities: + - uid: 4300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 2 + - uid: 17418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 2 + - uid: 17424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 2 +- proto: BenchRedComfy + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-12.5 + parent: 2 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-11.5 + parent: 2 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-9.5 + parent: 2 + - uid: 19029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 + parent: 2 +- proto: BerrySeeds + entities: + - uid: 22757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.8884735,9.702854 + parent: 21002 + - uid: 22758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.8884735,9.530979 + parent: 21002 +- proto: BikeHorn + entities: + - uid: 4184 + components: + - type: Transform + parent: 2258 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BlastDoor + entities: + - uid: 7042 + components: + - type: Transform + pos: 7.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7697 + - uid: 7188 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7697 + - uid: 7189 + components: + - type: Transform + pos: 9.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7697 + - uid: 7190 + components: + - type: Transform + pos: 17.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7696 + - uid: 7191 + components: + - type: Transform + pos: 18.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7696 + - uid: 7192 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7696 + - uid: 7334 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7706 + - uid: 7335 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7706 + - uid: 7336 + components: + - type: Transform + pos: 20.5,49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7706 + - uid: 7337 + components: + - type: Transform + pos: 20.5,48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7706 + - uid: 7338 + components: + - type: Transform + pos: 14.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7698 + - uid: 7339 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7698 + - uid: 7340 + components: + - type: Transform + pos: 12.5,47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7698 + - uid: 8458 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15291 + - uid: 8459 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15291 + - uid: 8460 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15291 + - uid: 9638 + components: + - type: Transform + pos: -42.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9642 + - uid: 9639 + components: + - type: Transform + pos: -42.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9642 + - uid: 9640 + components: + - type: Transform + pos: -42.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9642 + - uid: 9715 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10078 + - uid: 9718 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9781 + - uid: 9965 + components: + - type: Transform + pos: 20.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10393 + - uid: 10312 + components: + - type: Transform + pos: 21.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10393 + - uid: 11337 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11339 + - uid: 11338 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11339 + - uid: 12955 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13038 + - uid: 12956 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13038 + - uid: 12957 + components: + - type: Transform + pos: 62.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13038 +- proto: BlastDoorOpen + entities: + - uid: 12801 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12804 + - uid: 12802 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12804 + - uid: 12803 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12804 +- proto: BlockGameArcade + entities: + - uid: 19106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-41.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 19107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-41.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 19108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-41.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: Bola + entities: + - uid: 22398 + components: + - type: Transform + pos: 30.540497,21.53258 + parent: 21002 + - uid: 23396 + components: + - type: Transform + pos: 32.942352,-34.459404 + parent: 2 + - uid: 23397 + components: + - type: Transform + pos: 37.067352,-34.459404 + parent: 2 +- proto: BookAurora + entities: + - uid: 11881 + components: + - type: Transform + pos: -55.581066,-21.312595 + parent: 2 +- proto: BookBase + entities: + - uid: 9683 + components: + - type: Transform + pos: -11.612324,33.571518 + parent: 2 +- proto: BookMedicalOfficer + entities: + - uid: 1598 + components: + - type: Transform + pos: -29.549212,-36.381424 + parent: 2 +- proto: BookRandom + entities: + - uid: 12169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.53679,-21.452196 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 27941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.526932,-43.38076 + parent: 21002 +- proto: BookshelfFilled + entities: + - uid: 357 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 810 + components: + - type: Transform + anchored: False + pos: 21.5,-10.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - uid: 1047 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: -11.5,38.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: -6.5,31.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 22339 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 21002 + - uid: 22745 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 21002 + - uid: 22774 + components: + - type: Transform + pos: 12.5,7.5 + parent: 21002 +- proto: BookSlothClownSSS + entities: + - uid: 2268 + components: + - type: Transform + pos: -31.630827,-45.03387 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 +- proto: BoozeDispenserEmpty + entities: + - uid: 9576 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 3041 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 2 + - uid: 10467 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 10428 + components: + - type: Transform + pos: 11.484307,-41.35475 + parent: 2 + - uid: 15603 + components: + - type: Transform + parent: 1663 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 1110 + components: + - type: Transform + pos: -4.636698,-26.305279 + parent: 2 + - uid: 8966 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21143 + components: + - type: Transform + pos: 42.499027,-29.362791 + parent: 2 +- proto: BoxCandle + entities: + - uid: 26701 + components: + - type: Transform + pos: 25.47313,-5.3119125 + parent: 21002 +- proto: BoxCardboard + entities: + - uid: 28367 + components: + - type: Transform + pos: -52.304974,-9.423643 + parent: 2 + - uid: 28368 + components: + - type: Transform + pos: -52.56539,-9.756976 + parent: 2 +- proto: BoxDarts + entities: + - uid: 2248 + components: + - type: Transform + pos: -35.52014,-43.491875 + parent: 2 +- proto: BoxDonkSoftBox + entities: + - uid: 2257 + components: + - type: Transform + pos: -19.495714,58.473736 + parent: 2 +- proto: BoxFolderBase + entities: + - uid: 11859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.350143,-26.356361 + parent: 2 + - uid: 22198 + components: + - type: Transform + parent: 22197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22200 + components: + - type: Transform + parent: 22197 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderBlack + entities: + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.496608,-21.304731 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 41.24941,-4.1411743 + parent: 2 + - uid: 9379 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 9896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.491178,-30.387342 + parent: 2 + - uid: 23434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.417645,-10.2011385 + parent: 2 + - uid: 23435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.49056,-10.6282215 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 2673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.41682,20.629406 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 41.259827,-4.432841 + parent: 2 + - uid: 9380 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 15048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.241848,9.595246 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 2695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.752617,20.619299 + parent: 2 + - uid: 11860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.39702,-26.793861 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11861 + - 11862 + pen_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Storage + storedItems: + 11861: + position: 0,0 + _rotation: South + 11862: + position: 1,0 + _rotation: South + - uid: 23238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.605057,5.3996086 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 23239 + - 23240 + - 23241 + - 23242 + - 23243 + pen_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Storage + storedItems: + 23239: + position: 0,0 + _rotation: South + 23240: + position: 1,0 + _rotation: South + 23241: + position: 2,0 + _rotation: South + 23242: + position: 3,0 + _rotation: South + 23243: + position: 4,0 + _rotation: South +- proto: BoxFolderGreen + entities: + - uid: 9375 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False +- proto: BoxFolderRed + entities: + - uid: 2674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.88557,20.613781 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: 41.270245,-4.2661743 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 41.796173,-40.412598 + parent: 2 + - uid: 9372 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 15047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.658516,9.595246 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 1115 + components: + - type: Transform + parent: 1114 + - type: Physics + canCollide: False + - uid: 1116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.4854882,-26.473461 + parent: 2 + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.1783094,-34.56227 + parent: 2 + - type: Storage + storedItems: + 1407: + position: 0,0 + _rotation: South + 1408: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1407 + - 1408 + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.307308,-34.609146 + parent: 2 + - type: Storage + storedItems: + 1423: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1423 + - uid: 9373 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False +- proto: BoxFolderYellow + entities: + - uid: 6657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.966583,43.61811 + parent: 2 + - uid: 6938 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 6941 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 9374 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 24154 + components: + - type: Transform + pos: -55.493286,3.568643 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 4814 + components: + - type: Transform + pos: 35.48848,-34.454277 + parent: 2 +- proto: BoxInflatable + entities: + - uid: 28269 + components: + - type: Transform + pos: 54.481567,17.397327 + parent: 21002 + - uid: 28270 + components: + - type: Transform + pos: 64.5005,5.385891 + parent: 21002 + - uid: 28271 + components: + - type: Transform + pos: 44.54854,6.417141 + parent: 21002 + - uid: 28272 + components: + - type: Transform + pos: 41.349792,14.281852 + parent: 21002 + - uid: 28273 + components: + - type: Transform + pos: 37.135513,-7.5715485 + parent: 21002 + - uid: 28275 + components: + - type: Transform + pos: 27.658081,-34.469635 + parent: 21002 + - uid: 28276 + components: + - type: Transform + pos: 27.345581,-34.11026 + parent: 21002 + - uid: 28306 + components: + - type: Transform + pos: 39.740753,5.290985 + parent: 21002 +- proto: BoxLatexGloves + entities: + - uid: 1253 + components: + - type: Transform + pos: -28.464748,-17.253857 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 4197 + components: + - type: Transform + pos: 33.390736,-26.299541 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: 33.40636,-26.471416 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 3061 + components: + - type: Transform + pos: 22.454304,-4.4470134 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: 22.735554,-4.3220134 + parent: 2 + - uid: 28351 + components: + - type: Transform + pos: 22.655878,-4.524885 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 23040 + components: + - type: Transform + pos: 7.8098907,9.624813 + parent: 21002 +- proto: BoxMRE + entities: + - uid: 19048 + components: + - type: Transform + pos: 27.795473,-41.37713 + parent: 2 + - uid: 19081 + components: + - type: Transform + pos: 28.342348,-34.40838 + parent: 2 + - uid: 22331 + components: + - type: Transform + pos: 58.759445,9.690737 + parent: 21002 + - uid: 22332 + components: + - type: Transform + pos: 27.126343,-29.311195 + parent: 21002 +- proto: BoxShellTranquilizer + entities: + - uid: 4195 + components: + - type: Transform + pos: -18.456379,-2.4510403 + parent: 2 +- proto: BoxShotgunSlug + entities: + - uid: 4199 + components: + - type: Transform + pos: 33.640736,-26.283916 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: 33.640736,-26.471416 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 4813 + components: + - type: Transform + pos: 33.504105,-34.438652 + parent: 2 +- proto: BrbSign + entities: + - uid: 3539 + components: + - type: Transform + pos: 39.76082,-4.8453417 + parent: 2 + - uid: 11277 + components: + - type: Transform + parent: 11276 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BrigTimer + entities: + - uid: 3861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-19.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-19.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-19.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-10.5 + parent: 2 +- proto: Brutepack + entities: + - uid: 24252 + components: + - type: Transform + pos: 41.55124,-13.37919 + parent: 2 +- proto: Bucket + entities: + - uid: 3059 + components: + - type: Transform + parent: 3055 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3076 + components: + - type: Transform + parent: 3055 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3077 + components: + - type: Transform + parent: 3055 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9653 + components: + - type: Transform + pos: 12.879001,20.61231 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: 12.535251,20.721685 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: 7.5352507,21.61231 + parent: 2 + - uid: 19518 + components: + - type: Transform + pos: 12.5026455,36.50867 + parent: 2 + - uid: 22743 + components: + - type: Transform + pos: 7.3088074,9.718449 + parent: 21002 + - uid: 23354 + components: + - type: Transform + pos: 38.630417,16.50916 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 4519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 2 + - uid: 23560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 23561 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 23562 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 23563 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 23564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 861 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: 39.5,-33.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: 41.5,-40.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 39.5,-40.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: 46.5,-36.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: 48.5,-36.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: 50.5,-36.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: 51.5,-36.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: 52.5,-36.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: 54.5,-36.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: 55.5,-36.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: 56.5,-36.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: 57.5,-36.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: 41.5,-28.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: 41.5,-19.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: 53.5,-18.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 47.5,-32.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: 54.5,-33.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: 55.5,-33.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: 56.5,-33.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: 57.5,-33.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: 58.5,-33.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: 56.5,-31.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: 50.5,-16.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: 53.5,-9.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: 53.5,-10.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: 53.5,-11.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -2.5,44.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 0.5,44.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 5702 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + pos: -1.5,44.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: -5.5,24.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: -30.5,4.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: -38.5,-39.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -40.5,-42.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: -35.5,-39.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: -34.5,-39.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: 49.5,3.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: 49.5,5.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: 48.5,5.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: 46.5,5.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: 10.5,32.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: 19.5,32.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: 2.5,44.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: 6.5,43.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: 35.5,49.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: 36.5,49.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 38.5,49.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: 41.5,49.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: 43.5,49.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: 45.5,49.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: 46.5,49.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: 47.5,49.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: 48.5,49.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: 49.5,49.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 50.5,49.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: 51.5,49.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: 52.5,49.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 53.5,49.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 54.5,49.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 55.5,49.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 56.5,49.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: 57.5,49.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + pos: 60.5,49.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: 61.5,49.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: 62.5,49.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 63.5,49.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: 18.5,45.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: 17.5,45.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: 16.5,45.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: 15.5,45.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: 14.5,45.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: 13.5,46.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: 12.5,48.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: 11.5,49.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: 11.5,50.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 11.5,51.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 11.5,52.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: 15.5,48.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: 15.5,49.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: 15.5,50.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 15.5,51.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 15.5,52.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 10.5,49.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: 8.5,49.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: 16.5,49.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: 17.5,49.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 18.5,50.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: 18.5,51.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: 8.5,50.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: 8.5,51.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: 19.5,48.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: 20.5,48.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 22.5,48.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: 7.5,50.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: 6.5,50.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 5.5,55.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: 6.5,56.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: 7.5,56.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: 7.5,57.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 7.5,58.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: 7.5,59.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: 7.5,60.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: 7.5,61.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: 7.5,62.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: 7.5,63.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + pos: 7.5,64.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: 7.5,65.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: 8.5,56.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: 10.5,56.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: 11.5,56.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: 12.5,56.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: 13.5,56.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: 14.5,56.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: 15.5,56.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: 16.5,56.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: 17.5,56.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: 18.5,56.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: 19.5,56.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: 19.5,58.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: 19.5,59.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: 19.5,60.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: 19.5,61.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: 19.5,62.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: 19.5,63.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: 19.5,64.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: 19.5,65.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: 8.5,45.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: 18.5,43.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: -10.5,34.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: -12.5,34.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: -12.5,33.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: -7.5,33.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: 27.5,32.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + pos: -32.5,38.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: -32.5,41.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + pos: -31.5,41.5 + parent: 2 + - uid: 9052 + components: + - type: Transform + pos: -30.5,41.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + pos: -29.5,41.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: -28.5,41.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -27.5,41.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: -30.5,40.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: -27.5,40.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 9061 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: -34.5,22.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + pos: -34.5,21.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -34.5,19.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - uid: 9083 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: -28.5,19.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 + - uid: 9101 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: -28.5,28.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + pos: -28.5,30.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + pos: -28.5,31.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + pos: -29.5,31.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: -30.5,31.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: -27.5,31.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -27.5,32.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: -27.5,33.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: -27.5,35.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: -27.5,36.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: -28.5,36.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -25.5,26.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: -25.5,28.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: -25.5,29.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: -25.5,32.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + pos: -25.5,33.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: -25.5,35.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: -25.5,36.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 9193 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + pos: -22.5,47.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -22.5,48.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 9207 + components: + - type: Transform + pos: -20.5,51.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + pos: -19.5,51.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + pos: -18.5,51.5 + parent: 2 + - uid: 9210 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 9216 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 9217 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 9220 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 9224 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 + - uid: 9225 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 9226 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 9227 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 9228 + components: + - type: Transform + pos: -9.5,43.5 + parent: 2 + - uid: 9229 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 9230 + components: + - type: Transform + pos: -15.5,42.5 + parent: 2 + - uid: 9231 + components: + - type: Transform + pos: -15.5,43.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + pos: -15.5,44.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: -15.5,45.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: -15.5,46.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + pos: -15.5,47.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + pos: -15.5,48.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + pos: -14.5,46.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + pos: -13.5,46.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 9341 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 9343 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 9345 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: -10.5,50.5 + parent: 2 + - uid: 9348 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - uid: 9349 + components: + - type: Transform + pos: -10.5,52.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 9351 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + pos: -2.5,50.5 + parent: 2 + - uid: 9353 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 9354 + components: + - type: Transform + pos: -0.5,50.5 + parent: 2 + - uid: 9355 + components: + - type: Transform + pos: -0.5,51.5 + parent: 2 + - uid: 9356 + components: + - type: Transform + pos: -0.5,52.5 + parent: 2 + - uid: 9450 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 9568 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 9570 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 9571 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 9572 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: 9.5,-44.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 10103 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 10120 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 10122 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 10519 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 + - uid: 10520 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 10521 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 2 + - uid: 10522 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 10523 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 10524 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 + - uid: 10525 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 10526 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 10528 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 10530 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 10531 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 10536 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 + - uid: 10537 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 10546 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 2 + - uid: 10550 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 10555 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 10561 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 10562 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 10563 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 10564 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 10565 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 2 + - uid: 10567 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 10572 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 10573 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + pos: -0.5,-60.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + pos: -1.5,-60.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + pos: -0.5,-59.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: -0.5,-61.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 10945 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 10950 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 10983 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 10984 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 10995 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 10996 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 10997 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 11001 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 11002 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 11007 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 11009 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 11010 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 11012 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 11013 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 11014 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 11015 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 11021 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 11022 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 11023 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 11024 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 11025 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 11027 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 11028 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 11031 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - uid: 11037 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - uid: 11038 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 11045 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 11048 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 11049 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 11050 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 11051 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 11054 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 11057 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 11059 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 2 + - uid: 11062 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 11063 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 11064 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 2 + - uid: 11065 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 11066 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - uid: 11069 + components: + - type: Transform + pos: 24.5,-41.5 + parent: 2 + - uid: 11070 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - uid: 11072 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 + - uid: 11074 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 + - uid: 11075 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 11076 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 11077 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 11081 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 11082 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - uid: 11083 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 11084 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 11085 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 11087 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 11088 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: 34.5,-47.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + pos: 34.5,-48.5 + parent: 2 + - uid: 11093 + components: + - type: Transform + pos: 34.5,-49.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + pos: 34.5,-50.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: 34.5,-51.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + pos: 34.5,-53.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + pos: 34.5,-54.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + pos: 34.5,-55.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + pos: 34.5,-56.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + pos: 36.5,-56.5 + parent: 2 + - uid: 11102 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - uid: 11103 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + pos: 22.5,-49.5 + parent: 2 + - uid: 11108 + components: + - type: Transform + pos: 21.5,-49.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + pos: 20.5,-49.5 + parent: 2 + - uid: 11110 + components: + - type: Transform + pos: 20.5,-49.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + pos: 24.5,-49.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + pos: 35.5,-56.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + pos: 34.5,-58.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 11118 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 11119 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + pos: 35.5,-58.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + pos: 33.5,-56.5 + parent: 2 + - uid: 11122 + components: + - type: Transform + pos: 35.5,-54.5 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: 35.5,-51.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 2 + - uid: 11125 + components: + - type: Transform + pos: 35.5,-45.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + pos: 38.5,-44.5 + parent: 2 + - uid: 11128 + components: + - type: Transform + pos: 39.5,-44.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 41.5,-43.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: 44.5,-43.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: 46.5,-43.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: 46.5,-42.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 11141 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: -8.5,-73.5 + parent: 2 + - uid: 11152 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + pos: -8.5,-75.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: -8.5,-76.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + pos: -8.5,-77.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: -8.5,-78.5 + parent: 2 + - uid: 11157 + components: + - type: Transform + pos: -8.5,-79.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + pos: -8.5,-80.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: -8.5,-81.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: -9.5,-81.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 2 + - uid: 11173 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: 3.5,-77.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: 3.5,-79.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: 3.5,-81.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: -9.5,-75.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: -56.5,-20.5 + parent: 2 + - uid: 11674 + components: + - type: Transform + pos: -55.5,-22.5 + parent: 2 + - uid: 11675 + components: + - type: Transform + pos: -56.5,-21.5 + parent: 2 + - uid: 11676 + components: + - type: Transform + pos: -56.5,-22.5 + parent: 2 + - uid: 11677 + components: + - type: Transform + pos: -54.5,-22.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + pos: -54.5,-21.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + pos: -54.5,-20.5 + parent: 2 + - uid: 11682 + components: + - type: Transform + pos: -53.5,-20.5 + parent: 2 + - uid: 11683 + components: + - type: Transform + pos: -52.5,-20.5 + parent: 2 + - uid: 11684 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 11712 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 11714 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 11717 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 11719 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 11730 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 11732 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 11738 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 11739 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 11740 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 11742 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - uid: 11743 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 11744 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 11745 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 11746 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + pos: -52.5,10.5 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 11749 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 11750 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 11752 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 11755 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 11756 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 11758 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 11759 + components: + - type: Transform + pos: -57.5,-4.5 + parent: 2 + - uid: 11760 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 11761 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 + - uid: 11762 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 11763 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 11764 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 11765 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 11766 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 11768 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 11769 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 11770 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 11771 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 11772 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 11773 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 11774 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 11776 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 11777 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 11778 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - uid: 11779 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 11780 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 11781 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 11782 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 11784 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 11785 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 11787 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 11788 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 11790 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 11794 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 11795 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 11796 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 11797 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + pos: -56.5,-19.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: -56.5,-17.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 12009 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 12010 + components: + - type: Transform + pos: -57.5,-19.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + pos: -60.5,-19.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: -60.5,-22.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: -60.5,-24.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: -60.5,-25.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 12180 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: -44.5,-25.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: -45.5,-25.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + pos: -44.5,-21.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: -46.5,-20.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + pos: -53.5,-31.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + pos: -51.5,-31.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + pos: -51.5,-34.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + pos: -51.5,-35.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + pos: -51.5,-36.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + pos: -51.5,-37.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + pos: -51.5,-38.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + pos: -52.5,-38.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + pos: -53.5,-38.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + pos: -54.5,-38.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: -52.5,-35.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + pos: -53.5,-35.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + pos: -50.5,-38.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: -49.5,-38.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + pos: -48.5,-38.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + pos: -48.5,-39.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + pos: -47.5,-39.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + pos: -46.5,-39.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + pos: -45.5,-38.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + pos: -48.5,-40.5 + parent: 2 + - uid: 12344 + components: + - type: Transform + pos: -48.5,-41.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + pos: -48.5,-42.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + pos: -49.5,-43.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + pos: -50.5,-43.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + pos: -52.5,-43.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + pos: -47.5,-46.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + pos: -47.5,-47.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + pos: -46.5,-47.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + pos: -46.5,-48.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + pos: -44.5,-49.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + pos: -44.5,-50.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + pos: -43.5,-50.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + pos: -43.5,-51.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + pos: -43.5,-52.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + pos: -42.5,-52.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + pos: -39.5,-52.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 12374 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + pos: -33.5,-53.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + pos: -32.5,-53.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + pos: -29.5,-53.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: -27.5,-53.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + pos: -25.5,-53.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 12389 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 12390 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + pos: -16.5,-53.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + pos: -15.5,-53.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + pos: -8.5,-57.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + pos: -7.5,-57.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + pos: -13.5,-56.5 + parent: 2 + - uid: 12404 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + pos: -16.5,-56.5 + parent: 2 + - uid: 12407 + components: + - type: Transform + pos: -17.5,-56.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + pos: -34.5,-50.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + pos: -49.5,-31.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + pos: -49.5,-22.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: -49.5,-21.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: -49.5,-19.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 12456 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 12458 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 12459 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 12460 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 12462 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 53.5,16.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 2 + - uid: 12984 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + pos: 61.5,-5.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + pos: 62.5,-5.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: 60.5,9.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: 58.5,9.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: 61.5,7.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + pos: 60.5,-5.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: 0.5,43.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 14196 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 14213 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: 44.5,-49.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 15239 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: 58.5,-5.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + pos: 56.5,3.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + pos: 57.5,3.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: 59.5,3.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + pos: 60.5,3.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + pos: 60.5,0.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: 60.5,-1.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 2 + - uid: 15552 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 2 + - uid: 15554 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: 60.5,4.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: 63.5,2.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 15574 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 15575 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: 57.5,5.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + pos: 57.5,6.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: 57.5,7.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 15585 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 16681 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 17481 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 17482 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 17486 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 17488 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 17489 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 17490 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 17493 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 17494 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 17495 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 17496 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 17497 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 17498 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 17499 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 17500 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 17501 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 17502 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 17503 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 17505 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 17507 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 17508 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 17509 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 17512 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 17513 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 17514 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - uid: 17515 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 17516 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 17517 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 17518 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 17519 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 2 + - uid: 17521 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 17522 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 17958 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 17959 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 17960 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 17961 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 17962 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 17963 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 17964 + components: + - type: Transform + pos: -20.5,37.5 + parent: 2 + - uid: 17965 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 17966 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 17967 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 17968 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 17969 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 17970 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 17971 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 17972 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 17973 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 17974 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 17975 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 17976 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - uid: 17977 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 17996 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 17997 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 17998 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 17999 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 18000 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 18001 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 18002 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 18003 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 18004 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 18005 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 18007 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - uid: 18010 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 18012 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - uid: 18013 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - uid: 18018 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 18019 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 18020 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 18021 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 18022 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 + - uid: 18023 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 18024 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 18025 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 18026 + components: + - type: Transform + pos: 36.5,40.5 + parent: 2 + - uid: 18027 + components: + - type: Transform + pos: 35.5,40.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + pos: 63.5,-5.5 + parent: 2 + - uid: 18031 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 2 + - uid: 18034 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 18035 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 18037 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 18038 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 18039 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 18040 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 18041 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 18042 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 18043 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 18044 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 2 + - uid: 18045 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 + - uid: 18046 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 + - uid: 18047 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 + - uid: 18048 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 18049 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 18050 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 18129 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 18130 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 18131 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 18132 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 18133 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 18134 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 18135 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 18136 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 18137 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 18220 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 18221 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 18222 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 18224 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 18892 + components: + - type: Transform + pos: 16.5,36.5 + parent: 2 + - uid: 18985 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 18986 + components: + - type: Transform + pos: 34.5,45.5 + parent: 2 + - uid: 18987 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 18988 + components: + - type: Transform + pos: 34.5,47.5 + parent: 2 + - uid: 18989 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + pos: 34.5,49.5 + parent: 2 + - uid: 18991 + components: + - type: Transform + pos: 33.5,46.5 + parent: 2 + - uid: 18992 + components: + - type: Transform + pos: 32.5,46.5 + parent: 2 + - uid: 18993 + components: + - type: Transform + pos: 31.5,46.5 + parent: 2 + - uid: 18994 + components: + - type: Transform + pos: 30.5,46.5 + parent: 2 + - uid: 18995 + components: + - type: Transform + pos: 29.5,46.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + pos: 29.5,47.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: 29.5,49.5 + parent: 2 + - uid: 18999 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 19000 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 + - uid: 19001 + components: + - type: Transform + pos: 29.5,52.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + pos: 28.5,52.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + pos: 27.5,52.5 + parent: 2 + - uid: 19004 + components: + - type: Transform + pos: 26.5,52.5 + parent: 2 + - uid: 19978 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - uid: 19979 + components: + - type: Transform + pos: 44.5,-45.5 + parent: 2 + - uid: 19980 + components: + - type: Transform + pos: 44.5,-46.5 + parent: 2 + - uid: 19981 + components: + - type: Transform + pos: 44.5,-47.5 + parent: 2 + - uid: 19982 + components: + - type: Transform + pos: 44.5,-48.5 + parent: 2 + - uid: 20198 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 20199 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 20200 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 + - uid: 20201 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - uid: 20202 + components: + - type: Transform + pos: -47.5,-50.5 + parent: 2 + - uid: 20203 + components: + - type: Transform + pos: -47.5,-51.5 + parent: 2 + - uid: 20204 + components: + - type: Transform + pos: -47.5,-52.5 + parent: 2 + - uid: 20205 + components: + - type: Transform + pos: -48.5,-52.5 + parent: 2 + - uid: 20206 + components: + - type: Transform + pos: -49.5,-52.5 + parent: 2 + - uid: 20207 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 + - uid: 20208 + components: + - type: Transform + pos: -49.5,-50.5 + parent: 2 + - uid: 20209 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 + - uid: 20210 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 + - uid: 20211 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 20490 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 20493 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 20494 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 20495 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 20496 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 20499 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 20500 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 20501 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 20502 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 20503 + components: + - type: Transform + pos: 43.5,40.5 + parent: 2 + - uid: 20504 + components: + - type: Transform + pos: 43.5,39.5 + parent: 2 + - uid: 20505 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 20506 + components: + - type: Transform + pos: 43.5,37.5 + parent: 2 + - uid: 20507 + components: + - type: Transform + pos: 44.5,37.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 20509 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 + - uid: 20510 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 20511 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 20512 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 20513 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 20514 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 20515 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 20516 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 20517 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 20518 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 20519 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 20520 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 20521 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 20522 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 20523 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 20524 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 20525 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 20526 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 20527 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 + - uid: 20528 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 20530 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 20531 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 20534 + components: + - type: Transform + pos: 39.5,36.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 20537 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 20538 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 20539 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 + - uid: 20540 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 20541 + components: + - type: Transform + pos: 38.5,42.5 + parent: 2 + - uid: 20542 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 + - uid: 20543 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 + - uid: 20544 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 20545 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 20546 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 20547 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 20548 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 20549 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 20550 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 20551 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 20553 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 20554 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 20555 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 20557 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 20558 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 20559 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 20560 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 21232 + components: + - type: Transform + pos: 43.5,46.5 + parent: 21002 + - uid: 21233 + components: + - type: Transform + pos: 43.5,45.5 + parent: 21002 + - uid: 21235 + components: + - type: Transform + pos: 43.5,44.5 + parent: 21002 + - uid: 21279 + components: + - type: Transform + pos: 43.5,42.5 + parent: 21002 + - uid: 21283 + components: + - type: Transform + pos: 43.5,43.5 + parent: 21002 + - uid: 21284 + components: + - type: Transform + pos: 43.5,41.5 + parent: 21002 + - uid: 21335 + components: + - type: Transform + pos: 43.5,47.5 + parent: 21002 + - uid: 21336 + components: + - type: Transform + pos: 80.5,27.5 + parent: 21002 + - uid: 21337 + components: + - type: Transform + pos: 90.5,27.5 + parent: 21002 + - uid: 21338 + components: + - type: Transform + pos: 78.5,27.5 + parent: 21002 + - uid: 21343 + components: + - type: Transform + pos: 79.5,27.5 + parent: 21002 + - uid: 21345 + components: + - type: Transform + pos: 88.5,27.5 + parent: 21002 + - uid: 21353 + components: + - type: Transform + pos: 43.5,53.5 + parent: 21002 + - uid: 21356 + components: + - type: Transform + pos: 89.5,27.5 + parent: 21002 + - uid: 21366 + components: + - type: Transform + pos: 86.5,27.5 + parent: 21002 + - uid: 21374 + components: + - type: Transform + pos: 82.5,27.5 + parent: 21002 + - uid: 21375 + components: + - type: Transform + pos: 81.5,27.5 + parent: 21002 + - uid: 21376 + components: + - type: Transform + pos: 83.5,27.5 + parent: 21002 + - uid: 21377 + components: + - type: Transform + pos: 85.5,27.5 + parent: 21002 + - uid: 21378 + components: + - type: Transform + pos: 87.5,27.5 + parent: 21002 + - uid: 21379 + components: + - type: Transform + pos: 84.5,27.5 + parent: 21002 + - uid: 21381 + components: + - type: Transform + pos: 43.5,52.5 + parent: 21002 + - uid: 21387 + components: + - type: Transform + pos: 33.5,2.5 + parent: 21002 + - uid: 21393 + components: + - type: Transform + pos: 43.5,57.5 + parent: 21002 + - uid: 21406 + components: + - type: Transform + pos: 43.5,51.5 + parent: 21002 + - uid: 21408 + components: + - type: Transform + pos: 43.5,56.5 + parent: 21002 + - uid: 21409 + components: + - type: Transform + pos: 43.5,55.5 + parent: 21002 + - uid: 21410 + components: + - type: Transform + pos: 43.5,54.5 + parent: 21002 + - uid: 21411 + components: + - type: Transform + pos: 43.5,40.5 + parent: 21002 + - uid: 21416 + components: + - type: Transform + pos: 43.5,39.5 + parent: 21002 + - uid: 21424 + components: + - type: Transform + pos: 91.5,27.5 + parent: 21002 + - uid: 21426 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 21002 + - uid: 21428 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 21002 + - uid: 21435 + components: + - type: Transform + pos: 43.5,49.5 + parent: 21002 + - uid: 21436 + components: + - type: Transform + pos: 43.5,48.5 + parent: 21002 + - uid: 21441 + components: + - type: Transform + pos: 77.5,27.5 + parent: 21002 + - uid: 21661 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 21002 + - uid: 21662 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 21002 + - uid: 21677 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 21002 + - uid: 21703 + components: + - type: Transform + pos: 27.5,2.5 + parent: 21002 + - uid: 21706 + components: + - type: Transform + pos: -2.5,26.5 + parent: 21002 + - uid: 21713 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 21002 + - uid: 21719 + components: + - type: Transform + pos: -1.5,26.5 + parent: 21002 + - uid: 21723 + components: + - type: Transform + pos: 26.5,2.5 + parent: 21002 + - uid: 21735 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 21002 + - uid: 22401 + components: + - type: Transform + pos: 21.5,1.5 + parent: 21002 + - uid: 22404 + components: + - type: Transform + pos: 21.5,0.5 + parent: 21002 + - uid: 22789 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 21002 + - uid: 22790 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 21002 + - uid: 22791 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 21002 + - uid: 22792 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 21002 + - uid: 22793 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 21002 + - uid: 22794 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 21002 + - uid: 22795 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 21002 + - uid: 22796 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 21002 + - uid: 22797 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 21002 + - uid: 22798 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 21002 + - uid: 22799 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 21002 + - uid: 22800 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 21002 + - uid: 22801 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 21002 + - uid: 22802 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 21002 + - uid: 22803 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 21002 + - uid: 22804 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 21002 + - uid: 22805 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 21002 + - uid: 22806 + components: + - type: Transform + pos: 3.5,0.5 + parent: 21002 + - uid: 22807 + components: + - type: Transform + pos: 3.5,1.5 + parent: 21002 + - uid: 22808 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 21002 + - uid: 22809 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 21002 + - uid: 22810 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 21002 + - uid: 22811 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 21002 + - uid: 22812 + components: + - type: Transform + pos: 0.5,0.5 + parent: 21002 + - uid: 22813 + components: + - type: Transform + pos: 0.5,1.5 + parent: 21002 + - uid: 22814 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 21002 + - uid: 22815 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 21002 + - uid: 22816 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 21002 + - uid: 22817 + components: + - type: Transform + pos: 3.5,2.5 + parent: 21002 + - uid: 22818 + components: + - type: Transform + pos: 3.5,3.5 + parent: 21002 + - uid: 22819 + components: + - type: Transform + pos: 2.5,3.5 + parent: 21002 + - uid: 22820 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 21002 + - uid: 22821 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 21002 + - uid: 22822 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 21002 + - uid: 22823 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 21002 + - uid: 22824 + components: + - type: Transform + pos: 7.5,0.5 + parent: 21002 + - uid: 22825 + components: + - type: Transform + pos: 7.5,1.5 + parent: 21002 + - uid: 22826 + components: + - type: Transform + pos: 6.5,1.5 + parent: 21002 + - uid: 22827 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 21002 + - uid: 22828 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 21002 + - uid: 22829 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 21002 + - uid: 22830 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 21002 + - uid: 22831 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 21002 + - uid: 22832 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 21002 + - uid: 22833 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 21002 + - uid: 22834 + components: + - type: Transform + pos: -1.5,0.5 + parent: 21002 + - uid: 22835 + components: + - type: Transform + pos: -1.5,1.5 + parent: 21002 + - uid: 22836 + components: + - type: Transform + pos: -2.5,1.5 + parent: 21002 + - uid: 22837 + components: + - type: Transform + pos: 0.5,2.5 + parent: 21002 + - uid: 22838 + components: + - type: Transform + pos: 0.5,3.5 + parent: 21002 + - uid: 22839 + components: + - type: Transform + pos: 0.5,4.5 + parent: 21002 + - uid: 22840 + components: + - type: Transform + pos: 0.5,5.5 + parent: 21002 + - uid: 22841 + components: + - type: Transform + pos: 0.5,6.5 + parent: 21002 + - uid: 22842 + components: + - type: Transform + pos: 0.5,7.5 + parent: 21002 + - uid: 22843 + components: + - type: Transform + pos: 0.5,8.5 + parent: 21002 + - uid: 22844 + components: + - type: Transform + pos: 0.5,9.5 + parent: 21002 + - uid: 22845 + components: + - type: Transform + pos: 1.5,9.5 + parent: 21002 + - uid: 22846 + components: + - type: Transform + pos: 2.5,9.5 + parent: 21002 + - uid: 22847 + components: + - type: Transform + pos: 3.5,9.5 + parent: 21002 + - uid: 22848 + components: + - type: Transform + pos: 3.5,10.5 + parent: 21002 + - uid: 22849 + components: + - type: Transform + pos: 4.5,10.5 + parent: 21002 + - uid: 22850 + components: + - type: Transform + pos: 5.5,10.5 + parent: 21002 + - uid: 22851 + components: + - type: Transform + pos: 6.5,10.5 + parent: 21002 + - uid: 22866 + components: + - type: Transform + pos: 20.5,9.5 + parent: 21002 + - uid: 22883 + components: + - type: Transform + pos: 54.5,9.5 + parent: 21002 + - uid: 22887 + components: + - type: Transform + pos: 20.5,0.5 + parent: 21002 + - uid: 22888 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 21002 + - uid: 22889 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 21002 + - uid: 22890 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 21002 + - uid: 22891 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 21002 + - uid: 22892 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 21002 + - uid: 22893 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 21002 + - uid: 22894 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 21002 + - uid: 22895 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 21002 + - uid: 22896 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 21002 + - uid: 22897 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 21002 + - uid: 22898 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 21002 + - uid: 22899 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 21002 + - uid: 22900 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 21002 + - uid: 22901 + components: + - type: Transform + pos: 8.5,0.5 + parent: 21002 + - uid: 22902 + components: + - type: Transform + pos: 9.5,0.5 + parent: 21002 + - uid: 22903 + components: + - type: Transform + pos: 10.5,0.5 + parent: 21002 + - uid: 22904 + components: + - type: Transform + pos: 11.5,0.5 + parent: 21002 + - uid: 22905 + components: + - type: Transform + pos: 12.5,0.5 + parent: 21002 + - uid: 22906 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 21002 + - uid: 22907 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 21002 + - uid: 22908 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 21002 + - uid: 22909 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 21002 + - uid: 22910 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 21002 + - uid: 22911 + components: + - type: Transform + pos: 13.5,0.5 + parent: 21002 + - uid: 22912 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 21002 + - uid: 22913 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 21002 + - uid: 22918 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 21002 + - uid: 22919 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 21002 + - uid: 22920 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 21002 + - uid: 22921 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 21002 + - uid: 22922 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 21002 + - uid: 22923 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 21002 + - uid: 22924 + components: + - type: Transform + pos: 13.5,1.5 + parent: 21002 + - uid: 22925 + components: + - type: Transform + pos: 13.5,2.5 + parent: 21002 + - uid: 22926 + components: + - type: Transform + pos: 13.5,3.5 + parent: 21002 + - uid: 22927 + components: + - type: Transform + pos: 13.5,4.5 + parent: 21002 + - uid: 22928 + components: + - type: Transform + pos: 13.5,5.5 + parent: 21002 + - uid: 22929 + components: + - type: Transform + pos: 13.5,6.5 + parent: 21002 + - uid: 22932 + components: + - type: Transform + pos: 14.5,6.5 + parent: 21002 + - uid: 22933 + components: + - type: Transform + pos: 15.5,6.5 + parent: 21002 + - uid: 22934 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 21002 + - uid: 22936 + components: + - type: Transform + pos: 12.5,6.5 + parent: 21002 + - uid: 23221 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 23222 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 23223 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 23262 + components: + - type: Transform + pos: -53.5,-29.5 + parent: 2 + - uid: 23263 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 23264 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 2 + - uid: 23265 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 2 + - uid: 23266 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 2 + - uid: 23267 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 23268 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - uid: 23269 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 23270 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 23271 + components: + - type: Transform + pos: -56.5,-29.5 + parent: 2 + - uid: 23272 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 23281 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 + - uid: 23282 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 + - uid: 23283 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - uid: 23284 + components: + - type: Transform + pos: -37.5,30.5 + parent: 2 + - uid: 23285 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 + - uid: 23286 + components: + - type: Transform + pos: -37.5,28.5 + parent: 2 + - uid: 23287 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 + - uid: 23288 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - uid: 23289 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - uid: 23290 + components: + - type: Transform + pos: -37.5,24.5 + parent: 2 + - uid: 23291 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 23292 + components: + - type: Transform + pos: -37.5,22.5 + parent: 2 + - uid: 23293 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - uid: 23294 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 23295 + components: + - type: Transform + pos: -37.5,19.5 + parent: 2 + - uid: 23296 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 23297 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 23298 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 23299 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 23300 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 23301 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 23302 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 23303 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 23304 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 23305 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 23306 + components: + - type: Transform + pos: -37.5,32.5 + parent: 2 + - uid: 23307 + components: + - type: Transform + pos: -37.5,33.5 + parent: 2 + - uid: 23308 + components: + - type: Transform + pos: -38.5,31.5 + parent: 2 + - uid: 23309 + components: + - type: Transform + pos: -39.5,31.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + pos: -40.5,31.5 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 + - uid: 23312 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 23313 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 23314 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 23315 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 23316 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 23317 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 23318 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - uid: 23319 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 23320 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 23321 + components: + - type: Transform + pos: -40.5,23.5 + parent: 2 + - uid: 23322 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 23323 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 23324 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 23325 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 23326 + components: + - type: Transform + pos: -40.5,21.5 + parent: 2 + - uid: 23327 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 23328 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 23329 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 23330 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 23331 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 + - uid: 23332 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 23333 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 23334 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 23335 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 23336 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 23337 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 23338 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 23339 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 23340 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 23341 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 23342 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 23343 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 23344 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 23345 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 23347 + components: + - type: Transform + pos: -4.5,52.5 + parent: 2 + - uid: 23348 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 23349 + components: + - type: Transform + pos: -4.5,54.5 + parent: 2 + - uid: 23350 + components: + - type: Transform + pos: -6.5,54.5 + parent: 2 + - uid: 23351 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 23352 + components: + - type: Transform + pos: -6.5,52.5 + parent: 2 + - uid: 23430 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 2 + - uid: 23503 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - uid: 23504 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - uid: 23505 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 23521 + components: + - type: Transform + pos: 64.5,49.5 + parent: 2 + - uid: 23646 + components: + - type: Transform + pos: 17.5,36.5 + parent: 2 + - uid: 23647 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 23648 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 + - uid: 23649 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 23650 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 23651 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 + - uid: 23708 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 23709 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 23710 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 23846 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 23929 + components: + - type: Transform + pos: 43.5,59.5 + parent: 21002 + - uid: 23995 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 21002 + - uid: 24000 + components: + - type: Transform + pos: 44.5,-50.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + pos: 44.5,-51.5 + parent: 2 + - uid: 24004 + components: + - type: Transform + pos: -33.5,39.5 + parent: 2 + - uid: 24011 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 24012 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 + - uid: 24013 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 + - uid: 24014 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - uid: 24015 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - uid: 24141 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 24143 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 24150 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - uid: 24181 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 24182 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 24183 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 24184 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 24185 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 24186 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 24300 + components: + - type: Transform + pos: 54.5,8.5 + parent: 21002 + - uid: 24753 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 21002 + - uid: 24771 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 21002 + - uid: 24772 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 21002 + - uid: 24773 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 21002 + - uid: 24774 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 21002 + - uid: 24775 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 21002 + - uid: 24776 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 21002 + - uid: 24777 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 21002 + - uid: 24778 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 21002 + - uid: 24779 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 21002 + - uid: 24780 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 21002 + - uid: 24781 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 21002 + - uid: 24782 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 21002 + - uid: 24783 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 21002 + - uid: 24784 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 21002 + - uid: 24785 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 21002 + - uid: 24786 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 21002 + - uid: 24787 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 21002 + - uid: 24788 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 21002 + - uid: 24789 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 21002 + - uid: 24790 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 21002 + - uid: 24791 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 21002 + - uid: 24792 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 21002 + - uid: 24793 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 21002 + - uid: 24794 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 21002 + - uid: 24795 + components: + - type: Transform + pos: 47.5,-23.5 + parent: 21002 + - uid: 24796 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 21002 + - uid: 24797 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 21002 + - uid: 24798 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 21002 + - uid: 24799 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 21002 + - uid: 24800 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 21002 + - uid: 24801 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 21002 + - uid: 24802 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 21002 + - uid: 24803 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 21002 + - uid: 24804 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 21002 + - uid: 24805 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 21002 + - uid: 24806 + components: + - type: Transform + pos: 38.5,-23.5 + parent: 21002 + - uid: 24807 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 21002 + - uid: 24808 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 21002 + - uid: 24809 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 21002 + - uid: 24810 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 21002 + - uid: 24811 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 21002 + - uid: 24812 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 21002 + - uid: 24813 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 21002 + - uid: 24814 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 21002 + - uid: 24815 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 21002 + - uid: 24816 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 21002 + - uid: 24817 + components: + - type: Transform + pos: 47.5,-24.5 + parent: 21002 + - uid: 24818 + components: + - type: Transform + pos: 47.5,-25.5 + parent: 21002 + - uid: 24819 + components: + - type: Transform + pos: 47.5,-26.5 + parent: 21002 + - uid: 24820 + components: + - type: Transform + pos: 47.5,-27.5 + parent: 21002 + - uid: 24821 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 21002 + - uid: 24822 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 21002 + - uid: 24823 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 21002 + - uid: 24824 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 21002 + - uid: 24825 + components: + - type: Transform + pos: 47.5,-32.5 + parent: 21002 + - uid: 24826 + components: + - type: Transform + pos: 47.5,-33.5 + parent: 21002 + - uid: 24827 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 21002 + - uid: 24828 + components: + - type: Transform + pos: 47.5,-35.5 + parent: 21002 + - uid: 24829 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 21002 + - uid: 24830 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 21002 + - uid: 24831 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 21002 + - uid: 24832 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 21002 + - uid: 24833 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 21002 + - uid: 24834 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 21002 + - uid: 24835 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 21002 + - uid: 24836 + components: + - type: Transform + pos: 47.5,-43.5 + parent: 21002 + - uid: 24837 + components: + - type: Transform + pos: 47.5,-44.5 + parent: 21002 + - uid: 24838 + components: + - type: Transform + pos: 46.5,-44.5 + parent: 21002 + - uid: 24839 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 21002 + - uid: 24840 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 21002 + - uid: 24841 + components: + - type: Transform + pos: 43.5,-44.5 + parent: 21002 + - uid: 24842 + components: + - type: Transform + pos: 42.5,-44.5 + parent: 21002 + - uid: 24843 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 21002 + - uid: 24844 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 21002 + - uid: 24845 + components: + - type: Transform + pos: 39.5,-44.5 + parent: 21002 + - uid: 24846 + components: + - type: Transform + pos: 38.5,-44.5 + parent: 21002 + - uid: 24847 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 21002 + - uid: 24848 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 21002 + - uid: 24849 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 21002 + - uid: 24850 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 21002 + - uid: 24851 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 21002 + - uid: 24852 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 21002 + - uid: 24853 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 21002 + - uid: 24854 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 21002 + - uid: 24855 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 21002 + - uid: 24856 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 21002 + - uid: 24857 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 21002 + - uid: 24858 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 21002 + - uid: 24859 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 21002 + - uid: 24860 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 21002 + - uid: 24861 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 21002 + - uid: 24862 + components: + - type: Transform + pos: 22.5,-44.5 + parent: 21002 + - uid: 24863 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 21002 + - uid: 24864 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 21002 + - uid: 24865 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 21002 + - uid: 24866 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 21002 + - uid: 24867 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 21002 + - uid: 24868 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 21002 + - uid: 24869 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 21002 + - uid: 24870 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 21002 + - uid: 24871 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 21002 + - uid: 24872 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 21002 + - uid: 24873 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 21002 + - uid: 24874 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 21002 + - uid: 24875 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 21002 + - uid: 24876 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 21002 + - uid: 24877 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 21002 + - uid: 24878 + components: + - type: Transform + pos: 18.5,-47.5 + parent: 21002 + - uid: 24879 + components: + - type: Transform + pos: 48.5,-44.5 + parent: 21002 + - uid: 24880 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 21002 + - uid: 24881 + components: + - type: Transform + pos: 50.5,-44.5 + parent: 21002 + - uid: 24882 + components: + - type: Transform + pos: 51.5,-44.5 + parent: 21002 + - uid: 24883 + components: + - type: Transform + pos: 52.5,-44.5 + parent: 21002 + - uid: 24884 + components: + - type: Transform + pos: 53.5,-44.5 + parent: 21002 + - uid: 24885 + components: + - type: Transform + pos: 54.5,-44.5 + parent: 21002 + - uid: 24886 + components: + - type: Transform + pos: 55.5,-44.5 + parent: 21002 + - uid: 24887 + components: + - type: Transform + pos: 56.5,-44.5 + parent: 21002 + - uid: 24888 + components: + - type: Transform + pos: 56.5,-43.5 + parent: 21002 + - uid: 24889 + components: + - type: Transform + pos: 57.5,-43.5 + parent: 21002 + - uid: 24890 + components: + - type: Transform + pos: 58.5,-43.5 + parent: 21002 + - uid: 24891 + components: + - type: Transform + pos: 59.5,-43.5 + parent: 21002 + - uid: 24892 + components: + - type: Transform + pos: 60.5,-43.5 + parent: 21002 + - uid: 24893 + components: + - type: Transform + pos: 61.5,-43.5 + parent: 21002 + - uid: 24894 + components: + - type: Transform + pos: 61.5,-42.5 + parent: 21002 + - uid: 24895 + components: + - type: Transform + pos: 62.5,-42.5 + parent: 21002 + - uid: 24896 + components: + - type: Transform + pos: 63.5,-42.5 + parent: 21002 + - uid: 24897 + components: + - type: Transform + pos: 64.5,-42.5 + parent: 21002 + - uid: 24898 + components: + - type: Transform + pos: 65.5,-42.5 + parent: 21002 + - uid: 24899 + components: + - type: Transform + pos: 65.5,-41.5 + parent: 21002 + - uid: 24900 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 21002 + - uid: 24901 + components: + - type: Transform + pos: 67.5,-41.5 + parent: 21002 + - uid: 24902 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 21002 + - uid: 24903 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 21002 + - uid: 24904 + components: + - type: Transform + pos: 69.5,-40.5 + parent: 21002 + - uid: 24905 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 21002 + - uid: 24906 + components: + - type: Transform + pos: 71.5,-40.5 + parent: 21002 + - uid: 24907 + components: + - type: Transform + pos: 72.5,-40.5 + parent: 21002 + - uid: 24908 + components: + - type: Transform + pos: 75.5,-38.5 + parent: 21002 + - uid: 24909 + components: + - type: Transform + pos: 72.5,-39.5 + parent: 21002 + - uid: 24910 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 21002 + - uid: 24911 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 21002 + - uid: 24912 + components: + - type: Transform + pos: 75.5,-39.5 + parent: 21002 + - uid: 24913 + components: + - type: Transform + pos: 76.5,-38.5 + parent: 21002 + - uid: 24914 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 21002 + - uid: 24915 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 21002 + - uid: 24916 + components: + - type: Transform + pos: 78.5,-37.5 + parent: 21002 + - uid: 24917 + components: + - type: Transform + pos: 78.5,-36.5 + parent: 21002 + - uid: 24918 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 21002 + - uid: 24919 + components: + - type: Transform + pos: 80.5,-36.5 + parent: 21002 + - uid: 24920 + components: + - type: Transform + pos: 80.5,-35.5 + parent: 21002 + - uid: 24921 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 21002 + - uid: 24922 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 21002 + - uid: 24923 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 21002 + - uid: 24924 + components: + - type: Transform + pos: 82.5,-33.5 + parent: 21002 + - uid: 24925 + components: + - type: Transform + pos: 83.5,-33.5 + parent: 21002 + - uid: 24926 + components: + - type: Transform + pos: 83.5,-32.5 + parent: 21002 + - uid: 24927 + components: + - type: Transform + pos: 84.5,-32.5 + parent: 21002 + - uid: 24928 + components: + - type: Transform + pos: 84.5,-31.5 + parent: 21002 + - uid: 24929 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 21002 + - uid: 24930 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 21002 + - uid: 24931 + components: + - type: Transform + pos: 86.5,-30.5 + parent: 21002 + - uid: 24932 + components: + - type: Transform + pos: 86.5,-29.5 + parent: 21002 + - uid: 24933 + components: + - type: Transform + pos: 87.5,-29.5 + parent: 21002 + - uid: 24934 + components: + - type: Transform + pos: 87.5,-28.5 + parent: 21002 + - uid: 24935 + components: + - type: Transform + pos: 88.5,-28.5 + parent: 21002 + - uid: 24936 + components: + - type: Transform + pos: 88.5,-27.5 + parent: 21002 + - uid: 24937 + components: + - type: Transform + pos: 88.5,-26.5 + parent: 21002 + - uid: 24938 + components: + - type: Transform + pos: 89.5,-26.5 + parent: 21002 + - uid: 24939 + components: + - type: Transform + pos: 89.5,-25.5 + parent: 21002 + - uid: 24940 + components: + - type: Transform + pos: 89.5,-24.5 + parent: 21002 + - uid: 24941 + components: + - type: Transform + pos: 90.5,-24.5 + parent: 21002 + - uid: 24942 + components: + - type: Transform + pos: 90.5,-23.5 + parent: 21002 + - uid: 24943 + components: + - type: Transform + pos: 90.5,-23.5 + parent: 21002 + - uid: 24944 + components: + - type: Transform + pos: 90.5,-22.5 + parent: 21002 + - uid: 24945 + components: + - type: Transform + pos: 91.5,-22.5 + parent: 21002 + - uid: 24946 + components: + - type: Transform + pos: 91.5,-21.5 + parent: 21002 + - uid: 24947 + components: + - type: Transform + pos: 91.5,-20.5 + parent: 21002 + - uid: 24948 + components: + - type: Transform + pos: 92.5,-20.5 + parent: 21002 + - uid: 24949 + components: + - type: Transform + pos: 92.5,-19.5 + parent: 21002 + - uid: 24950 + components: + - type: Transform + pos: 92.5,-18.5 + parent: 21002 + - uid: 24951 + components: + - type: Transform + pos: 93.5,-18.5 + parent: 21002 + - uid: 24952 + components: + - type: Transform + pos: 93.5,-17.5 + parent: 21002 + - uid: 24953 + components: + - type: Transform + pos: 93.5,-16.5 + parent: 21002 + - uid: 24954 + components: + - type: Transform + pos: 93.5,-15.5 + parent: 21002 + - uid: 24955 + components: + - type: Transform + pos: 94.5,-15.5 + parent: 21002 + - uid: 24956 + components: + - type: Transform + pos: 94.5,-14.5 + parent: 21002 + - uid: 24957 + components: + - type: Transform + pos: 94.5,-13.5 + parent: 21002 + - uid: 24958 + components: + - type: Transform + pos: 94.5,-12.5 + parent: 21002 + - uid: 24959 + components: + - type: Transform + pos: 95.5,-12.5 + parent: 21002 + - uid: 24960 + components: + - type: Transform + pos: 95.5,-11.5 + parent: 21002 + - uid: 24961 + components: + - type: Transform + pos: 95.5,-10.5 + parent: 21002 + - uid: 24962 + components: + - type: Transform + pos: 95.5,-9.5 + parent: 21002 + - uid: 24963 + components: + - type: Transform + pos: 95.5,-8.5 + parent: 21002 + - uid: 24964 + components: + - type: Transform + pos: 95.5,-7.5 + parent: 21002 + - uid: 24965 + components: + - type: Transform + pos: 95.5,-6.5 + parent: 21002 + - uid: 24966 + components: + - type: Transform + pos: 94.5,-4.5 + parent: 21002 + - uid: 24967 + components: + - type: Transform + pos: 95.5,-5.5 + parent: 21002 + - uid: 24968 + components: + - type: Transform + pos: 95.5,-4.5 + parent: 21002 + - uid: 24969 + components: + - type: Transform + pos: 95.5,-3.5 + parent: 21002 + - uid: 24970 + components: + - type: Transform + pos: 95.5,-2.5 + parent: 21002 + - uid: 24971 + components: + - type: Transform + pos: 95.5,-1.5 + parent: 21002 + - uid: 24972 + components: + - type: Transform + pos: 95.5,-0.5 + parent: 21002 + - uid: 24973 + components: + - type: Transform + pos: 95.5,0.5 + parent: 21002 + - uid: 24974 + components: + - type: Transform + pos: 95.5,1.5 + parent: 21002 + - uid: 24975 + components: + - type: Transform + pos: 95.5,2.5 + parent: 21002 + - uid: 24976 + components: + - type: Transform + pos: 95.5,3.5 + parent: 21002 + - uid: 24977 + components: + - type: Transform + pos: 95.5,4.5 + parent: 21002 + - uid: 24978 + components: + - type: Transform + pos: 95.5,5.5 + parent: 21002 + - uid: 24979 + components: + - type: Transform + pos: 95.5,6.5 + parent: 21002 + - uid: 24980 + components: + - type: Transform + pos: 95.5,7.5 + parent: 21002 + - uid: 24981 + components: + - type: Transform + pos: 95.5,8.5 + parent: 21002 + - uid: 24982 + components: + - type: Transform + pos: 95.5,9.5 + parent: 21002 + - uid: 24983 + components: + - type: Transform + pos: 95.5,10.5 + parent: 21002 + - uid: 24984 + components: + - type: Transform + pos: 95.5,11.5 + parent: 21002 + - uid: 24985 + components: + - type: Transform + pos: 95.5,12.5 + parent: 21002 + - uid: 24986 + components: + - type: Transform + pos: 95.5,13.5 + parent: 21002 + - uid: 24987 + components: + - type: Transform + pos: 95.5,14.5 + parent: 21002 + - uid: 24988 + components: + - type: Transform + pos: 95.5,15.5 + parent: 21002 + - uid: 24989 + components: + - type: Transform + pos: 95.5,16.5 + parent: 21002 + - uid: 24990 + components: + - type: Transform + pos: 95.5,17.5 + parent: 21002 + - uid: 24991 + components: + - type: Transform + pos: 95.5,18.5 + parent: 21002 + - uid: 24992 + components: + - type: Transform + pos: 95.5,19.5 + parent: 21002 + - uid: 24993 + components: + - type: Transform + pos: 95.5,20.5 + parent: 21002 + - uid: 24994 + components: + - type: Transform + pos: 95.5,21.5 + parent: 21002 + - uid: 24995 + components: + - type: Transform + pos: 95.5,22.5 + parent: 21002 + - uid: 24996 + components: + - type: Transform + pos: 95.5,23.5 + parent: 21002 + - uid: 24997 + components: + - type: Transform + pos: 95.5,24.5 + parent: 21002 + - uid: 24998 + components: + - type: Transform + pos: 95.5,25.5 + parent: 21002 + - uid: 24999 + components: + - type: Transform + pos: 95.5,26.5 + parent: 21002 + - uid: 25000 + components: + - type: Transform + pos: 95.5,27.5 + parent: 21002 + - uid: 25001 + components: + - type: Transform + pos: 95.5,28.5 + parent: 21002 + - uid: 25002 + components: + - type: Transform + pos: 95.5,29.5 + parent: 21002 + - uid: 25003 + components: + - type: Transform + pos: 95.5,30.5 + parent: 21002 + - uid: 25004 + components: + - type: Transform + pos: 94.5,27.5 + parent: 21002 + - uid: 25005 + components: + - type: Transform + pos: 93.5,27.5 + parent: 21002 + - uid: 25006 + components: + - type: Transform + pos: 92.5,27.5 + parent: 21002 + - uid: 25007 + components: + - type: Transform + pos: 95.5,31.5 + parent: 21002 + - uid: 25008 + components: + - type: Transform + pos: 95.5,32.5 + parent: 21002 + - uid: 25009 + components: + - type: Transform + pos: 95.5,33.5 + parent: 21002 + - uid: 25010 + components: + - type: Transform + pos: 95.5,34.5 + parent: 21002 + - uid: 25011 + components: + - type: Transform + pos: 94.5,34.5 + parent: 21002 + - uid: 25012 + components: + - type: Transform + pos: 94.5,35.5 + parent: 21002 + - uid: 25013 + components: + - type: Transform + pos: 94.5,36.5 + parent: 21002 + - uid: 25014 + components: + - type: Transform + pos: 94.5,37.5 + parent: 21002 + - uid: 25015 + components: + - type: Transform + pos: 94.5,38.5 + parent: 21002 + - uid: 25016 + components: + - type: Transform + pos: 93.5,38.5 + parent: 21002 + - uid: 25017 + components: + - type: Transform + pos: 93.5,39.5 + parent: 21002 + - uid: 25018 + components: + - type: Transform + pos: 93.5,40.5 + parent: 21002 + - uid: 25019 + components: + - type: Transform + pos: 93.5,41.5 + parent: 21002 + - uid: 25020 + components: + - type: Transform + pos: 93.5,42.5 + parent: 21002 + - uid: 25021 + components: + - type: Transform + pos: 93.5,42.5 + parent: 21002 + - uid: 25022 + components: + - type: Transform + pos: 92.5,42.5 + parent: 21002 + - uid: 25023 + components: + - type: Transform + pos: 92.5,43.5 + parent: 21002 + - uid: 25024 + components: + - type: Transform + pos: 92.5,44.5 + parent: 21002 + - uid: 25025 + components: + - type: Transform + pos: 92.5,45.5 + parent: 21002 + - uid: 25026 + components: + - type: Transform + pos: 91.5,45.5 + parent: 21002 + - uid: 25027 + components: + - type: Transform + pos: 91.5,46.5 + parent: 21002 + - uid: 25028 + components: + - type: Transform + pos: 91.5,47.5 + parent: 21002 + - uid: 25029 + components: + - type: Transform + pos: 91.5,48.5 + parent: 21002 + - uid: 25030 + components: + - type: Transform + pos: 90.5,48.5 + parent: 21002 + - uid: 25031 + components: + - type: Transform + pos: 90.5,49.5 + parent: 21002 + - uid: 25032 + components: + - type: Transform + pos: 90.5,50.5 + parent: 21002 + - uid: 25033 + components: + - type: Transform + pos: 89.5,50.5 + parent: 21002 + - uid: 25034 + components: + - type: Transform + pos: 89.5,51.5 + parent: 21002 + - uid: 25035 + components: + - type: Transform + pos: 89.5,52.5 + parent: 21002 + - uid: 25036 + components: + - type: Transform + pos: 88.5,52.5 + parent: 21002 + - uid: 25037 + components: + - type: Transform + pos: 88.5,53.5 + parent: 21002 + - uid: 25038 + components: + - type: Transform + pos: 88.5,54.5 + parent: 21002 + - uid: 25039 + components: + - type: Transform + pos: 87.5,54.5 + parent: 21002 + - uid: 25040 + components: + - type: Transform + pos: 87.5,55.5 + parent: 21002 + - uid: 25041 + components: + - type: Transform + pos: 86.5,56.5 + parent: 21002 + - uid: 25042 + components: + - type: Transform + pos: 86.5,56.5 + parent: 21002 + - uid: 25043 + components: + - type: Transform + pos: 85.5,56.5 + parent: 21002 + - uid: 25044 + components: + - type: Transform + pos: 85.5,57.5 + parent: 21002 + - uid: 25045 + components: + - type: Transform + pos: 85.5,58.5 + parent: 21002 + - uid: 25046 + components: + - type: Transform + pos: 86.5,55.5 + parent: 21002 + - uid: 25047 + components: + - type: Transform + pos: 84.5,58.5 + parent: 21002 + - uid: 25048 + components: + - type: Transform + pos: 84.5,59.5 + parent: 21002 + - uid: 25049 + components: + - type: Transform + pos: 83.5,59.5 + parent: 21002 + - uid: 25050 + components: + - type: Transform + pos: 83.5,60.5 + parent: 21002 + - uid: 25051 + components: + - type: Transform + pos: 82.5,60.5 + parent: 21002 + - uid: 25052 + components: + - type: Transform + pos: 81.5,60.5 + parent: 21002 + - uid: 25053 + components: + - type: Transform + pos: 81.5,61.5 + parent: 21002 + - uid: 25054 + components: + - type: Transform + pos: 80.5,61.5 + parent: 21002 + - uid: 25055 + components: + - type: Transform + pos: 79.5,61.5 + parent: 21002 + - uid: 25056 + components: + - type: Transform + pos: 79.5,62.5 + parent: 21002 + - uid: 25057 + components: + - type: Transform + pos: 78.5,62.5 + parent: 21002 + - uid: 25058 + components: + - type: Transform + pos: 77.5,62.5 + parent: 21002 + - uid: 25059 + components: + - type: Transform + pos: 77.5,63.5 + parent: 21002 + - uid: 25060 + components: + - type: Transform + pos: 76.5,63.5 + parent: 21002 + - uid: 25061 + components: + - type: Transform + pos: 75.5,63.5 + parent: 21002 + - uid: 25062 + components: + - type: Transform + pos: 75.5,64.5 + parent: 21002 + - uid: 25063 + components: + - type: Transform + pos: 74.5,64.5 + parent: 21002 + - uid: 25064 + components: + - type: Transform + pos: 73.5,64.5 + parent: 21002 + - uid: 25065 + components: + - type: Transform + pos: 72.5,64.5 + parent: 21002 + - uid: 25066 + components: + - type: Transform + pos: 71.5,64.5 + parent: 21002 + - uid: 25067 + components: + - type: Transform + pos: 71.5,65.5 + parent: 21002 + - uid: 25068 + components: + - type: Transform + pos: 70.5,65.5 + parent: 21002 + - uid: 25069 + components: + - type: Transform + pos: 69.5,65.5 + parent: 21002 + - uid: 25070 + components: + - type: Transform + pos: 68.5,65.5 + parent: 21002 + - uid: 25071 + components: + - type: Transform + pos: 67.5,65.5 + parent: 21002 + - uid: 25072 + components: + - type: Transform + pos: 66.5,65.5 + parent: 21002 + - uid: 25073 + components: + - type: Transform + pos: 65.5,65.5 + parent: 21002 + - uid: 25074 + components: + - type: Transform + pos: 65.5,66.5 + parent: 21002 + - uid: 25075 + components: + - type: Transform + pos: 64.5,66.5 + parent: 21002 + - uid: 25076 + components: + - type: Transform + pos: 63.5,66.5 + parent: 21002 + - uid: 25077 + components: + - type: Transform + pos: 62.5,66.5 + parent: 21002 + - uid: 25078 + components: + - type: Transform + pos: 61.5,66.5 + parent: 21002 + - uid: 25079 + components: + - type: Transform + pos: 60.5,66.5 + parent: 21002 + - uid: 25080 + components: + - type: Transform + pos: 59.5,66.5 + parent: 21002 + - uid: 25081 + components: + - type: Transform + pos: 58.5,66.5 + parent: 21002 + - uid: 25082 + components: + - type: Transform + pos: 57.5,66.5 + parent: 21002 + - uid: 25083 + components: + - type: Transform + pos: 56.5,66.5 + parent: 21002 + - uid: 25084 + components: + - type: Transform + pos: 55.5,66.5 + parent: 21002 + - uid: 25085 + components: + - type: Transform + pos: 54.5,66.5 + parent: 21002 + - uid: 25086 + components: + - type: Transform + pos: 53.5,66.5 + parent: 21002 + - uid: 25087 + components: + - type: Transform + pos: 52.5,66.5 + parent: 21002 + - uid: 25088 + components: + - type: Transform + pos: 51.5,66.5 + parent: 21002 + - uid: 25089 + components: + - type: Transform + pos: 50.5,66.5 + parent: 21002 + - uid: 25090 + components: + - type: Transform + pos: 49.5,66.5 + parent: 21002 + - uid: 25091 + components: + - type: Transform + pos: 48.5,66.5 + parent: 21002 + - uid: 25092 + components: + - type: Transform + pos: 47.5,66.5 + parent: 21002 + - uid: 25093 + components: + - type: Transform + pos: 46.5,66.5 + parent: 21002 + - uid: 25094 + components: + - type: Transform + pos: 45.5,66.5 + parent: 21002 + - uid: 25095 + components: + - type: Transform + pos: 44.5,66.5 + parent: 21002 + - uid: 25096 + components: + - type: Transform + pos: 43.5,66.5 + parent: 21002 + - uid: 25097 + components: + - type: Transform + pos: 42.5,66.5 + parent: 21002 + - uid: 25098 + components: + - type: Transform + pos: 41.5,66.5 + parent: 21002 + - uid: 25099 + components: + - type: Transform + pos: 40.5,66.5 + parent: 21002 + - uid: 25100 + components: + - type: Transform + pos: 39.5,66.5 + parent: 21002 + - uid: 25101 + components: + - type: Transform + pos: 38.5,66.5 + parent: 21002 + - uid: 25102 + components: + - type: Transform + pos: 37.5,66.5 + parent: 21002 + - uid: 25103 + components: + - type: Transform + pos: 36.5,66.5 + parent: 21002 + - uid: 25104 + components: + - type: Transform + pos: 35.5,66.5 + parent: 21002 + - uid: 25105 + components: + - type: Transform + pos: 34.5,66.5 + parent: 21002 + - uid: 25106 + components: + - type: Transform + pos: 43.5,65.5 + parent: 21002 + - uid: 25107 + components: + - type: Transform + pos: 43.5,64.5 + parent: 21002 + - uid: 25108 + components: + - type: Transform + pos: 43.5,63.5 + parent: 21002 + - uid: 25109 + components: + - type: Transform + pos: 34.5,65.5 + parent: 21002 + - uid: 25110 + components: + - type: Transform + pos: 33.5,65.5 + parent: 21002 + - uid: 25111 + components: + - type: Transform + pos: 32.5,65.5 + parent: 21002 + - uid: 25112 + components: + - type: Transform + pos: 31.5,65.5 + parent: 21002 + - uid: 25113 + components: + - type: Transform + pos: 30.5,65.5 + parent: 21002 + - uid: 25114 + components: + - type: Transform + pos: 30.5,64.5 + parent: 21002 + - uid: 25115 + components: + - type: Transform + pos: 29.5,64.5 + parent: 21002 + - uid: 25116 + components: + - type: Transform + pos: 28.5,64.5 + parent: 21002 + - uid: 25117 + components: + - type: Transform + pos: 27.5,64.5 + parent: 21002 + - uid: 25118 + components: + - type: Transform + pos: 26.5,64.5 + parent: 21002 + - uid: 25119 + components: + - type: Transform + pos: 26.5,63.5 + parent: 21002 + - uid: 25120 + components: + - type: Transform + pos: 25.5,63.5 + parent: 21002 + - uid: 25121 + components: + - type: Transform + pos: 24.5,63.5 + parent: 21002 + - uid: 25122 + components: + - type: Transform + pos: 23.5,63.5 + parent: 21002 + - uid: 25123 + components: + - type: Transform + pos: 23.5,62.5 + parent: 21002 + - uid: 25124 + components: + - type: Transform + pos: 22.5,62.5 + parent: 21002 + - uid: 25125 + components: + - type: Transform + pos: 21.5,62.5 + parent: 21002 + - uid: 25126 + components: + - type: Transform + pos: 20.5,62.5 + parent: 21002 + - uid: 25127 + components: + - type: Transform + pos: 20.5,61.5 + parent: 21002 + - uid: 25128 + components: + - type: Transform + pos: 19.5,61.5 + parent: 21002 + - uid: 25129 + components: + - type: Transform + pos: 18.5,61.5 + parent: 21002 + - uid: 25130 + components: + - type: Transform + pos: 18.5,60.5 + parent: 21002 + - uid: 25131 + components: + - type: Transform + pos: 17.5,60.5 + parent: 21002 + - uid: 25132 + components: + - type: Transform + pos: 16.5,60.5 + parent: 21002 + - uid: 25133 + components: + - type: Transform + pos: 16.5,59.5 + parent: 21002 + - uid: 25134 + components: + - type: Transform + pos: 15.5,59.5 + parent: 21002 + - uid: 25135 + components: + - type: Transform + pos: 14.5,59.5 + parent: 21002 + - uid: 25136 + components: + - type: Transform + pos: 14.5,58.5 + parent: 21002 + - uid: 25137 + components: + - type: Transform + pos: 13.5,58.5 + parent: 21002 + - uid: 25138 + components: + - type: Transform + pos: 12.5,58.5 + parent: 21002 + - uid: 25139 + components: + - type: Transform + pos: 12.5,57.5 + parent: 21002 + - uid: 25140 + components: + - type: Transform + pos: 11.5,57.5 + parent: 21002 + - uid: 25141 + components: + - type: Transform + pos: 10.5,57.5 + parent: 21002 + - uid: 25142 + components: + - type: Transform + pos: 10.5,56.5 + parent: 21002 + - uid: 25143 + components: + - type: Transform + pos: 9.5,56.5 + parent: 21002 + - uid: 25144 + components: + - type: Transform + pos: 9.5,55.5 + parent: 21002 + - uid: 25145 + components: + - type: Transform + pos: 8.5,55.5 + parent: 21002 + - uid: 25146 + components: + - type: Transform + pos: 7.5,55.5 + parent: 21002 + - uid: 25147 + components: + - type: Transform + pos: 7.5,54.5 + parent: 21002 + - uid: 25148 + components: + - type: Transform + pos: 6.5,54.5 + parent: 21002 + - uid: 25149 + components: + - type: Transform + pos: 6.5,53.5 + parent: 21002 + - uid: 25150 + components: + - type: Transform + pos: 5.5,53.5 + parent: 21002 + - uid: 25151 + components: + - type: Transform + pos: 5.5,52.5 + parent: 21002 + - uid: 25152 + components: + - type: Transform + pos: 4.5,52.5 + parent: 21002 + - uid: 25153 + components: + - type: Transform + pos: 4.5,51.5 + parent: 21002 + - uid: 25154 + components: + - type: Transform + pos: 3.5,51.5 + parent: 21002 + - uid: 25155 + components: + - type: Transform + pos: 3.5,50.5 + parent: 21002 + - uid: 25156 + components: + - type: Transform + pos: 3.5,49.5 + parent: 21002 + - uid: 25157 + components: + - type: Transform + pos: 2.5,49.5 + parent: 21002 + - uid: 25158 + components: + - type: Transform + pos: 2.5,48.5 + parent: 21002 + - uid: 25159 + components: + - type: Transform + pos: 1.5,48.5 + parent: 21002 + - uid: 25160 + components: + - type: Transform + pos: 1.5,47.5 + parent: 21002 + - uid: 25161 + components: + - type: Transform + pos: 1.5,46.5 + parent: 21002 + - uid: 25162 + components: + - type: Transform + pos: 0.5,46.5 + parent: 21002 + - uid: 25163 + components: + - type: Transform + pos: 0.5,45.5 + parent: 21002 + - uid: 25164 + components: + - type: Transform + pos: 0.5,44.5 + parent: 21002 + - uid: 25165 + components: + - type: Transform + pos: -0.5,44.5 + parent: 21002 + - uid: 25166 + components: + - type: Transform + pos: -0.5,43.5 + parent: 21002 + - uid: 25167 + components: + - type: Transform + pos: -1.5,43.5 + parent: 21002 + - uid: 25168 + components: + - type: Transform + pos: -1.5,42.5 + parent: 21002 + - uid: 25169 + components: + - type: Transform + pos: -1.5,41.5 + parent: 21002 + - uid: 25170 + components: + - type: Transform + pos: -2.5,41.5 + parent: 21002 + - uid: 25171 + components: + - type: Transform + pos: -2.5,40.5 + parent: 21002 + - uid: 25172 + components: + - type: Transform + pos: -2.5,39.5 + parent: 21002 + - uid: 25173 + components: + - type: Transform + pos: -3.5,39.5 + parent: 21002 + - uid: 25174 + components: + - type: Transform + pos: -3.5,38.5 + parent: 21002 + - uid: 25175 + components: + - type: Transform + pos: -3.5,37.5 + parent: 21002 + - uid: 25176 + components: + - type: Transform + pos: -4.5,37.5 + parent: 21002 + - uid: 25177 + components: + - type: Transform + pos: -4.5,36.5 + parent: 21002 + - uid: 25178 + components: + - type: Transform + pos: -4.5,35.5 + parent: 21002 + - uid: 25179 + components: + - type: Transform + pos: -5.5,35.5 + parent: 21002 + - uid: 25180 + components: + - type: Transform + pos: -6.5,24.5 + parent: 21002 + - uid: 25181 + components: + - type: Transform + pos: -5.5,34.5 + parent: 21002 + - uid: 25182 + components: + - type: Transform + pos: -5.5,33.5 + parent: 21002 + - uid: 25183 + components: + - type: Transform + pos: -5.5,32.5 + parent: 21002 + - uid: 25184 + components: + - type: Transform + pos: -6.5,32.5 + parent: 21002 + - uid: 25185 + components: + - type: Transform + pos: -6.5,31.5 + parent: 21002 + - uid: 25186 + components: + - type: Transform + pos: -6.5,30.5 + parent: 21002 + - uid: 25187 + components: + - type: Transform + pos: -6.5,29.5 + parent: 21002 + - uid: 25188 + components: + - type: Transform + pos: -6.5,28.5 + parent: 21002 + - uid: 25189 + components: + - type: Transform + pos: -6.5,27.5 + parent: 21002 + - uid: 25190 + components: + - type: Transform + pos: -6.5,26.5 + parent: 21002 + - uid: 25191 + components: + - type: Transform + pos: -6.5,25.5 + parent: 21002 + - uid: 25192 + components: + - type: Transform + pos: -5.5,26.5 + parent: 21002 + - uid: 25193 + components: + - type: Transform + pos: -4.5,26.5 + parent: 21002 + - uid: 25194 + components: + - type: Transform + pos: -3.5,26.5 + parent: 21002 + - uid: 25195 + components: + - type: Transform + pos: -6.5,23.5 + parent: 21002 + - uid: 25196 + components: + - type: Transform + pos: -6.5,22.5 + parent: 21002 + - uid: 25197 + components: + - type: Transform + pos: -6.5,21.5 + parent: 21002 + - uid: 25198 + components: + - type: Transform + pos: -6.5,20.5 + parent: 21002 + - uid: 25199 + components: + - type: Transform + pos: -6.5,19.5 + parent: 21002 + - uid: 25200 + components: + - type: Transform + pos: -6.5,18.5 + parent: 21002 + - uid: 25201 + components: + - type: Transform + pos: -6.5,17.5 + parent: 21002 + - uid: 25202 + components: + - type: Transform + pos: -6.5,16.5 + parent: 21002 + - uid: 25203 + components: + - type: Transform + pos: -6.5,15.5 + parent: 21002 + - uid: 25204 + components: + - type: Transform + pos: -6.5,14.5 + parent: 21002 + - uid: 25205 + components: + - type: Transform + pos: -5.5,14.5 + parent: 21002 + - uid: 25206 + components: + - type: Transform + pos: -7.5,14.5 + parent: 21002 + - uid: 25207 + components: + - type: Transform + pos: -3.5,16.5 + parent: 21002 + - uid: 25208 + components: + - type: Transform + pos: -3.5,17.5 + parent: 21002 + - uid: 25209 + components: + - type: Transform + pos: -9.5,16.5 + parent: 21002 + - uid: 25210 + components: + - type: Transform + pos: -9.5,17.5 + parent: 21002 + - uid: 25211 + components: + - type: Transform + pos: -9.5,17.5 + parent: 21002 + - uid: 25212 + components: + - type: Transform + pos: -8.5,17.5 + parent: 21002 + - uid: 25213 + components: + - type: Transform + pos: -7.5,17.5 + parent: 21002 + - uid: 25214 + components: + - type: Transform + pos: -5.5,17.5 + parent: 21002 + - uid: 25215 + components: + - type: Transform + pos: -4.5,17.5 + parent: 21002 + - uid: 25572 + components: + - type: Transform + pos: 43.5,60.5 + parent: 21002 + - uid: 25573 + components: + - type: Transform + pos: 43.5,62.5 + parent: 21002 + - uid: 25579 + components: + - type: Transform + pos: 43.5,61.5 + parent: 21002 + - uid: 26463 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 21002 + - uid: 26540 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 21002 + - uid: 26558 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 21002 + - uid: 26559 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 21002 + - uid: 26562 + components: + - type: Transform + pos: 50.5,8.5 + parent: 21002 + - uid: 26563 + components: + - type: Transform + pos: 51.5,8.5 + parent: 21002 + - uid: 26569 + components: + - type: Transform + pos: 49.5,8.5 + parent: 21002 + - uid: 26573 + components: + - type: Transform + pos: 36.5,3.5 + parent: 21002 + - uid: 26574 + components: + - type: Transform + pos: 36.5,4.5 + parent: 21002 + - uid: 26575 + components: + - type: Transform + pos: 46.5,8.5 + parent: 21002 + - uid: 26576 + components: + - type: Transform + pos: 48.5,8.5 + parent: 21002 + - uid: 26581 + components: + - type: Transform + pos: 41.5,6.5 + parent: 21002 + - uid: 26582 + components: + - type: Transform + pos: 42.5,6.5 + parent: 21002 + - uid: 26583 + components: + - type: Transform + pos: 44.5,8.5 + parent: 21002 + - uid: 26584 + components: + - type: Transform + pos: 47.5,8.5 + parent: 21002 + - uid: 26585 + components: + - type: Transform + pos: 45.5,8.5 + parent: 21002 + - uid: 26586 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 21002 + - uid: 26591 + components: + - type: Transform + pos: 38.5,4.5 + parent: 21002 + - uid: 26592 + components: + - type: Transform + pos: 37.5,4.5 + parent: 21002 + - uid: 26593 + components: + - type: Transform + pos: 44.5,7.5 + parent: 21002 + - uid: 26597 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 21002 + - uid: 26601 + components: + - type: Transform + pos: 39.5,6.5 + parent: 21002 + - uid: 26602 + components: + - type: Transform + pos: 40.5,6.5 + parent: 21002 + - uid: 26603 + components: + - type: Transform + pos: 44.5,6.5 + parent: 21002 + - uid: 26620 + components: + - type: Transform + pos: 38.5,5.5 + parent: 21002 + - uid: 26621 + components: + - type: Transform + pos: 38.5,6.5 + parent: 21002 + - uid: 26622 + components: + - type: Transform + pos: 43.5,6.5 + parent: 21002 + - uid: 26629 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 21002 + - uid: 26630 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 21002 + - uid: 26639 + components: + - type: Transform + pos: 34.5,2.5 + parent: 21002 + - uid: 26649 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 21002 + - uid: 26650 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 21002 + - uid: 26672 + components: + - type: Transform + pos: 35.5,2.5 + parent: 21002 + - uid: 26673 + components: + - type: Transform + pos: 24.5,2.5 + parent: 21002 + - uid: 26680 + components: + - type: Transform + pos: 32.5,2.5 + parent: 21002 + - uid: 26681 + components: + - type: Transform + pos: 32.5,1.5 + parent: 21002 + - uid: 26682 + components: + - type: Transform + pos: 36.5,2.5 + parent: 21002 + - uid: 26683 + components: + - type: Transform + pos: 23.5,2.5 + parent: 21002 + - uid: 26685 + components: + - type: Transform + pos: 25.5,2.5 + parent: 21002 + - uid: 26686 + components: + - type: Transform + pos: 22.5,2.5 + parent: 21002 + - uid: 26693 + components: + - type: Transform + pos: 52.5,8.5 + parent: 21002 + - uid: 26694 + components: + - type: Transform + pos: 53.5,8.5 + parent: 21002 + - uid: 26707 + components: + - type: Transform + pos: 43.5,58.5 + parent: 21002 + - uid: 26717 + components: + - type: Transform + pos: 43.5,50.5 + parent: 21002 + - uid: 27760 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 21002 + - uid: 28011 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 21002 + - uid: 28016 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 21002 + - uid: 28017 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 21002 + - uid: 28019 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 21002 + - uid: 28025 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 21002 + - uid: 28030 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 21002 + - uid: 28034 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 21002 + - uid: 28039 + components: + - type: Transform + pos: 22.5,1.5 + parent: 21002 + - uid: 28297 + components: + - type: Transform + pos: 11.5,6.5 + parent: 21002 + - uid: 28354 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 23589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.973267,-49.100296 + parent: 2 + - uid: 23590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.65035,-47.42321 + parent: 2 +- proto: Cablecuffs + entities: + - uid: 19069 + components: + - type: Transform + pos: 29.426947,-41.33009 + parent: 2 +- proto: CableHV + entities: + - uid: 1409 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -2.5,24.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: -5.5,24.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: -5.5,25.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: 18.5,40.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: -1.5,44.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: 36.5,35.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: 31.5,37.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: 33.5,37.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: 33.5,39.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: 35.5,39.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: 30.5,40.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: 29.5,40.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: 28.5,40.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: 24.5,39.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: 14.5,41.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: 13.5,41.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: 15.5,43.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: 18.5,43.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: 18.5,44.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + pos: 18.5,45.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + pos: 18.5,46.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: 18.5,47.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: 18.5,50.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: 18.5,51.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: 18.5,52.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: 17.5,53.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: 11.5,43.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: 10.5,43.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: 9.5,43.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: 8.5,43.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: 8.5,44.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: 8.5,45.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 8.5,46.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 8.5,49.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 8.5,50.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: 8.5,51.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: 8.5,53.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: 7.5,53.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: 9.5,53.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: 34.5,45.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: 34.5,47.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 34.5,49.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 9422 + components: + - type: Transform + pos: -19.5,42.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 10005 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 10007 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 10027 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 10607 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 + - uid: 10613 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 + - uid: 10891 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + pos: -46.5,-53.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 11602 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 11603 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 11604 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 11606 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 11607 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 11608 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 11610 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 11611 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 11612 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 11613 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 11614 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 11616 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - uid: 11617 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 11623 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 11624 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - uid: 11625 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 11626 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 11627 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 11628 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 11630 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 11631 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 11633 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 11634 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 11635 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 11636 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 11637 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 11638 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 11639 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 11640 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 11641 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 11643 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 11644 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 11649 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 11654 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 11657 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: -52.5,-27.5 + parent: 2 + - uid: 11665 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - uid: 11666 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 2 + - uid: 11798 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 11799 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 11800 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 11801 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 11802 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - uid: 11803 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 11804 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: 40.5,35.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 11808 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 11809 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 11811 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 12088 + components: + - type: Transform + pos: -47.5,-29.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 12905 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 12911 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 12913 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 12920 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 12928 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: 56.5,13.5 + parent: 2 + - uid: 12937 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 12978 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + pos: 58.5,0.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: 60.5,0.5 + parent: 2 + - uid: 12993 + components: + - type: Transform + pos: 60.5,9.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 12995 + components: + - type: Transform + pos: 58.5,9.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - uid: 16680 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 18227 + components: + - type: Transform + pos: -46.5,-51.5 + parent: 2 + - uid: 18451 + components: + - type: Transform + pos: 60.5,5.5 + parent: 2 + - uid: 18452 + components: + - type: Transform + pos: 60.5,4.5 + parent: 2 + - uid: 18453 + components: + - type: Transform + pos: 60.5,3.5 + parent: 2 + - uid: 18704 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 2 + - uid: 19164 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 19246 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 19550 + components: + - type: Transform + pos: -46.5,-52.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + pos: -47.5,-51.5 + parent: 2 + - uid: 19554 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + pos: -47.5,-50.5 + parent: 2 + - uid: 19557 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - uid: 19558 + components: + - type: Transform + pos: -47.5,-47.5 + parent: 2 + - uid: 19559 + components: + - type: Transform + pos: -47.5,-46.5 + parent: 2 + - uid: 19560 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 19561 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 19562 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 19563 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 19564 + components: + - type: Transform + pos: -48.5,-42.5 + parent: 2 + - uid: 19565 + components: + - type: Transform + pos: -48.5,-41.5 + parent: 2 + - uid: 19566 + components: + - type: Transform + pos: -48.5,-40.5 + parent: 2 + - uid: 19567 + components: + - type: Transform + pos: -48.5,-39.5 + parent: 2 + - uid: 19568 + components: + - type: Transform + pos: -50.5,-55.5 + parent: 2 + - uid: 19569 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 19570 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 19571 + components: + - type: Transform + pos: -49.5,-38.5 + parent: 2 + - uid: 19572 + components: + - type: Transform + pos: -49.5,-37.5 + parent: 2 + - uid: 19573 + components: + - type: Transform + pos: -49.5,-36.5 + parent: 2 + - uid: 19574 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 2 + - uid: 19575 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 19576 + components: + - type: Transform + pos: -49.5,-33.5 + parent: 2 + - uid: 19577 + components: + - type: Transform + pos: -49.5,-32.5 + parent: 2 + - uid: 19578 + components: + - type: Transform + pos: -49.5,-31.5 + parent: 2 + - uid: 19579 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 2 + - uid: 19580 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 19581 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 19582 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 + - uid: 19583 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - uid: 19584 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 2 + - uid: 19585 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - uid: 19586 + components: + - type: Transform + pos: -7.5,-57.5 + parent: 2 + - uid: 19587 + components: + - type: Transform + pos: -8.5,-57.5 + parent: 2 + - uid: 19588 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 19589 + components: + - type: Transform + pos: -10.5,-57.5 + parent: 2 + - uid: 19590 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 2 + - uid: 19591 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - uid: 19593 + components: + - type: Transform + pos: -13.5,-56.5 + parent: 2 + - uid: 19594 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - uid: 19595 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 + - uid: 19596 + components: + - type: Transform + pos: -16.5,-56.5 + parent: 2 + - uid: 19597 + components: + - type: Transform + pos: -17.5,-56.5 + parent: 2 + - uid: 19598 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 2 + - uid: 19599 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 2 + - uid: 19600 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 19601 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 19602 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 19603 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 19604 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 19605 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 2 + - uid: 19606 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 19607 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 19608 + components: + - type: Transform + pos: -25.5,-53.5 + parent: 2 + - uid: 19609 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 19610 + components: + - type: Transform + pos: -27.5,-53.5 + parent: 2 + - uid: 19611 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 19612 + components: + - type: Transform + pos: -29.5,-53.5 + parent: 2 + - uid: 19613 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 19614 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 + - uid: 19615 + components: + - type: Transform + pos: -32.5,-53.5 + parent: 2 + - uid: 19616 + components: + - type: Transform + pos: -33.5,-53.5 + parent: 2 + - uid: 19617 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 + - uid: 19618 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 19619 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 19620 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 19621 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 2 + - uid: 19622 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 19623 + components: + - type: Transform + pos: -39.5,-52.5 + parent: 2 + - uid: 19624 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - uid: 19625 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - uid: 19626 + components: + - type: Transform + pos: -42.5,-52.5 + parent: 2 + - uid: 19627 + components: + - type: Transform + pos: -43.5,-52.5 + parent: 2 + - uid: 19628 + components: + - type: Transform + pos: -43.5,-51.5 + parent: 2 + - uid: 19629 + components: + - type: Transform + pos: -43.5,-50.5 + parent: 2 + - uid: 19630 + components: + - type: Transform + pos: -44.5,-50.5 + parent: 2 + - uid: 19631 + components: + - type: Transform + pos: -44.5,-49.5 + parent: 2 + - uid: 19632 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 19633 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 19634 + components: + - type: Transform + pos: -46.5,-48.5 + parent: 2 + - uid: 19643 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 19644 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 19645 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 19646 + components: + - type: Transform + pos: -50.5,-56.5 + parent: 2 + - uid: 19647 + components: + - type: Transform + pos: -51.5,-56.5 + parent: 2 + - uid: 19648 + components: + - type: Transform + pos: -51.5,-57.5 + parent: 2 + - uid: 19649 + components: + - type: Transform + pos: -52.5,-57.5 + parent: 2 + - uid: 19650 + components: + - type: Transform + pos: -52.5,-58.5 + parent: 2 + - uid: 19651 + components: + - type: Transform + pos: -53.5,-58.5 + parent: 2 + - uid: 19652 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 19653 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 2 + - uid: 19654 + components: + - type: Transform + pos: -53.5,-61.5 + parent: 2 + - uid: 19655 + components: + - type: Transform + pos: -56.5,-58.5 + parent: 2 + - uid: 19656 + components: + - type: Transform + pos: -57.5,-58.5 + parent: 2 + - uid: 19657 + components: + - type: Transform + pos: -58.5,-58.5 + parent: 2 + - uid: 19658 + components: + - type: Transform + pos: -59.5,-58.5 + parent: 2 + - uid: 19659 + components: + - type: Transform + pos: -62.5,-58.5 + parent: 2 + - uid: 19660 + components: + - type: Transform + pos: -63.5,-58.5 + parent: 2 + - uid: 19661 + components: + - type: Transform + pos: -64.5,-58.5 + parent: 2 + - uid: 19662 + components: + - type: Transform + pos: -53.5,-67.5 + parent: 2 + - uid: 19663 + components: + - type: Transform + pos: -53.5,-68.5 + parent: 2 + - uid: 19664 + components: + - type: Transform + pos: -53.5,-69.5 + parent: 2 + - uid: 19665 + components: + - type: Transform + pos: -53.5,-65.5 + parent: 2 + - uid: 19704 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 2 + - uid: 19720 + components: + - type: Transform + pos: -55.5,-64.5 + parent: 2 + - uid: 19761 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 2 + - uid: 19762 + components: + - type: Transform + pos: -56.5,-60.5 + parent: 2 + - uid: 19763 + components: + - type: Transform + pos: -57.5,-60.5 + parent: 2 + - uid: 19764 + components: + - type: Transform + pos: -58.5,-60.5 + parent: 2 + - uid: 19765 + components: + - type: Transform + pos: -59.5,-60.5 + parent: 2 + - uid: 19766 + components: + - type: Transform + pos: -55.5,-62.5 + parent: 2 + - uid: 19767 + components: + - type: Transform + pos: -56.5,-62.5 + parent: 2 + - uid: 19768 + components: + - type: Transform + pos: -57.5,-62.5 + parent: 2 + - uid: 19769 + components: + - type: Transform + pos: -58.5,-62.5 + parent: 2 + - uid: 19770 + components: + - type: Transform + pos: -59.5,-62.5 + parent: 2 + - uid: 19771 + components: + - type: Transform + pos: -51.5,-61.5 + parent: 2 + - uid: 19772 + components: + - type: Transform + pos: -52.5,-61.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: -51.5,-62.5 + parent: 2 + - uid: 19774 + components: + - type: Transform + pos: -50.5,-62.5 + parent: 2 + - uid: 19775 + components: + - type: Transform + pos: -49.5,-62.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + pos: -48.5,-62.5 + parent: 2 + - uid: 19777 + components: + - type: Transform + pos: -47.5,-62.5 + parent: 2 + - uid: 19778 + components: + - type: Transform + pos: -47.5,-60.5 + parent: 2 + - uid: 19779 + components: + - type: Transform + pos: -48.5,-60.5 + parent: 2 + - uid: 19780 + components: + - type: Transform + pos: -49.5,-60.5 + parent: 2 + - uid: 19781 + components: + - type: Transform + pos: -50.5,-60.5 + parent: 2 + - uid: 19782 + components: + - type: Transform + pos: -51.5,-60.5 + parent: 2 + - uid: 19783 + components: + - type: Transform + pos: -51.5,-64.5 + parent: 2 + - uid: 19784 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 2 + - uid: 19785 + components: + - type: Transform + pos: -49.5,-64.5 + parent: 2 + - uid: 19786 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 2 + - uid: 19787 + components: + - type: Transform + pos: -47.5,-64.5 + parent: 2 + - uid: 19788 + components: + - type: Transform + pos: -47.5,-66.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + pos: -48.5,-66.5 + parent: 2 + - uid: 19790 + components: + - type: Transform + pos: -49.5,-66.5 + parent: 2 + - uid: 19791 + components: + - type: Transform + pos: -50.5,-66.5 + parent: 2 + - uid: 19792 + components: + - type: Transform + pos: -51.5,-66.5 + parent: 2 + - uid: 19793 + components: + - type: Transform + pos: -47.5,-68.5 + parent: 2 + - uid: 19794 + components: + - type: Transform + pos: -48.5,-68.5 + parent: 2 + - uid: 19795 + components: + - type: Transform + pos: -49.5,-68.5 + parent: 2 + - uid: 19796 + components: + - type: Transform + pos: -50.5,-68.5 + parent: 2 + - uid: 19797 + components: + - type: Transform + pos: -51.5,-68.5 + parent: 2 + - uid: 19798 + components: + - type: Transform + pos: -47.5,-70.5 + parent: 2 + - uid: 19799 + components: + - type: Transform + pos: -48.5,-70.5 + parent: 2 + - uid: 19800 + components: + - type: Transform + pos: -49.5,-70.5 + parent: 2 + - uid: 19801 + components: + - type: Transform + pos: -50.5,-70.5 + parent: 2 + - uid: 19802 + components: + - type: Transform + pos: -51.5,-70.5 + parent: 2 + - uid: 19803 + components: + - type: Transform + pos: -55.5,-70.5 + parent: 2 + - uid: 19804 + components: + - type: Transform + pos: -56.5,-70.5 + parent: 2 + - uid: 19805 + components: + - type: Transform + pos: -57.5,-70.5 + parent: 2 + - uid: 19806 + components: + - type: Transform + pos: -58.5,-70.5 + parent: 2 + - uid: 19807 + components: + - type: Transform + pos: -59.5,-70.5 + parent: 2 + - uid: 19808 + components: + - type: Transform + pos: -59.5,-68.5 + parent: 2 + - uid: 19809 + components: + - type: Transform + pos: -58.5,-68.5 + parent: 2 + - uid: 19810 + components: + - type: Transform + pos: -57.5,-68.5 + parent: 2 + - uid: 19811 + components: + - type: Transform + pos: -56.5,-68.5 + parent: 2 + - uid: 19812 + components: + - type: Transform + pos: -55.5,-68.5 + parent: 2 + - uid: 19813 + components: + - type: Transform + pos: -55.5,-65.5 + parent: 2 + - uid: 19819 + components: + - type: Transform + pos: -56.5,-64.5 + parent: 2 + - uid: 19820 + components: + - type: Transform + pos: -57.5,-64.5 + parent: 2 + - uid: 19821 + components: + - type: Transform + pos: -58.5,-64.5 + parent: 2 + - uid: 19822 + components: + - type: Transform + pos: -59.5,-64.5 + parent: 2 + - uid: 19823 + components: + - type: Transform + pos: -55.5,-66.5 + parent: 2 + - uid: 19824 + components: + - type: Transform + pos: -56.5,-66.5 + parent: 2 + - uid: 19825 + components: + - type: Transform + pos: -57.5,-66.5 + parent: 2 + - uid: 19826 + components: + - type: Transform + pos: -58.5,-66.5 + parent: 2 + - uid: 19827 + components: + - type: Transform + pos: -59.5,-66.5 + parent: 2 + - uid: 19828 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 2 + - uid: 19829 + components: + - type: Transform + pos: -55.5,-69.5 + parent: 2 + - uid: 19830 + components: + - type: Transform + pos: -54.5,-69.5 + parent: 2 + - uid: 19831 + components: + - type: Transform + pos: -51.5,-69.5 + parent: 2 + - uid: 19832 + components: + - type: Transform + pos: -67.5,-58.5 + parent: 2 + - uid: 19833 + components: + - type: Transform + pos: -63.5,-60.5 + parent: 2 + - uid: 19834 + components: + - type: Transform + pos: -63.5,-61.5 + parent: 2 + - uid: 19835 + components: + - type: Transform + pos: -63.5,-62.5 + parent: 2 + - uid: 19836 + components: + - type: Transform + pos: -63.5,-63.5 + parent: 2 + - uid: 19837 + components: + - type: Transform + pos: -63.5,-64.5 + parent: 2 + - uid: 19838 + components: + - type: Transform + pos: -61.5,-64.5 + parent: 2 + - uid: 19839 + components: + - type: Transform + pos: -61.5,-63.5 + parent: 2 + - uid: 19840 + components: + - type: Transform + pos: -61.5,-62.5 + parent: 2 + - uid: 19841 + components: + - type: Transform + pos: -61.5,-61.5 + parent: 2 + - uid: 19842 + components: + - type: Transform + pos: -61.5,-60.5 + parent: 2 + - uid: 19843 + components: + - type: Transform + pos: -63.5,-52.5 + parent: 2 + - uid: 19844 + components: + - type: Transform + pos: -63.5,-53.5 + parent: 2 + - uid: 19845 + components: + - type: Transform + pos: -63.5,-54.5 + parent: 2 + - uid: 19846 + components: + - type: Transform + pos: -63.5,-55.5 + parent: 2 + - uid: 19847 + components: + - type: Transform + pos: -63.5,-56.5 + parent: 2 + - uid: 19848 + components: + - type: Transform + pos: -65.5,-56.5 + parent: 2 + - uid: 19849 + components: + - type: Transform + pos: -65.5,-55.5 + parent: 2 + - uid: 19850 + components: + - type: Transform + pos: -65.5,-54.5 + parent: 2 + - uid: 19851 + components: + - type: Transform + pos: -65.5,-53.5 + parent: 2 + - uid: 19852 + components: + - type: Transform + pos: -65.5,-52.5 + parent: 2 + - uid: 19853 + components: + - type: Transform + pos: -67.5,-52.5 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: -67.5,-53.5 + parent: 2 + - uid: 19855 + components: + - type: Transform + pos: -67.5,-54.5 + parent: 2 + - uid: 19856 + components: + - type: Transform + pos: -67.5,-55.5 + parent: 2 + - uid: 19857 + components: + - type: Transform + pos: -67.5,-56.5 + parent: 2 + - uid: 19858 + components: + - type: Transform + pos: -66.5,-56.5 + parent: 2 + - uid: 19859 + components: + - type: Transform + pos: -66.5,-60.5 + parent: 2 + - uid: 19860 + components: + - type: Transform + pos: -66.5,-59.5 + parent: 2 + - uid: 19861 + components: + - type: Transform + pos: -66.5,-58.5 + parent: 2 + - uid: 19862 + components: + - type: Transform + pos: -67.5,-60.5 + parent: 2 + - uid: 19863 + components: + - type: Transform + pos: -67.5,-61.5 + parent: 2 + - uid: 19864 + components: + - type: Transform + pos: -67.5,-62.5 + parent: 2 + - uid: 19865 + components: + - type: Transform + pos: -67.5,-63.5 + parent: 2 + - uid: 19866 + components: + - type: Transform + pos: -67.5,-64.5 + parent: 2 + - uid: 19867 + components: + - type: Transform + pos: -65.5,-64.5 + parent: 2 + - uid: 19868 + components: + - type: Transform + pos: -65.5,-63.5 + parent: 2 + - uid: 19869 + components: + - type: Transform + pos: -65.5,-62.5 + parent: 2 + - uid: 19870 + components: + - type: Transform + pos: -65.5,-61.5 + parent: 2 + - uid: 19871 + components: + - type: Transform + pos: -65.5,-60.5 + parent: 2 + - uid: 19872 + components: + - type: Transform + pos: -62.5,-60.5 + parent: 2 + - uid: 19873 + components: + - type: Transform + pos: -62.5,-57.5 + parent: 2 + - uid: 19874 + components: + - type: Transform + pos: -68.5,-58.5 + parent: 2 + - uid: 19923 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 19924 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 19925 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 19926 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 19927 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 2 + - uid: 19928 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 + - uid: 19929 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 19930 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 19931 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 19932 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 + - uid: 19933 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - uid: 19934 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 2 + - uid: 19935 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 19936 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 19937 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 2 + - uid: 19938 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 19939 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 + - uid: 19940 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 19941 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 19942 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - uid: 19943 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 19944 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 19945 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 19946 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 19947 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 19948 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 19949 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 19950 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 19951 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 19952 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 2 + - uid: 19953 + components: + - type: Transform + pos: 38.5,-44.5 + parent: 2 + - uid: 19954 + components: + - type: Transform + pos: 39.5,-44.5 + parent: 2 + - uid: 19955 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 2 + - uid: 19956 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 + - uid: 19983 + components: + - type: Transform + pos: 41.5,-43.5 + parent: 2 + - uid: 19984 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 19985 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 + - uid: 19986 + components: + - type: Transform + pos: 44.5,-43.5 + parent: 2 + - uid: 19987 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - uid: 19988 + components: + - type: Transform + pos: 44.5,-45.5 + parent: 2 + - uid: 19989 + components: + - type: Transform + pos: 44.5,-46.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + pos: 43.5,-46.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - uid: 19992 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - uid: 20054 + components: + - type: Transform + pos: 50.5,-47.5 + parent: 2 + - uid: 20055 + components: + - type: Transform + pos: 51.5,-47.5 + parent: 2 + - uid: 20056 + components: + - type: Transform + pos: 52.5,-47.5 + parent: 2 + - uid: 20057 + components: + - type: Transform + pos: 53.5,-47.5 + parent: 2 + - uid: 20058 + components: + - type: Transform + pos: 54.5,-47.5 + parent: 2 + - uid: 20059 + components: + - type: Transform + pos: 55.5,-47.5 + parent: 2 + - uid: 20060 + components: + - type: Transform + pos: 56.5,-47.5 + parent: 2 + - uid: 20061 + components: + - type: Transform + pos: 57.5,-47.5 + parent: 2 + - uid: 20062 + components: + - type: Transform + pos: 58.5,-47.5 + parent: 2 + - uid: 20063 + components: + - type: Transform + pos: 59.5,-47.5 + parent: 2 + - uid: 20064 + components: + - type: Transform + pos: 60.5,-47.5 + parent: 2 + - uid: 20065 + components: + - type: Transform + pos: 59.5,-49.5 + parent: 2 + - uid: 20066 + components: + - type: Transform + pos: 58.5,-49.5 + parent: 2 + - uid: 20067 + components: + - type: Transform + pos: 57.5,-49.5 + parent: 2 + - uid: 20068 + components: + - type: Transform + pos: 56.5,-49.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + pos: 55.5,-49.5 + parent: 2 + - uid: 20070 + components: + - type: Transform + pos: 54.5,-49.5 + parent: 2 + - uid: 20071 + components: + - type: Transform + pos: 53.5,-49.5 + parent: 2 + - uid: 20072 + components: + - type: Transform + pos: 52.5,-49.5 + parent: 2 + - uid: 20073 + components: + - type: Transform + pos: 51.5,-49.5 + parent: 2 + - uid: 20074 + components: + - type: Transform + pos: 50.5,-49.5 + parent: 2 + - uid: 20075 + components: + - type: Transform + pos: 50.5,-48.5 + parent: 2 + - uid: 20076 + components: + - type: Transform + pos: 50.5,-51.5 + parent: 2 + - uid: 20077 + components: + - type: Transform + pos: 49.5,-51.5 + parent: 2 + - uid: 20078 + components: + - type: Transform + pos: 48.5,-51.5 + parent: 2 + - uid: 20079 + components: + - type: Transform + pos: 47.5,-51.5 + parent: 2 + - uid: 20080 + components: + - type: Transform + pos: 46.5,-51.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + pos: 44.5,-50.5 + parent: 2 + - uid: 20082 + components: + - type: Transform + pos: 44.5,-49.5 + parent: 2 + - uid: 20083 + components: + - type: Transform + pos: 44.5,-48.5 + parent: 2 + - uid: 20084 + components: + - type: Transform + pos: 44.5,-47.5 + parent: 2 + - uid: 20085 + components: + - type: Transform + pos: 48.5,-53.5 + parent: 2 + - uid: 20086 + components: + - type: Transform + pos: 48.5,-54.5 + parent: 2 + - uid: 20087 + components: + - type: Transform + pos: 48.5,-55.5 + parent: 2 + - uid: 20088 + components: + - type: Transform + pos: 48.5,-56.5 + parent: 2 + - uid: 20089 + components: + - type: Transform + pos: 48.5,-57.5 + parent: 2 + - uid: 20090 + components: + - type: Transform + pos: 50.5,-57.5 + parent: 2 + - uid: 20091 + components: + - type: Transform + pos: 50.5,-56.5 + parent: 2 + - uid: 20092 + components: + - type: Transform + pos: 50.5,-55.5 + parent: 2 + - uid: 20093 + components: + - type: Transform + pos: 50.5,-54.5 + parent: 2 + - uid: 20094 + components: + - type: Transform + pos: 50.5,-53.5 + parent: 2 + - uid: 20095 + components: + - type: Transform + pos: 49.5,-53.5 + parent: 2 + - uid: 20096 + components: + - type: Transform + pos: 52.5,-53.5 + parent: 2 + - uid: 20097 + components: + - type: Transform + pos: 52.5,-54.5 + parent: 2 + - uid: 20098 + components: + - type: Transform + pos: 52.5,-55.5 + parent: 2 + - uid: 20099 + components: + - type: Transform + pos: 52.5,-56.5 + parent: 2 + - uid: 20100 + components: + - type: Transform + pos: 52.5,-57.5 + parent: 2 + - uid: 20101 + components: + - type: Transform + pos: 53.5,-51.5 + parent: 2 + - uid: 20102 + components: + - type: Transform + pos: 53.5,-52.5 + parent: 2 + - uid: 20103 + components: + - type: Transform + pos: 53.5,-53.5 + parent: 2 + - uid: 20104 + components: + - type: Transform + pos: 54.5,-53.5 + parent: 2 + - uid: 20105 + components: + - type: Transform + pos: 54.5,-54.5 + parent: 2 + - uid: 20106 + components: + - type: Transform + pos: 54.5,-55.5 + parent: 2 + - uid: 20107 + components: + - type: Transform + pos: 54.5,-56.5 + parent: 2 + - uid: 20108 + components: + - type: Transform + pos: 54.5,-57.5 + parent: 2 + - uid: 20109 + components: + - type: Transform + pos: 56.5,-57.5 + parent: 2 + - uid: 20110 + components: + - type: Transform + pos: 56.5,-56.5 + parent: 2 + - uid: 20111 + components: + - type: Transform + pos: 56.5,-55.5 + parent: 2 + - uid: 20112 + components: + - type: Transform + pos: 56.5,-54.5 + parent: 2 + - uid: 20113 + components: + - type: Transform + pos: 56.5,-53.5 + parent: 2 + - uid: 20114 + components: + - type: Transform + pos: 58.5,-53.5 + parent: 2 + - uid: 20115 + components: + - type: Transform + pos: 58.5,-54.5 + parent: 2 + - uid: 20116 + components: + - type: Transform + pos: 58.5,-55.5 + parent: 2 + - uid: 20117 + components: + - type: Transform + pos: 58.5,-56.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + pos: 58.5,-57.5 + parent: 2 + - uid: 20119 + components: + - type: Transform + pos: 60.5,-57.5 + parent: 2 + - uid: 20120 + components: + - type: Transform + pos: 60.5,-56.5 + parent: 2 + - uid: 20121 + components: + - type: Transform + pos: 60.5,-55.5 + parent: 2 + - uid: 20122 + components: + - type: Transform + pos: 60.5,-54.5 + parent: 2 + - uid: 20123 + components: + - type: Transform + pos: 60.5,-53.5 + parent: 2 + - uid: 20124 + components: + - type: Transform + pos: 62.5,-53.5 + parent: 2 + - uid: 20125 + components: + - type: Transform + pos: 62.5,-54.5 + parent: 2 + - uid: 20126 + components: + - type: Transform + pos: 62.5,-55.5 + parent: 2 + - uid: 20127 + components: + - type: Transform + pos: 62.5,-56.5 + parent: 2 + - uid: 20128 + components: + - type: Transform + pos: 62.5,-57.5 + parent: 2 + - uid: 20129 + components: + - type: Transform + pos: 61.5,-53.5 + parent: 2 + - uid: 20130 + components: + - type: Transform + pos: 61.5,-52.5 + parent: 2 + - uid: 20131 + components: + - type: Transform + pos: 61.5,-51.5 + parent: 2 + - uid: 20132 + components: + - type: Transform + pos: 57.5,-52.5 + parent: 2 + - uid: 20133 + components: + - type: Transform + pos: 55.5,-51.5 + parent: 2 + - uid: 20134 + components: + - type: Transform + pos: 56.5,-51.5 + parent: 2 + - uid: 20135 + components: + - type: Transform + pos: 57.5,-51.5 + parent: 2 + - uid: 20136 + components: + - type: Transform + pos: 58.5,-51.5 + parent: 2 + - uid: 20138 + components: + - type: Transform + pos: 63.5,-51.5 + parent: 2 + - uid: 20139 + components: + - type: Transform + pos: 63.5,-50.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + pos: 62.5,-51.5 + parent: 2 + - uid: 20225 + components: + - type: Transform + pos: -61.5,-52.5 + parent: 2 + - uid: 20228 + components: + - type: Transform + pos: -61.5,-56.5 + parent: 2 + - uid: 20229 + components: + - type: Transform + pos: -62.5,-56.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + pos: -61.5,-55.5 + parent: 2 + - uid: 20234 + components: + - type: Transform + pos: -61.5,-54.5 + parent: 2 + - uid: 20235 + components: + - type: Transform + pos: -61.5,-53.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 20393 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 20394 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 20395 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 20396 + components: + - type: Transform + pos: 77.5,29.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + pos: 76.5,29.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + pos: 75.5,29.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + pos: 77.5,28.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + pos: 77.5,27.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + pos: 77.5,26.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + pos: 77.5,25.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + pos: 76.5,25.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + pos: 75.5,25.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + pos: 74.5,25.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + pos: 73.5,25.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + pos: 72.5,25.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + pos: 71.5,25.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + pos: 70.5,25.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + pos: 69.5,25.5 + parent: 2 + - uid: 20411 + components: + - type: Transform + pos: 68.5,25.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + pos: 67.5,25.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 + - uid: 20415 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + pos: 71.5,27.5 + parent: 2 + - uid: 20417 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + pos: 74.5,27.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + pos: 75.5,27.5 + parent: 2 + - uid: 20421 + components: + - type: Transform + pos: 76.5,27.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + pos: 67.5,26.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + pos: 67.5,27.5 + parent: 2 + - uid: 20424 + components: + - type: Transform + pos: 76.5,35.5 + parent: 2 + - uid: 20425 + components: + - type: Transform + pos: 76.5,34.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + pos: 76.5,33.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + pos: 76.5,32.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + pos: 76.5,31.5 + parent: 2 + - uid: 20429 + components: + - type: Transform + pos: 74.5,31.5 + parent: 2 + - uid: 20430 + components: + - type: Transform + pos: 74.5,32.5 + parent: 2 + - uid: 20431 + components: + - type: Transform + pos: 74.5,33.5 + parent: 2 + - uid: 20432 + components: + - type: Transform + pos: 74.5,34.5 + parent: 2 + - uid: 20433 + components: + - type: Transform + pos: 74.5,35.5 + parent: 2 + - uid: 20434 + components: + - type: Transform + pos: 75.5,31.5 + parent: 2 + - uid: 20435 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 20436 + components: + - type: Transform + pos: 72.5,32.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + pos: 72.5,33.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + pos: 72.5,34.5 + parent: 2 + - uid: 20439 + components: + - type: Transform + pos: 72.5,35.5 + parent: 2 + - uid: 20440 + components: + - type: Transform + pos: 70.5,35.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + pos: 70.5,34.5 + parent: 2 + - uid: 20442 + components: + - type: Transform + pos: 70.5,33.5 + parent: 2 + - uid: 20443 + components: + - type: Transform + pos: 70.5,32.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + pos: 70.5,31.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + pos: 71.5,30.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + pos: 71.5,29.5 + parent: 2 + - uid: 20447 + components: + - type: Transform + pos: 68.5,31.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + pos: 68.5,32.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + pos: 68.5,33.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + pos: 68.5,34.5 + parent: 2 + - uid: 20451 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - uid: 20452 + components: + - type: Transform + pos: 66.5,35.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + pos: 66.5,34.5 + parent: 2 + - uid: 20454 + components: + - type: Transform + pos: 66.5,33.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + pos: 66.5,32.5 + parent: 2 + - uid: 20456 + components: + - type: Transform + pos: 66.5,31.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + pos: 67.5,30.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + pos: 67.5,31.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 20461 + components: + - type: Transform + pos: 70.5,29.5 + parent: 2 + - uid: 20462 + components: + - type: Transform + pos: 64.5,31.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + pos: 64.5,32.5 + parent: 2 + - uid: 20464 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 + - uid: 20465 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 20466 + components: + - type: Transform + pos: 64.5,35.5 + parent: 2 + - uid: 20467 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + pos: 62.5,33.5 + parent: 2 + - uid: 20470 + components: + - type: Transform + pos: 62.5,32.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + pos: 62.5,31.5 + parent: 2 + - uid: 20472 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 20473 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 20474 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 20476 + components: + - type: Transform + pos: 60.5,35.5 + parent: 2 + - uid: 20477 + components: + - type: Transform + pos: 58.5,35.5 + parent: 2 + - uid: 20478 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 + - uid: 20479 + components: + - type: Transform + pos: 58.5,33.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + pos: 58.5,32.5 + parent: 2 + - uid: 20481 + components: + - type: Transform + pos: 58.5,31.5 + parent: 2 + - uid: 20482 + components: + - type: Transform + pos: 59.5,31.5 + parent: 2 + - uid: 20483 + components: + - type: Transform + pos: 59.5,30.5 + parent: 2 + - uid: 20484 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 21038 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 21002 + - uid: 21186 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 21002 + - uid: 22453 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 21002 + - uid: 22455 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 21002 + - uid: 22482 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 21002 + - uid: 22484 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 21002 + - uid: 22486 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 21002 + - uid: 22487 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 21002 + - uid: 22488 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 21002 + - uid: 22489 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 21002 + - uid: 22491 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 21002 + - uid: 22492 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 21002 + - uid: 22498 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 21002 + - uid: 22499 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 21002 + - uid: 22500 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 21002 + - uid: 22501 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 21002 + - uid: 22504 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 21002 + - uid: 22505 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 21002 + - uid: 22506 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 21002 + - uid: 22507 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 21002 + - uid: 22508 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 21002 + - uid: 22509 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 21002 + - uid: 22510 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 21002 + - uid: 22511 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 21002 + - uid: 22512 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 21002 + - uid: 22513 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 21002 + - uid: 22514 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 21002 + - uid: 22515 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 21002 + - uid: 22516 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 21002 + - uid: 22559 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 21002 + - uid: 22560 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 21002 + - uid: 22561 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 21002 + - uid: 22562 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 21002 + - uid: 22563 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 21002 + - uid: 22564 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 21002 + - uid: 22565 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 21002 + - uid: 22566 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 21002 + - uid: 22567 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 21002 + - uid: 22568 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 21002 + - uid: 22599 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 21002 + - uid: 22600 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 21002 + - uid: 22601 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 21002 + - uid: 22602 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 21002 + - uid: 22603 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 21002 + - uid: 22604 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 21002 + - uid: 22605 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 21002 + - uid: 22606 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 21002 + - uid: 22607 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 21002 + - uid: 22608 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 21002 + - uid: 22609 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 21002 + - uid: 22610 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 21002 + - uid: 22611 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 21002 + - uid: 22612 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 21002 + - uid: 22613 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 21002 + - uid: 22614 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 21002 + - uid: 22615 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 21002 + - uid: 22616 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 21002 + - uid: 22617 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 21002 + - uid: 22618 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 21002 + - uid: 22619 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 21002 + - uid: 22620 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 21002 + - uid: 22621 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 21002 + - uid: 22622 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 21002 + - uid: 22623 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 21002 + - uid: 22624 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 21002 + - uid: 22625 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 21002 + - uid: 22626 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 21002 + - uid: 22627 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 21002 + - uid: 22628 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 21002 + - uid: 22629 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 21002 + - uid: 22630 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 21002 + - uid: 22631 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 21002 + - uid: 22632 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 21002 + - uid: 22633 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 21002 + - uid: 22634 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 21002 + - uid: 22635 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 21002 + - uid: 22636 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 21002 + - uid: 22637 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 21002 + - uid: 22638 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 21002 + - uid: 22639 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 21002 + - uid: 22640 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 21002 + - uid: 22641 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 21002 + - uid: 22642 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 21002 + - uid: 22643 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 21002 + - uid: 22644 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 21002 + - uid: 22645 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 21002 + - uid: 22646 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 21002 + - uid: 22647 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 21002 + - uid: 22648 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 21002 + - uid: 22649 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 21002 + - uid: 22650 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 21002 + - uid: 22651 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 21002 + - uid: 22652 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 21002 + - uid: 22653 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 21002 + - uid: 22654 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 21002 + - uid: 22655 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 21002 + - uid: 22656 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 21002 + - uid: 22657 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 21002 + - uid: 22658 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 21002 + - uid: 22659 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 21002 + - uid: 22662 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 21002 + - uid: 22672 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 21002 + - uid: 22673 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 21002 + - uid: 22674 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 21002 + - uid: 22675 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 21002 + - uid: 22676 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 21002 + - uid: 22677 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 21002 + - uid: 22678 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 21002 + - uid: 22679 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 21002 + - uid: 22680 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 21002 + - uid: 22681 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 21002 + - uid: 22682 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 21002 + - uid: 22683 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 21002 + - uid: 22684 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 21002 + - uid: 22685 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 21002 + - uid: 22686 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 21002 + - uid: 22687 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 21002 + - uid: 22688 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 21002 + - uid: 22689 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 21002 + - uid: 22690 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 21002 + - uid: 22691 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 21002 + - uid: 22692 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 21002 + - uid: 22693 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 21002 + - uid: 22694 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 21002 + - uid: 22695 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 21002 + - uid: 22696 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 21002 + - uid: 22697 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 21002 + - uid: 22698 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 21002 + - uid: 22699 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 21002 + - uid: 22700 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 21002 + - uid: 22701 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 21002 + - uid: 22702 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 21002 + - uid: 22712 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 21002 + - uid: 22713 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 21002 + - uid: 22714 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 21002 + - uid: 22715 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 21002 + - uid: 23032 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 21002 + - uid: 23033 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 21002 + - uid: 23247 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 23249 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 + - uid: 23250 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 + - uid: 23251 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 23252 + components: + - type: Transform + pos: 63.5,30.5 + parent: 2 + - uid: 23253 + components: + - type: Transform + pos: 64.5,29.5 + parent: 2 + - uid: 23254 + components: + - type: Transform + pos: 65.5,29.5 + parent: 2 + - uid: 23255 + components: + - type: Transform + pos: 66.5,29.5 + parent: 2 + - uid: 23256 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 2 + - uid: 23257 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 2 + - uid: 23258 + components: + - type: Transform + pos: -53.5,-64.5 + parent: 2 + - uid: 23259 + components: + - type: Transform + pos: 50.5,-50.5 + parent: 2 + - uid: 23260 + components: + - type: Transform + pos: 45.5,-51.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + pos: 44.5,-51.5 + parent: 2 + - uid: 23604 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 23605 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - uid: 23711 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - uid: 23724 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 23725 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 23730 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 23731 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 23733 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 23734 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 + - uid: 23735 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 23736 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 23737 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 23738 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 23739 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 23740 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 23741 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 23742 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 23844 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 24258 + components: + - type: Transform + pos: 60.5,6.5 + parent: 2 + - uid: 24259 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 24260 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 24727 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 21002 + - uid: 24737 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 21002 + - uid: 24738 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 21002 + - uid: 24739 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 21002 + - uid: 24740 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 21002 + - uid: 24741 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 21002 + - uid: 24742 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 21002 + - uid: 24743 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 21002 + - uid: 24744 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 21002 + - uid: 24746 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 21002 +- proto: CableMV + entities: + - uid: 418 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 41.5,-28.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: 41.5,-23.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: 41.5,-19.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: 48.5,-19.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: 52.5,-18.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: 54.5,-19.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 48.5,-21.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: 43.5,-28.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: 43.5,-36.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: 46.5,-36.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: 47.5,-32.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: 54.5,-33.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: 55.5,-33.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: 56.5,-33.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: 57.5,-33.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: 58.5,-33.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: 59.5,-33.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: 60.5,-33.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: 60.5,-32.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: 52.5,-30.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: 59.5,-22.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: 60.5,-31.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: 59.5,-31.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: 59.5,-21.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: 60.5,-21.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: 60.5,-20.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: 43.5,-37.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: 52.5,-9.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 52.5,-11.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: 52.5,-12.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: 52.5,-14.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: -2.5,44.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: 18.5,26.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 5941 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 5958 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: 21.5,50.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 6.5,56.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: 5.5,55.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 13.5,51.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: 13.5,50.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: 13.5,49.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: 13.5,47.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: 13.5,46.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: 19.5,67.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: 21.5,54.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: 21.5,55.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: 21.5,56.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: 21.5,58.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: 7.5,67.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: 8.5,68.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: 7.5,68.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: 7.5,66.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: 21.5,63.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: 21.5,64.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: 21.5,65.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: 21.5,66.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: 21.5,67.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: 21.5,68.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: 21.5,69.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: 21.5,70.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: 20.5,70.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 19.5,70.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 18.5,70.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: 17.5,70.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: 16.5,70.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: 15.5,70.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: 14.5,70.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: 13.5,70.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: 12.5,70.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: 11.5,70.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: 10.5,70.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: 9.5,70.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: 8.5,70.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: 7.5,70.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: 6.5,70.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: 5.5,70.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: 5.5,69.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: 5.5,68.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: 5.5,67.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: 5.5,66.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: 5.5,65.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: 5.5,64.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: 5.5,63.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: 5.5,62.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: 5.5,61.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: 5.5,60.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: 5.5,59.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: 5.5,58.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: 28.5,61.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 7.5,58.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 7.5,57.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 7.5,56.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: 8.5,56.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: 9.5,56.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: 10.5,56.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: 30.5,61.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: 12.5,56.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: 13.5,56.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: 14.5,56.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: 15.5,56.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: 16.5,56.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: 17.5,56.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + pos: 18.5,56.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: 23.5,61.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: 19.5,58.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: 19.5,59.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: 27.5,61.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: 9.5,68.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: 10.5,68.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: 11.5,68.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: 12.5,68.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: 13.5,68.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: 14.5,68.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: 24.5,61.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: 16.5,68.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: 17.5,68.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: 18.5,68.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: 19.5,68.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: 19.5,66.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: 19.5,65.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: 19.5,64.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: 25.5,61.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: 19.5,62.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: 19.5,61.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: 31.5,61.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: 7.5,65.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 7.5,63.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 13.5,69.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 7.5,59.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 7.5,60.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 7.5,61.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 7.5,62.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: 14.5,45.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 15.5,45.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: 16.5,45.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: 17.5,45.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 18.5,45.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: 45.5,49.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: 32.5,61.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + pos: 33.5,61.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: 34.5,61.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: 35.5,61.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: 38.5,61.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: 39.5,61.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: 40.5,61.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: 40.5,60.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: 41.5,60.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 41.5,59.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: 42.5,59.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: 42.5,58.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 45.5,56.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 43.5,58.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: 43.5,57.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: 44.5,57.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: 45.5,55.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: 46.5,55.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: 46.5,54.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: 46.5,52.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: 46.5,49.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: 44.5,49.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: 43.5,49.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: 41.5,49.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: 38.5,49.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: 36.5,49.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: 35.5,49.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: 34.5,49.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: 20.5,50.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: 20.5,49.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 20.5,48.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: 20.5,47.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 20.5,46.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: 34.5,45.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: 34.5,47.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 12.5,48.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 11.5,49.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: 10.5,49.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + pos: -23.5,33.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + pos: -24.5,33.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + pos: -25.5,33.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + pos: -27.5,33.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + pos: -28.5,33.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: -29.5,33.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -30.5,33.5 + parent: 2 + - uid: 9028 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 9031 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 9035 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 9038 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 9039 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 9040 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 9241 + components: + - type: Transform + pos: -20.5,35.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - uid: 9243 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 9244 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 9245 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 9247 + components: + - type: Transform + pos: -17.5,38.5 + parent: 2 + - uid: 9248 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: -17.5,40.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: -17.5,41.5 + parent: 2 + - uid: 9251 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 9252 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 9254 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 9258 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 9259 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 10047 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 10481 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 10500 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 10501 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - uid: 10503 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - uid: 10504 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 2 + - uid: 10505 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 10506 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 10507 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 10508 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - uid: 10509 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 10510 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 10511 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 10512 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 10515 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 10517 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 10977 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 10978 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 10979 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 10980 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 10981 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 10982 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: -52.5,-27.5 + parent: 2 + - uid: 11670 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 + - uid: 11672 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 2 + - uid: 11680 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 + - uid: 11687 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 11688 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 11695 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 11697 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: -52.5,-12.5 + parent: 2 + - uid: 11699 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 11701 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 11702 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 11703 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 11704 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 11720 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + pos: -49.5,-19.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + pos: -49.5,-21.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: -49.5,-22.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + pos: -47.5,-29.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + pos: -53.5,-31.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + pos: 58.5,9.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + pos: 60.5,9.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + pos: 58.5,-5.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + pos: 60.5,0.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + pos: 60.5,-1.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 + - uid: 15515 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + pos: 60.5,4.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: 59.5,4.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: 57.5,4.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: 12.5,45.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: 11.5,45.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + pos: 10.5,45.5 + parent: 2 + - uid: 17917 + components: + - type: Transform + pos: 9.5,45.5 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: 8.5,45.5 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: 7.5,45.5 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 + - uid: 17921 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: 7.5,42.5 + parent: 2 + - uid: 17923 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - uid: 17926 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + pos: 7.5,32.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 17934 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 17948 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 17949 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 17950 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - uid: 17952 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 17955 + components: + - type: Transform + pos: -10.5,34.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 17979 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 17980 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 17983 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 17984 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 17985 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 17988 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 18091 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 18092 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 18093 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - uid: 18094 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 18095 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 18096 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 18097 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 2 + - uid: 18098 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 18099 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 18100 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 18101 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 18102 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 18103 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 18104 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 18105 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 18106 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 18108 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 18109 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 18110 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 18111 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 18112 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 18113 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 18115 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 18116 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 18117 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 18119 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 18120 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 18121 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 18122 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 18123 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 18124 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 18125 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 18126 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 18127 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 18128 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 18140 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 18141 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 18142 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 18143 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 18144 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 18145 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 18146 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 18147 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 18148 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 18149 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 18150 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 18151 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 18152 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 18153 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 18154 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 18155 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - uid: 18156 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 18157 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 18158 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 18159 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - uid: 18160 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 18161 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 18162 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - uid: 18163 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 18164 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 2 + - uid: 18168 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 18169 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 18170 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 18171 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 18172 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 18173 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 18174 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 18175 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 18176 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 18177 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 18178 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 18179 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 18180 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 18181 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 18182 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 18183 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 18184 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 18185 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 18186 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 18187 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 18188 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 18189 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 18190 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 18191 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 18192 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 18193 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 18194 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 18195 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 18196 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 18197 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 18198 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 18199 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 18200 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 18201 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 18202 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 18203 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 18204 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 18205 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 18206 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 18207 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 18208 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 18209 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 18210 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 18211 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 18212 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 18214 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 18216 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 22780 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 21002 + - uid: 22786 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 21002 + - uid: 22787 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 21002 + - uid: 22788 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 21002 + - uid: 23346 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 23568 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 23569 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 23712 + components: + - type: Transform + pos: -16.5,41.5 + parent: 2 + - uid: 23713 + components: + - type: Transform + pos: -15.5,41.5 + parent: 2 + - uid: 23714 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 23715 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 23716 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 23717 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 + - uid: 23718 + components: + - type: Transform + pos: -10.5,41.5 + parent: 2 + - uid: 23719 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 23720 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 23721 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 23722 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - uid: 23723 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 23727 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 23728 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 23729 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 23732 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 24170 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 24171 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 24172 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 24173 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 24174 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 24175 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 24176 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 24177 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 24178 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 24179 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 24180 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 24261 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 24262 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 24263 + components: + - type: Transform + pos: 60.5,6.5 + parent: 2 + - uid: 24264 + components: + - type: Transform + pos: 60.5,5.5 + parent: 2 + - uid: 24265 + components: + - type: Transform + pos: 60.5,4.5 + parent: 2 + - uid: 24266 + components: + - type: Transform + pos: 60.5,3.5 + parent: 2 + - uid: 24267 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - uid: 24268 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 24749 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 21002 + - uid: 24750 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 21002 + - uid: 24751 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 21002 + - uid: 24752 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 21002 + - uid: 24754 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 21002 + - uid: 24755 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 21002 + - uid: 24756 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 21002 + - uid: 24757 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 21002 + - uid: 24758 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 21002 + - uid: 24759 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 21002 + - uid: 24760 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 21002 + - uid: 24761 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 21002 + - uid: 24762 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 21002 + - uid: 24763 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 21002 + - uid: 24764 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 21002 + - uid: 24765 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 21002 + - uid: 24766 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 21002 + - uid: 24767 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 21002 + - uid: 24768 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 21002 + - uid: 24770 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 21002 +- proto: CableTerminal + entities: + - uid: 6405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,37.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,37.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,37.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,44.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 14.5,43.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,44.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,44.5 + parent: 2 + - uid: 19549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-53.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 22495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 21002 + - uid: 22496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 21002 + - uid: 22497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 21002 + - uid: 24745 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 21002 +- proto: CandleBlack + entities: + - uid: 971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.419983,-6.45426 + parent: 2 + - uid: 972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.419983,-6.45426 + parent: 2 + - uid: 973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.482483,-8.501135 + parent: 2 + - uid: 974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.779358,-8.14176 + parent: 2 + - uid: 975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.794983,-6.719885 + parent: 2 + - uid: 976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.794983,-6.719885 + parent: 2 + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.853247,-6.282385 + parent: 2 + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.853247,-6.719885 + parent: 2 + - uid: 979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.853247,-7.219885 + parent: 2 + - uid: 980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.868872,-8.844885 + parent: 2 + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.853247,-8.32926 + parent: 2 + - uid: 982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.853247,-7.876135 + parent: 2 +- proto: CandleBlue + entities: + - uid: 23366 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 13.691639,14.214562 + parent: 2 + - uid: 23367 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 14.254139,14.047895 + parent: 2 +- proto: CandleRedInfinite + entities: + - uid: 983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.431372,-7.501135 + parent: 2 +- proto: CandleRedSmallInfinite + entities: + - uid: 19153 + components: + - type: Transform + pos: 42.97604,42.56063 + parent: 2 + - uid: 19154 + components: + - type: Transform + pos: 44.01076,42.56063 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 22742 + components: + - type: Transform + pos: 18.300858,6.4766846 + parent: 21002 +- proto: CannedApplauseInstrument + entities: + - uid: 24195 + components: + - type: Transform + parent: 2258 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CannonBallGlassshot + entities: + - uid: 23237 + components: + - type: MetaData + name: cracked crystal ball + - type: Transform + pos: -56.49786,7.5886436 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 23591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.7441,-49.319046 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 2741 + components: + - type: Transform + pos: 24.370218,14.675703 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 8865 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 27122 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 21002 +- proto: CargoBountyComputerCircuitboard + entities: + - uid: 23275 + components: + - type: Transform + pos: -48.60224,7.6590858 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 2 + - uid: 788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-14.5 + parent: 2 + - uid: 790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 2 + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 2 + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 2 + - uid: 952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - uid: 956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - uid: 963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 12161 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 12162 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 2676 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 2 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - uid: 779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 2 + - uid: 780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 2 + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 2 + - uid: 914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-19.5 + parent: 2 + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 2 + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 2 + - uid: 965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-8.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + - uid: 18165 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-41.5 + parent: 2 + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 2 + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 2 + - uid: 866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 2 + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 2 + - uid: 870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 2 + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 + - uid: 910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 2 + - uid: 917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-39.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-40.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-39.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-39.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-40.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-40.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-40.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-42.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-43.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-41.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-43.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-42.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-41.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: -12.5,32.5 + parent: 2 + - uid: 11913 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: -7.5,-57.5 + parent: 2 + - uid: 11915 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 11919 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 2 + - uid: 11922 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - uid: 11931 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 11933 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 2748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,14.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,13.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,12.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,13.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,14.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,13.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,13.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: 4.5,44.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,31.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,30.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,29.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,28.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,31.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,30.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,29.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,28.5 + parent: 2 + - uid: 11270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,11.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,10.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,10.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,11.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,10.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,11.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,9.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,9.5 + parent: 2 + - uid: 15040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,9.5 + parent: 2 + - uid: 28323 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 28324 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-8.5 + parent: 2 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 2 + - uid: 959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 12151 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 12152 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 12153 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 12154 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 12156 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 9881 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 12145 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 12146 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 12147 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 12148 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 2 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 2 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 2 + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 2 + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 +- proto: CarrotSeeds + entities: + - uid: 22759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.3259735,9.796604 + parent: 21002 + - uid: 22760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.2322235,9.437229 + parent: 21002 +- proto: Catwalk + entities: + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + - uid: 740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,9.5 + parent: 2 + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,10.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,28.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,42.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-5.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,28.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,28.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,37.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,37.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,37.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,39.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,39.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,38.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,37.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,39.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,37.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,52.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,52.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,52.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,51.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,50.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,49.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,49.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,50.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,51.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,49.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,43.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,43.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,43.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,41.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,41.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,41.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,32.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,31.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,30.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,29.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,28.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,27.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,26.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,25.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,24.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,23.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,22.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,21.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,20.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,19.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,18.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,17.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,16.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,15.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,14.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,12.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,11.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,10.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,12.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,13.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,14.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,33.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,34.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,34.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,33.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,31.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,30.5 + parent: 2 + - uid: 8781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,29.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,28.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,27.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,26.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,25.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,24.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,23.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,34.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,33.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,32.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,31.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,30.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,29.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,28.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,27.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,26.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,25.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,24.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,23.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,34.5 + parent: 2 + - uid: 8801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,33.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,32.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,31.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,29.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,28.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,27.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,26.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,25.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,24.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,34.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,35.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,35.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,31.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,30.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,29.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,28.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,27.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,26.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,25.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,24.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,23.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,22.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,21.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,22.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,21.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,20.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,19.5 + parent: 2 + - uid: 8830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,18.5 + parent: 2 + - uid: 8831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,17.5 + parent: 2 + - uid: 8832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,16.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,15.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,14.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,36.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,37.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,35.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,36.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,37.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,35.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,36.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,37.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,15.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,17.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,18.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,20.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,21.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,22.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,23.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,25.5 + parent: 2 + - uid: 9003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,26.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,27.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,28.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,29.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,30.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,31.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,32.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,32.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-31.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-30.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-29.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-53.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-27.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-26.5 + parent: 2 + - uid: 12487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-25.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-24.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-20.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-19.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-17.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-16.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-20.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-53.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-28.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-28.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-53.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-53.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-53.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-53.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-53.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-53.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-53.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-53.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-53.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-53.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-53.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-53.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-53.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-53.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-53.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-53.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-53.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-53.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-53.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-53.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-53.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-53.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-53.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-53.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-53.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-56.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-56.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-56.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-56.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-49.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-49.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-49.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-49.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-49.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-49.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-46.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-46.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-46.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-42.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-41.5 + parent: 2 + - uid: 12550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 2 + - uid: 12552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-44.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-44.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-44.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-44.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-44.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-44.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-44.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-44.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-44.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-44.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-44.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-43.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-43.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-43.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-43.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-43.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-32.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-32.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-32.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-32.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-32.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-32.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-32.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-32.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-33.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-33.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-33.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-33.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,5.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,7.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - uid: 12591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,11.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,12.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,13.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,14.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,15.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,16.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,18.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,19.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,20.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,22.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,29.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,31.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,35.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,35.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,28.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,28.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,28.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,28.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,26.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,25.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,25.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,25.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,25.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,22.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,23.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,26.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,26.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,26.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,24.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,25.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,25.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,25.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,25.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,25.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,25.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,25.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,25.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,25.5 + parent: 2 + - uid: 12663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,25.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,22.5 + parent: 2 + - uid: 12666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,21.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,19.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,13.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,10.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,9.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,7.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,24.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,25.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,26.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,27.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,28.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,29.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,30.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,0.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-0.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,6.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-5.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-1.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-7.5 + parent: 2 + - uid: 16575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-3.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-5.5 + parent: 2 + - uid: 17430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,43.5 + parent: 2 + - uid: 18311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,7.5 + parent: 2 + - uid: 18312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,6.5 + parent: 2 + - uid: 18313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,7.5 + parent: 2 + - uid: 18314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,6.5 + parent: 2 + - uid: 18315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - uid: 18316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,6.5 + parent: 2 + - uid: 18445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,4.5 + parent: 2 + - uid: 18446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,4.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,4.5 + parent: 2 + - uid: 18448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,2.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,2.5 + parent: 2 + - uid: 18450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,2.5 + parent: 2 + - uid: 18506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,54.5 + parent: 2 + - uid: 18507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,53.5 + parent: 2 + - uid: 18508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,52.5 + parent: 2 + - uid: 18509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,53.5 + parent: 2 + - uid: 18510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,54.5 + parent: 2 + - uid: 18511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,54.5 + parent: 2 + - uid: 18512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,53.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,52.5 + parent: 2 + - uid: 18514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,56.5 + parent: 2 + - uid: 18515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,55.5 + parent: 2 + - uid: 18516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,54.5 + parent: 2 + - uid: 18517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,53.5 + parent: 2 + - uid: 18555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,49.5 + parent: 2 + - uid: 18556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,49.5 + parent: 2 + - uid: 18557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,49.5 + parent: 2 + - uid: 18588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-19.5 + parent: 2 + - uid: 18589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-19.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-17.5 + parent: 2 + - uid: 18591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 2 + - uid: 18709 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 18710 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 18711 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 18712 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 18713 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 18720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-50.5 + parent: 2 + - uid: 18721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-49.5 + parent: 2 + - uid: 18722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-48.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-49.5 + parent: 2 + - uid: 18725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-48.5 + parent: 2 + - uid: 18726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-46.5 + parent: 2 + - uid: 18727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-45.5 + parent: 2 + - uid: 18728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-44.5 + parent: 2 + - uid: 18729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-43.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-42.5 + parent: 2 + - uid: 18731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-41.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-40.5 + parent: 2 + - uid: 18733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-16.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 + parent: 2 + - uid: 18735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 + - uid: 18742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,8.5 + parent: 2 + - uid: 18743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,8.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,8.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,7.5 + parent: 2 + - uid: 18748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,7.5 + parent: 2 + - uid: 18749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,7.5 + parent: 2 + - uid: 18750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 18751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 2 + - uid: 18752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 2 + - uid: 18753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 18756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 2 + - uid: 18757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-11.5 + parent: 2 + - uid: 18758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 2 + - uid: 18759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 18760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-14.5 + parent: 2 + - uid: 18761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 2 + - uid: 18763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 18764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 2 + - uid: 18765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-19.5 + parent: 2 + - uid: 18766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2 + - uid: 18767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 2 + - uid: 18768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 2 + - uid: 18769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 2 + - uid: 18770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 2 + - uid: 18771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 18772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 + - uid: 18773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + - uid: 18774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 + - uid: 18775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 + - uid: 18776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2 + - uid: 18777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - uid: 18778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 18779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 18780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 2 + - uid: 18781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 2 + - uid: 18782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 2 + - uid: 18783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 18784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - uid: 18785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 18786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 18787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 18788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-21.5 + parent: 2 + - uid: 18789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 2 + - uid: 18790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 2 + - uid: 18791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 2 + - uid: 18792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 2 + - uid: 18793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 2 + - uid: 18794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 2 + - uid: 18795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 2 + - uid: 18796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 2 + - uid: 18797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 2 + - uid: 18798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 2 + - uid: 18799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 2 + - uid: 18800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 2 + - uid: 18801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 2 + - uid: 18802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 2 + - uid: 18803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - uid: 18804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 2 + - uid: 18805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 2 + - uid: 18806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 2 + - uid: 18807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 2 + - uid: 18808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 2 + - uid: 18809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 2 + - uid: 18810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 2 + - uid: 18811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 18812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 + - uid: 18813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 2 + - uid: 18814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 2 + - uid: 18815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - uid: 18816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 2 + - uid: 18817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 2 + - uid: 18818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 2 + - uid: 18819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + - uid: 18820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + - uid: 18821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 + - uid: 18823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + - uid: 18824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 2 + - uid: 18826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 2 + - uid: 18827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 2 + - uid: 18828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 2 + - uid: 18829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - uid: 18830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 2 + - uid: 18831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 2 + - uid: 18832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 2 + - uid: 18833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 2 + - uid: 18834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 2 + - uid: 18835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 2 + - uid: 18836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 2 + - uid: 18837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 2 + - uid: 18839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 2 + - uid: 18840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 2 + - uid: 18841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - uid: 18842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 18843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - uid: 18844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 18845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-20.5 + parent: 2 + - uid: 18846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 2 + - uid: 18847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 2 + - uid: 18848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - uid: 18849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 2 + - uid: 18851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 18852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-4.5 + parent: 2 + - uid: 18855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 2 + - uid: 18856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 2 + - uid: 18858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-3.5 + parent: 2 + - uid: 18881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-3.5 + parent: 2 + - uid: 18889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-21.5 + parent: 2 + - uid: 18891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-20.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 2 + - uid: 18942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - uid: 18943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-10.5 + parent: 2 + - uid: 18944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 2 + - uid: 18945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 18946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 + - uid: 18947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 18948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + - uid: 18949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-16.5 + parent: 2 + - uid: 18950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-17.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + - uid: 18952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - uid: 18953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 2 + - uid: 18954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 2 + - uid: 18955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 18956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-23.5 + parent: 2 + - uid: 18957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 2 + - uid: 18958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-25.5 + parent: 2 + - uid: 18959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-26.5 + parent: 2 + - uid: 18960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-25.5 + parent: 2 + - uid: 18961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-24.5 + parent: 2 + - uid: 18962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-26.5 + parent: 2 + - uid: 18981 + components: + - type: Transform + pos: 35.5,45.5 + parent: 2 + - uid: 18982 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: 34.5,45.5 + parent: 2 + - uid: 18984 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 19640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-50.5 + parent: 2 + - uid: 19641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-49.5 + parent: 2 + - uid: 19642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-55.5 + parent: 2 + - uid: 19975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-48.5 + parent: 2 + - uid: 23469 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - uid: 23470 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 23471 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 23472 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 23473 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 23474 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 23475 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 23476 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 23477 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 23607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,41.5 + parent: 2 + - uid: 23652 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 23653 + components: + - type: Transform + pos: -2.5,45.5 + parent: 2 + - uid: 23654 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 23655 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - uid: 24549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-44.5 + parent: 21002 + - uid: 25255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 21002 + - uid: 25256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 21002 + - uid: 25257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 21002 + - uid: 25258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-44.5 + parent: 21002 + - uid: 25259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-44.5 + parent: 21002 + - uid: 25260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-43.5 + parent: 21002 + - uid: 25261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 21002 + - uid: 25262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 21002 + - uid: 25263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,66.5 + parent: 21002 + - uid: 25264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,-5.5 + parent: 21002 + - uid: 25265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,-4.5 + parent: 21002 + - uid: 25266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,-3.5 + parent: 21002 + - uid: 25267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,-4.5 + parent: 21002 + - uid: 25268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,26.5 + parent: 21002 + - uid: 25269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,27.5 + parent: 21002 + - uid: 25270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,28.5 + parent: 21002 + - uid: 25271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,27.5 + parent: 21002 + - uid: 25272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,66.5 + parent: 21002 + - uid: 25273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,66.5 + parent: 21002 + - uid: 25274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,65.5 + parent: 21002 + - uid: 25276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 21002 + - uid: 25277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 21002 + - uid: 25278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,27.5 + parent: 21002 + - uid: 25279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,26.5 + parent: 21002 +- proto: Chair + entities: + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 2 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 2 + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 2 + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-46.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-47.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-46.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: -29.5,32.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: -28.5,32.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,29.5 + parent: 2 + - uid: 8882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,29.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-31.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,7.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,7.5 + parent: 2 + - uid: 11826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,3.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 + - uid: 11829 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,0.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 2 + - uid: 15043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,7.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-1.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 2 + - uid: 18032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-1.5 + parent: 2 + - uid: 18087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 + - uid: 18706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-21.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-21.5 + parent: 2 + - uid: 18708 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 18718 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 2 + - uid: 18872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 + - uid: 18873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 2 + - uid: 19047 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 19209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,0.5 + parent: 2 + - uid: 22752 + components: + - type: Transform + pos: 9.5,8.5 + parent: 21002 + - uid: 22754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 21002 + - uid: 23417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,2.5 + parent: 2 + - uid: 23418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 2 + - uid: 26296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-33.5 + parent: 21002 + - uid: 27970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 21002 +- proto: ChairFolding + entities: + - uid: 4295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 2 + - uid: 10003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-47.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + pos: -49.5,-33.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-35.5 + parent: 2 + - uid: 26140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 21002 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 12425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.49799,-40.263424 + parent: 2 + - uid: 21425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.364456,-34.098747 + parent: 21002 + - uid: 21430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.434769,-34.426872 + parent: 21002 +- proto: ChairGreyscale + entities: + - uid: 1357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-39.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-39.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-39.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-39.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-46.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-50.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-49.5 + parent: 2 + - uid: 23407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-43.5 + parent: 2 + - uid: 23408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-43.5 + parent: 2 + - uid: 23409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-43.5 + parent: 2 + - uid: 23410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-43.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 1107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-38.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-38.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-34.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,8.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,7.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-10.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-15.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,20.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-39.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,42.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-26.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,18.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,18.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,12.5 + parent: 2 + - uid: 19666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-53.5 + parent: 2 + - uid: 23664 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - uid: 28312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-44.5 + parent: 21002 + - uid: 28313 + components: + - type: Transform + pos: -6.5,16.5 + parent: 21002 + - uid: 28360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 1247 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,4.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-36.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-49.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-50.5 + parent: 2 + - uid: 19292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 28361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-16.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 483 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-19.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 2 + - uid: 961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 2 + - uid: 966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 2 + - uid: 969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-39.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-28.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-7.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,37.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,37.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,39.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,38.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,36.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,27.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,27.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,28.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,29.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-16.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-39.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-40.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-40.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-40.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-39.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + pos: -54.5,-37.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-38.5 + parent: 2 + - uid: 19169 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 23851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-57.5 + parent: 2 + - uid: 23857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-57.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 23860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-60.5 + parent: 2 + - uid: 24168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,17.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 24161 + components: + - type: Transform + pos: -37.014343,-64.43346 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 2738 + components: + - type: Transform + pos: 39.479088,15.666133 + parent: 2 +- proto: chem_master + entities: + - uid: 1656 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 1635 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 +- proto: ChemDispenserEmpty + entities: + - uid: 9907 + components: + - type: MetaData + name: Dr Dorf's Dispensary + - type: Transform + pos: -20.5,-29.5 + parent: 2 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 2125 + components: + - type: Transform + pos: -37.389343,-64.54804 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: -19.325394,-47.313946 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 1653 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 2246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.504517,-42.41375 + parent: 2 + - uid: 23002 + components: + - type: Transform + pos: 8.510742,6.5480137 + parent: 21002 + - uid: 23861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.4977665,-59.404213 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 1063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 2 +- proto: Cigar + entities: + - uid: 4808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.026787,-40.439896 + parent: 2 + - uid: 4809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.19866,-40.377396 + parent: 2 + - uid: 11972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.6389174,-82.314095 + parent: 2 + - uid: 11973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.4930844,-82.376595 + parent: 2 + - uid: 23248 + components: + - type: Transform + pos: -54.0773,9.794919 + parent: 2 +- proto: CigarGold + entities: + - uid: 2705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.268593,16.606705 + parent: 2 + - uid: 23246 + components: + - type: Transform + pos: -53.98355,9.742835 + parent: 2 + - uid: 23358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.362343,16.481705 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 2691 + components: + - type: Transform + pos: 29.384224,21.543312 + parent: 2 + - uid: 11465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.538147,-11.384542 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 9961 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 3072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 4183 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 7795 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 3478 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: 31.5,53.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + pos: 51.5,26.5 + parent: 2 + - uid: 18917 + components: + - type: Transform + pos: -47.5,-43.5 + parent: 2 + - uid: 18964 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 2 + - uid: 18970 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 18971 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 19012 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 19013 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 19014 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 19016 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + pos: -42.5,-50.5 + parent: 2 + - uid: 19097 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 + - uid: 19104 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 19993 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 2 + - uid: 23044 + components: + - type: Transform + pos: 1.5,4.5 + parent: 21002 + - uid: 23045 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 21002 + - uid: 23046 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 21002 + - uid: 23278 + components: + - type: Transform + pos: 4.5,49.5 + parent: 2 + - uid: 23748 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 24245 + components: + - type: Transform + pos: 53.5,5.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 18065 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 18978 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 28419 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 28420 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 28421 + components: + - type: Transform + pos: -43.5,-54.5 + parent: 2 + - uid: 28422 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 3477 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: 38.5,48.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 18965 + components: + - type: Transform + pos: -14.5,-55.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 18967 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 18968 + components: + - type: Transform + pos: -48.5,-38.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 18972 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 19015 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 19017 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 19098 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 19105 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 23279 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 23749 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 3055 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14697 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3075 + - 3060 + - 3059 + - 3076 + - 3077 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3JanitorFilled + entities: + - uid: 3078 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 7630 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 1435 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 23850 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 +- proto: ClosetLegalFilled + entities: + - uid: 5861 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 3705 + components: + - type: Transform + pos: 60.5,-14.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 38.5,45.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: 38.5,46.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: 39.5,48.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 18255 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 2 + - uid: 18910 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 18911 + components: + - type: Transform + pos: -45.5,-16.5 + parent: 2 + - uid: 18912 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 18913 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 18914 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 18915 + components: + - type: Transform + pos: -8.5,24.5 + parent: 2 + - uid: 18916 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 18918 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 18920 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 18924 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 18974 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 18975 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 18977 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 18980 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 + - uid: 19005 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 19006 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 19009 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 19011 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 19018 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 19025 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + pos: -44.5,-47.5 + parent: 2 + - uid: 19095 + components: + - type: Transform + pos: 39.5,-45.5 + parent: 2 + - uid: 19096 + components: + - type: Transform + pos: 20.5,-45.5 + parent: 2 + - uid: 19099 + components: + - type: Transform + pos: 45.5,-41.5 + parent: 2 + - uid: 19100 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - uid: 19101 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 2 + - uid: 19102 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 19103 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 19157 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 19158 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: 26.5,17.5 + parent: 21002 + - 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 + - uid: 22206 + components: + - type: Transform + pos: 67.5,30.5 + parent: 21002 + - uid: 23747 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 25556 + components: + - type: Transform + pos: 66.5,22.5 + parent: 21002 + - uid: 25559 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 21002 + - uid: 25571 + components: + - type: Transform + pos: 58.5,2.5 + parent: 21002 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 9793 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 23277 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - uid: 23280 + components: + - type: Transform + pos: 28.5,48.5 + parent: 2 + - uid: 23609 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 23849 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 6775 + components: + - type: Transform + pos: 29.5,40.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: 36.5,50.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 9503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,54.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,54.5 + parent: 2 +- proto: ClothingBeltMercWebbing + entities: + - uid: 21681 + components: + - type: Transform + parent: 21678 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltStorageWaistbag + entities: + - uid: 26598 + components: + - type: Transform + pos: 25.626999,0.45329475 + parent: 21002 + - uid: 26608 + components: + - type: Transform + pos: 25.408249,0.70329475 + parent: 21002 + - uid: 26609 + components: + - type: Transform + pos: 25.814499,0.70329475 + parent: 21002 +- proto: ClothingBeltSuspenders + entities: + - uid: 6251 + components: + - type: Transform + pos: 4.488698,38.66895 + parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 5182 + components: + - type: Transform + pos: 4.901609,38.607857 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 23489 + components: + - type: Transform + pos: 7.500063,45.5515 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 2080 + components: + - type: Transform + pos: -30.501125,-39.39706 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -36.54477,-33.776676 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -24.582605,-35.71431 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -13.487017,-38.76553 + parent: 2 + - uid: 2100 + components: + - type: Transform + parent: 2095 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24208 + components: + - type: Transform + pos: -28.778408,-25.133028 + parent: 2 + - uid: 24209 + components: + - type: Transform + pos: 13.4690895,-35.817883 + parent: 2 + - uid: 24210 + components: + - type: Transform + pos: 11.028594,-41.571526 + parent: 2 +- proto: ClothingEyesGlassesJensen + entities: + - uid: 11964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.287879,-82.42868 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 19043 + components: + - type: Transform + pos: 23.686314,-51.311104 + parent: 2 + - uid: 27825 + components: + - type: Transform + pos: -5.4891663,15.507482 + parent: 21002 +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 24233 + components: + - type: Transform + pos: -52.507572,-3.3756137 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 6656 + components: + - type: Transform + pos: 3.513458,43.96186 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 23694 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: -6.49784,47.632603 + parent: 2 +- proto: ClothingHandsGlovesFingerlessInsulated + entities: + - uid: 23490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.3246129,32.762764 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 1906 + components: + - type: Transform + pos: -27.44399,-38.446262 + parent: 2 + - uid: 10288 + components: + - type: Transform + pos: -11.381896,-50.376205 + parent: 2 +- proto: ClothingHeadBandMerc + entities: + - uid: 21680 + components: + - type: Transform + parent: 21678 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 19173 + components: + - type: Transform + pos: -31.40513,-49.507557 + parent: 2 +- proto: ClothingHeadHatBrownFlatcap + entities: + - uid: 2101 + components: + - type: Transform + parent: 2095 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4034 + components: + - type: Transform + pos: 39.46821,23.387167 + parent: 2 + - uid: 23743 + components: + - type: Transform + pos: 14.812786,29.391323 + parent: 2 +- proto: ClothingHeadHatChickenhead + entities: + - uid: 21139 + components: + - type: Transform + pos: -23.570253,21.892609 + parent: 2 +- proto: ClothingHeadHatCowboyBountyHunter + entities: + - uid: 4019 + components: + - type: Transform + pos: 39.739044,23.710085 + parent: 2 +- proto: ClothingHeadHatCowboyBrown + entities: + - uid: 4030 + components: + - type: Transform + pos: 39.332794,23.730917 + parent: 2 +- proto: ClothingHeadHatCowboyGrey + entities: + - uid: 2291 + components: + - type: Transform + pos: 40.36555,-29.311775 + parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 19172 + components: + - type: Transform + pos: -31.34263,-50.09089 + parent: 2 +- proto: ClothingHeadHatFez + entities: + - uid: 3133 + components: + - type: Transform + pos: -62.443424,-46.61293 + parent: 2 + - uid: 8959 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8961 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8963 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8965 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 13516 + components: + - type: Transform + pos: 31.536547,31.058239 + parent: 2 +- proto: ClothingHeadHatHoodNunHood + entities: + - uid: 8684 + components: + - type: Transform + pos: 19.562342,-6.1567516 + parent: 2 + - uid: 10965 + components: + - type: Transform + pos: 20.51026,-6.115085 + parent: 2 + - uid: 10969 + components: + - type: Transform + pos: 20.54151,-8.052586 + parent: 2 + - uid: 10972 + components: + - type: Transform + pos: 19.531092,-8.031752 + parent: 2 +- proto: ClothingHeadHatOrangesoftFlipped + entities: + - uid: 24232 + components: + - type: Transform + pos: -52.45549,-3.0318637 + parent: 2 +- proto: ClothingHeadHatPaper + entities: + - uid: 2300 + components: + - type: Transform + pos: -40.729294,-45.21122 + parent: 2 +- proto: ClothingHeadHatPwig + entities: + - uid: 3518 + components: + - type: Transform + parent: 3516 + - type: Physics + canCollide: False +- proto: ClothingHeadHatRichard + entities: + - uid: 1385 + components: + - type: Transform + pos: -23.582691,21.820213 + parent: 2 +- proto: ClothingHeadHatWatermelon + entities: + - uid: 19136 + components: + - type: Transform + pos: 42.64965,36.68563 + parent: 2 + - uid: 19137 + components: + - type: Transform + pos: 43.21215,36.692574 + parent: 2 + - uid: 19138 + components: + - type: Transform + pos: 43.85104,36.706463 + parent: 2 + - uid: 19139 + components: + - type: Transform + pos: 44.357983,36.68563 + parent: 2 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 22362 + components: + - type: Transform + parent: 22361 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22364 + components: + - type: Transform + parent: 22361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetFire + entities: + - uid: 23802 + components: + - type: Transform + pos: -1.6524403,40.692146 + parent: 2 + - type: HandheldLight + toggleActionEntity: 23803 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 23803 + - type: ActionsContainer +- proto: ClothingHeadHelmetRiot + entities: + - uid: 4267 + components: + - type: Transform + pos: 32.466755,-25.262497 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 32.466755,-25.403122 + parent: 2 +- proto: ClothingHeadHelmetThunderdome + entities: + - uid: 23603 + components: + - type: Transform + pos: 31.536545,33.86032 + parent: 2 +- proto: ClothingHeadSafari + entities: + - uid: 5863 + components: + - type: Transform + parent: 5862 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5864 + components: + - type: Transform + parent: 5862 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadsetGrey + entities: + - uid: 21600 + components: + - type: Transform + pos: 49.503967,15.507565 + parent: 21002 +- proto: ClothingHeadsetMining + entities: + - uid: 26968 + components: + - type: Transform + pos: 19.579208,14.445946 + parent: 21002 +- proto: ClothingMaskBreath + entities: + - uid: 2071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.564667,-40.524387 + parent: 2 + - uid: 10290 + components: + - type: Transform + pos: -12.413146,-50.48558 + parent: 2 + - uid: 19071 + components: + - type: Transform + pos: 33.30195,-41.439465 + parent: 2 + - uid: 28279 + components: + - type: Transform + pos: 43.299988,5.641138 + parent: 21002 + - uid: 28280 + components: + - type: Transform + pos: 64.36134,6.718439 + parent: 21002 + - uid: 28285 + components: + - type: Transform + pos: 36.401535,-6.3389015 + parent: 21002 + - uid: 28289 + components: + - type: Transform + pos: 41.364685,16.633213 + parent: 21002 + - uid: 28290 + components: + - type: Transform + pos: 52.396774,16.633213 + parent: 21002 + - uid: 28292 + components: + - type: Transform + pos: 46.451965,-16.390926 + parent: 21002 +- proto: ClothingMaskSadMime + entities: + - uid: 24197 + components: + - type: Transform + parent: 19505 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakGay + entities: + - uid: 24198 + components: + - type: Transform + parent: 19505 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckStethoscope + entities: + - uid: 2097 + components: + - type: Transform + parent: 2095 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckTieRed + entities: + - uid: 19183 + components: + - type: Transform + pos: -34.49993,-49.359425 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 4261 + components: + - type: Transform + pos: 32.29488,-25.231247 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 32.279255,-25.371872 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 32.279255,-25.481247 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 32.26363,-25.621872 + parent: 2 +- proto: ClothingOuterArmorReflective + entities: + - uid: 4265 + components: + - type: Transform + pos: 32.654255,-25.262497 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: 32.66988,-25.387497 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 4269 + components: + - type: Transform + pos: 32.48238,-25.449997 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: 32.51363,-25.606247 + parent: 2 +- proto: ClothingOuterCoatExpensive + entities: + - uid: 24200 + components: + - type: Transform + parent: 19505 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatInspector + entities: + - uid: 19186 + components: + - type: Transform + pos: -33.359306,-49.4063 + parent: 2 +- proto: ClothingOuterCoatTrench + entities: + - uid: 28309 + components: + - type: Transform + pos: -4.444107,16.65205 + parent: 21002 +- proto: ClothingOuterGhostSheet + entities: + - uid: 6736 + components: + - type: Transform + pos: 16.42737,29.266323 + parent: 2 + - uid: 24162 + components: + - type: Transform + pos: -36.5237,-64.52039 + parent: 2 +- proto: ClothingOuterHardsuitEVAPrisoner + entities: + - uid: 22363 + components: + - type: Transform + parent: 22361 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22365 + components: + - type: Transform + parent: 22361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRobesJudge + entities: + - uid: 3517 + components: + - type: Transform + parent: 3516 + - type: Physics + canCollide: False +- proto: ClothingOuterSuitChicken + entities: + - uid: 21003 + components: + - type: Transform + pos: -23.559837,21.528027 + parent: 2 +- proto: ClothingOuterVestHazard + entities: + - uid: 16674 + components: + - type: Transform + pos: 31.526129,33.52699 + parent: 2 + - uid: 18923 + components: + - type: Transform + pos: 31.474047,33.131157 + parent: 2 +- proto: ClothingShoesBootsCowboyFancy + entities: + - uid: 2287 + components: + - type: Transform + pos: 40.573883,-29.603441 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 6158 + components: + - type: Transform + pos: 46.359123,6.7234044 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: 46.62475,6.4577794 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: 47.327873,6.7702794 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: 47.56225,6.5046544 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: 48.37475,6.7702794 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 48.609123,6.4890294 + parent: 2 +- proto: ClothingShoesBootsMerc + entities: + - uid: 21679 + components: + - type: Transform + parent: 21678 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWork + entities: + - uid: 5865 + components: + - type: Transform + parent: 5862 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5868 + components: + - type: Transform + parent: 5862 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorOrange + entities: + - uid: 22415 + components: + - type: Transform + parent: 22410 + - type: Physics + canCollide: False + - uid: 22416 + components: + - type: Transform + parent: 22410 + - type: Physics + canCollide: False + - uid: 22422 + components: + - type: Transform + parent: 22340 + - type: Physics + canCollide: False + - uid: 22423 + components: + - type: Transform + parent: 22340 + - type: Physics + canCollide: False + - uid: 22429 + components: + - type: Transform + parent: 22424 + - type: Physics + canCollide: False + - uid: 22430 + components: + - type: Transform + parent: 22424 + - type: Physics + canCollide: False +- proto: ClothingShoesHighheelBoots + entities: + - uid: 1053 + components: + - type: Transform + parent: 3736 + - type: Physics + canCollide: False + - uid: 23744 + components: + - type: Transform + pos: 41.4651,44.54896 + parent: 2 +- proto: ClothingShoesLeather + entities: + - uid: 2096 + components: + - type: Transform + parent: 2095 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 19184 + components: + - type: Transform + pos: -33.828056,-49.2813 + parent: 2 +- proto: ClothingUniformJumpskirtPrisoner + entities: + - uid: 22413 + components: + - type: Transform + parent: 22410 + - type: Physics + canCollide: False + - uid: 22414 + components: + - type: Transform + parent: 22410 + - type: Physics + canCollide: False + - uid: 22418 + components: + - type: Transform + parent: 22340 + - type: Physics + canCollide: False + - uid: 22420 + components: + - type: Transform + parent: 22340 + - type: Physics + canCollide: False + - uid: 22427 + components: + - type: Transform + parent: 22424 + - type: Physics + canCollide: False + - uid: 22428 + components: + - type: Transform + parent: 22424 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 19185 + components: + - type: Transform + pos: -33.828056,-49.31255 + parent: 2 +- proto: ClothingUniformJumpsuitMonasticRobeDark + entities: + - uid: 8698 + components: + - type: Transform + pos: 19.562342,-6.4171686 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: 20.54151,-8.365086 + parent: 2 + - uid: 10971 + components: + - type: Transform + pos: 19.531092,-8.333836 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: 20.531092,-6.4067516 + parent: 2 +- proto: ClothingUniformJumpsuitMonasticRobeLight + entities: + - uid: 8958 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8960 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8962 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8964 + components: + - type: Transform + parent: 1048 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 22411 + components: + - type: Transform + parent: 22410 + - type: Physics + canCollide: False + - uid: 22412 + components: + - type: Transform + parent: 22410 + - type: Physics + canCollide: False + - uid: 22419 + components: + - type: Transform + parent: 22340 + - type: Physics + canCollide: False + - uid: 22421 + components: + - type: Transform + parent: 22340 + - type: Physics + canCollide: False + - uid: 22425 + components: + - type: Transform + parent: 22424 + - type: Physics + canCollide: False + - uid: 22426 + components: + - type: Transform + parent: 22424 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 2099 + components: + - type: Transform + parent: 2095 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSafari + entities: + - uid: 5866 + components: + - type: Transform + parent: 5862 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5867 + components: + - type: Transform + parent: 5862 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Coal1 + entities: + - uid: 3432 + components: + - type: Transform + parent: 2258 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 12436 + components: + - type: Transform + pos: -56.5,-32.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-40.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-37.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 3806 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 +- proto: ComfyChair + entities: + - uid: 1044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-39.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-42.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-42.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,16.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,19.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,15.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-41.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-56.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-56.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: 4.5,44.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,52.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,52.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,52.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,52.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,52.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-62.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-61.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-62.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-61.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-81.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-81.5 + parent: 2 + - uid: 23373 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 28322 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 9322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 + - uid: 9323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,39.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,12.5 + parent: 2 + - uid: 18894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,42.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 9733 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 1069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 24227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 11280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 23695 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 2364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,8.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 1349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-34.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-6.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 2381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-10.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 18373 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 3893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-49.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 2372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,7.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-6.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 11839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-27.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 1348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-34.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 2377 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,31.5 + parent: 2 + - uid: 18703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,39.5 + parent: 2 + - uid: 22502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 21002 + - uid: 23606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,39.5 + parent: 2 + - uid: 23658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,45.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 17774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-11.5 + parent: 2 + - uid: 25227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-44.5 + parent: 21002 + - uid: 25234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,15.5 + parent: 21002 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 9892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-43.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 24215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-20.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 11278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,9.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-3.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 11279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,9.5 + parent: 2 + - uid: 11813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 2375 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-46.5 + parent: 2 + - uid: 18228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-53.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - uid: 22493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 21002 +- proto: ComputerStationRecords + entities: + - uid: 3738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-11.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-11.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-10.5 + parent: 2 + - uid: 9549 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 12464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-27.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,4.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-33.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,12.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-60.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-21.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-21.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-21.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + pos: -53.5,-32.5 + parent: 2 + - uid: 19162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,35.5 + parent: 2 + - uid: 22753 + components: + - type: Transform + pos: 16.5,1.5 + parent: 21002 +- proto: ContainmentFieldGenerator + entities: + - uid: 3868 + components: + - type: MetaData + desc: Not quite as sturdy as the ones the engineers use, but faster overall. Don't touch the beam. + name: docking containment generator + - type: Transform + pos: 60.5,-30.5 + parent: 2 + - type: ContainmentFieldGenerator + powerLoss: 7 + power: 8 + powerMinimum: 20 + - uid: 3872 + components: + - type: MetaData + desc: Not quite as sturdy as the ones the engineers use, but faster overall. Don't touch the beam. + name: docking containment generator + - type: Transform + pos: 60.5,-22.5 + parent: 2 + - type: ContainmentFieldGenerator + powerLoss: 7 + power: 8 + powerMinimum: 20 + - uid: 7210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,58.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,58.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,66.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,66.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,49.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,49.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,49.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 1666 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 1667 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 1767 + components: + - type: Transform + pos: -57.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 2120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 3225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 3236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 3247 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 3327 + components: + - type: Transform + pos: -57.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 3652 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3226 + - uid: 11344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11355 + - uid: 11345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11354 + - uid: 11346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11354 + - uid: 11347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11355 + - uid: 11348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11354 + - uid: 11349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11354 + - uid: 11350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11355 + - uid: 11352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11354 + - uid: 11353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11355 + - uid: 11356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11355 + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11355 + - uid: 11358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 11354 + - uid: 11659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12098 + - uid: 11660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12098 + - uid: 12092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12098 + - uid: 12093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12098 + - uid: 12094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12098 + - uid: 12095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12098 + - uid: 12096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12098 + - uid: 12097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12098 +- proto: CottonSeeds + entities: + - uid: 22761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.6853485,9.655979 + parent: 21002 + - uid: 22762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.6384735,9.499729 + parent: 21002 +- proto: CrateArtifactContainer + entities: + - uid: 9812 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 +- proto: CrateCoffin + entities: + - uid: 1008 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1009 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1010 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1011 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1012 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1013 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateContrabandStorageSecure + entities: + - uid: 12291 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 +- proto: CrateElectrical + entities: + - uid: 6259 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 19667 + components: + - type: Transform + pos: -46.5,-52.5 + parent: 2 +- proto: CrateEmergencyFire + entities: + - uid: 23791 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 +- proto: CrateEngineering + entities: + - uid: 23788 + components: + - type: Transform + pos: -6.5,43.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 5445 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 5443 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 +- proto: CrateEngineeringCableHV + entities: + - uid: 23688 + components: + - type: Transform + pos: -5.5,47.5 + parent: 2 +- proto: CrateEngineeringCableLV + entities: + - uid: 21427 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 21002 + - uid: 23690 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 +- proto: CrateEngineeringCableMV + entities: + - uid: 23689 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 6258 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 +- proto: CrateEngineeringMiniJetpack + entities: + - uid: 26711 + components: + - type: Transform + pos: 67.5,54.5 + parent: 21002 +- proto: CrateEngineeringSecure + entities: + - uid: 23789 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 +- proto: CrateEngineeringSolar + entities: + - uid: 23790 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 +- proto: CrateFoodMRE + entities: + - uid: 6257 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 488 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5185 + - 5278 + - 5279 + - 5280 + - 5340 + - 5454 + - 5455 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1897 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9335 + - 9336 + - 9337 + - 9338 + - 9339 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10269 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - 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 + - uid: 20718 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - 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 +- proto: CrateGenericSteel + entities: + - uid: 21559 + components: + - type: Transform + pos: 46.47821,25.633486 + parent: 21002 + - 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: + - 21560 + - 21561 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21647 + components: + - type: Transform + pos: 76.5417,-19.306087 + parent: 21002 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21648 + - 21649 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21678 + components: + - type: Transform + pos: 54.584427,32.651142 + parent: 21002 + - 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: + - 21679 + - 21680 + - 21681 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21845 + components: + - type: Transform + pos: 57.52028,-18.43192 + parent: 21002 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21847 + - 21846 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 21982 + components: + - type: Transform + pos: 90.51018,-6.3049965 + parent: 21002 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21983 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22143 + components: + - type: Transform + pos: 40.5,20.5 + parent: 21002 + - 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: + - 22145 + - 22144 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22197 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 21002 + - 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: + - 22198 + - 22199 + - 22200 + - 22201 + - 22202 + - 22203 + - 22204 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22361 + components: + - type: Transform + pos: 2.5,31.5 + parent: 21002 + - 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: + - 22365 + - 22364 + - 22363 + - 22362 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 22574 + components: + - type: Transform + pos: 26.5,41.5 + parent: 21002 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22247 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25364 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 21002 + - 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: + - 25365 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25516 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 21002 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27840 + - 25520 + - 25517 + - 25518 + - 25519 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26770 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 21002 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26771 + - 26772 + - 26773 + - 26774 + - 26775 + - 26776 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateInternals + entities: + - uid: 19636 + components: + - type: Transform + pos: -45.5,-52.5 + parent: 2 + - uid: 23820 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 +- proto: CrateLivestock + entities: + - uid: 28353 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - 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 + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 135 + hard: True + restitution: 0 + friction: 0.4 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateMedicalSurgery + entities: + - uid: 1903 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 2 + - uid: 19056 + components: + - type: Transform + pos: 31.5,-41.5 + parent: 2 +- proto: CrateMindShieldImplants + entities: + - uid: 24219 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 +- proto: CrateNPCGoose + entities: + - uid: 3950 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 20654 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 +- proto: CratePrivateSecure + entities: + - uid: 15009 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 +- proto: CrateServicePersonnel + entities: + - uid: 3510 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 +- proto: CrateStoneGrave + entities: + - uid: 1266 + components: + - type: MetaData + desc: Here lies Pancake... + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 1268 + components: + - type: MetaData + desc: Here lies Silas... + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 18339 + components: + - type: MetaData + desc: Here lies O'malley... + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 18340 + components: + - type: MetaData + desc: Here lies Sugaree... + - type: Transform + pos: 6.5,14.5 + parent: 2 +- proto: CrateSurgery + entities: + - uid: 19055 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 +- proto: CrateTrashCart + entities: + - uid: 28348 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - 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 + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateTrashCartFilled + entities: + - uid: 23593 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - uid: 23757 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 +- proto: CrateVirologyBiosuit + entities: + - uid: 1853 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 +- proto: CrateWoodenGrave + entities: + - uid: 1271 + components: + - type: MetaData + desc: Here lies Spice... + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 18341 + components: + - type: MetaData + desc: Here lies Peaches... + - type: Transform + pos: 7.5,7.5 + parent: 2 +- proto: CrayonBox + entities: + - uid: 2251 + components: + - type: Transform + pos: -41.467846,-46.296154 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -42.474228,-38.347942 + parent: 2 + - uid: 11387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.299456,-44.99926 + parent: 2 +- proto: Crematorium + entities: + - uid: 1059 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - type: EntityStorage + open: True +- proto: CrewMonitoringServer + entities: + - uid: 9904 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 9263 + components: + - type: Transform + pos: -23.455753,23.489971 + parent: 2 + - uid: 9447 + components: + - type: Transform + pos: -29.389341,31.394936 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 6773 + components: + - type: Transform + pos: 23.425058,34.59862 + parent: 2 + - uid: 9791 + components: + - type: Transform + pos: 3.5064647,-33.54954 + parent: 2 + - uid: 27834 + components: + - type: Transform + pos: 25.502121,-31.654285 + parent: 21002 +- proto: CryogenicSleepUnit + entities: + - uid: 6937 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 23062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 21002 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 12226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-32.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-34.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 17779 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 +- proto: CryostasisBeaker + entities: + - uid: 23817 + components: + - type: Transform + pos: -31.331255,-20.419533 + parent: 2 + - uid: 23818 + components: + - type: Transform + pos: -28.935421,-17.346615 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 23819 + components: + - type: Transform + pos: -15.710586,-37.15408 + parent: 2 +- proto: CultAltarSpawner + entities: + - uid: 949 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 +- proto: CurtainsBlack + entities: + - uid: 2050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 2 +- proto: CurtainsBlackOpen + entities: + - uid: 2069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-21.5 + parent: 2 +- proto: CurtainsBlue + entities: + - uid: 3283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,15.5 + parent: 2 + - uid: 24211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,12.5 + parent: 2 +- proto: CurtainsBlueOpen + entities: + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,13.5 + parent: 2 + - uid: 24213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,14.5 + parent: 2 +- proto: CurtainsCyanOpen + entities: + - uid: 2727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-37.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-37.5 + parent: 2 +- proto: d10Dice + entities: + - uid: 12468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.507744,-38.774933 + parent: 2 +- proto: d12Dice + entities: + - uid: 12467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.27337,-39.353058 + parent: 2 +- proto: d4Dice + entities: + - uid: 12469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.58587,-38.462433 + parent: 2 +- proto: d6Dice + entities: + - uid: 7677 + components: + - type: Transform + pos: 27.305422,38.859303 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: 27.024172,38.671803 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: -16.953133,29.486889 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: -16.562508,29.143139 + parent: 2 + - uid: 12465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.46087,-38.712433 + parent: 2 + - uid: 12466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.757744,-38.478058 + parent: 2 + - uid: 24230 + components: + - type: Transform + pos: -52.64299,-2.3443637 + parent: 2 + - uid: 24231 + components: + - type: Transform + pos: -52.48674,-2.521447 + parent: 2 + - uid: 28318 + components: + - type: Transform + pos: -29.41609,30.858166 + parent: 2 + - uid: 28319 + components: + - type: Transform + pos: -29.22859,30.59775 + parent: 2 +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 11516 + components: + - type: Transform + pos: -47.437134,-23.804716 + parent: 2 +- proto: DefaultStationBeacon + entities: + - uid: 11587 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 5822 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 11887 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 11888 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 11889 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 11890 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 11891 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 3262 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 3302 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 3263 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 11892 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 14769 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 11576 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 11577 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 6702 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 931 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 3265 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 11893 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 +- proto: DefaultStationBeaconCommand + entities: + - uid: 3266 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 3552 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 11894 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 11578 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 11586 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 11897 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 11895 + components: + - type: Transform + pos: 60.5,0.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 11896 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 11898 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 3553 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 11899 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 3267 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 3268 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 6089 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 11900 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 11901 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 +- proto: DefaultStationBeaconMedical + entities: + - uid: 1860 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 1113 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 23536 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 21002 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 7690 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 11588 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 11902 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 11905 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 11904 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 3080 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 11903 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 +- proto: DefaultStationBeaconService + entities: + - uid: 11909 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 5457 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 3269 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 11910 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 11589 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconTEG + entities: + - uid: 11911 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 11590 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 3270 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 5821 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 11591 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 11592 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 11912 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-35.5 + parent: 2 +- proto: DeployableBarrier + entities: + - uid: 5424 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 43.5,-18.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 3547 + components: + - type: Transform + pos: 40.7533,-3.3006525 + parent: 2 + missingComponents: + - Item + - uid: 11540 + components: + - type: Transform + pos: -47.621174,0.4273572 + parent: 2 + missingComponents: + - Item + - Pullable + - uid: 23512 + components: + - type: Transform + pos: -39.003548,2.466653 + parent: 2 + missingComponents: + - Item + - Pullable + - uid: 23514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5951512,33.154465 + parent: 2 + missingComponents: + - Item + - Pullable + - uid: 23515 + components: + - type: Transform + pos: 4.5605373,-42.20132 + parent: 2 + missingComponents: + - Item + - Pullable +- proto: DiceBag + entities: + - uid: 7680 + components: + - type: Transform + pos: 26.774172,38.906178 + parent: 2 + - uid: 28320 + components: + - type: Transform + pos: -28.707756,31.3165 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 1252 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 2039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-42.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,38.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,38.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,0.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-30.5 + parent: 2 + - uid: 12123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-16.5 + parent: 2 + - uid: 12124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-16.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 16571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 16572 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 16573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 16574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 16718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,37.5 + parent: 2 + - uid: 16735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,45.5 + parent: 2 + - uid: 16736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,33.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + pos: 18.5,45.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,36.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - uid: 16783 + components: + - type: Transform + pos: -21.5,26.5 + parent: 2 + - uid: 16807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,26.5 + parent: 2 + - uid: 16808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,19.5 + parent: 2 + - uid: 16812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + - uid: 16894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 2 + - uid: 16908 + components: + - type: Transform + pos: -54.5,-25.5 + parent: 2 + - uid: 16912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-29.5 + parent: 2 + - uid: 16918 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 16929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-16.5 + parent: 2 + - uid: 16936 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 16942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-32.5 + parent: 2 + - uid: 16943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-47.5 + parent: 2 + - uid: 16986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-0.5 + parent: 2 + - uid: 16996 + components: + - type: Transform + pos: -50.5,-23.5 + parent: 2 + - uid: 17037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 17117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-38.5 + parent: 2 + - uid: 17134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - uid: 17175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-49.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-59.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-36.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 2 + - uid: 17350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-32.5 + parent: 2 + - uid: 17374 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - uid: 17375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-44.5 + parent: 2 + - uid: 17376 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-54.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 + - uid: 17545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 2 + - uid: 17576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,19.5 + parent: 2 + - uid: 17598 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 17599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + - uid: 17651 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 17683 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 17684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,7.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-43.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-52.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-1.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,1.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,0.5 + parent: 2 + - uid: 21203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 2 + - uid: 21204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-41.5 + parent: 2 + - uid: 23427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - uid: 28375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - uid: 28391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 1202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-11.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 16564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 + - uid: 16587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 16602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 16648 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 16664 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 16817 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 16845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - uid: 16880 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-29.5 + parent: 2 + - uid: 16916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 2 + - uid: 16917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - uid: 16920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 + - uid: 16941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-31.5 + parent: 2 + - uid: 17038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - uid: 17115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 2 + - uid: 17138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-42.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-50.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-49.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - uid: 17242 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 17264 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 17268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-18.5 + parent: 2 + - uid: 28395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 15509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 16650 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - uid: 16654 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 16661 + components: + - type: Transform + pos: -0.5,35.5 + parent: 2 + - uid: 16723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,35.5 + parent: 2 + - uid: 16739 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,26.5 + parent: 2 + - uid: 16875 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 16951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-40.5 + parent: 2 + - uid: 16976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - uid: 17033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 2 + - uid: 17075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-36.5 + parent: 2 + - uid: 17089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-36.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-49.5 + parent: 2 + - uid: 17208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 2 + - uid: 17210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - uid: 17221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-8.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,1.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-32.5 + parent: 2 + - uid: 28392 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 28393 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 28394 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 1203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-41.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-40.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-39.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-38.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-37.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,49.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,39.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,40.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,41.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,42.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,43.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,44.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,45.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,46.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,47.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,48.5 + parent: 2 + - uid: 9328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,49.5 + parent: 2 + - uid: 9329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,49.5 + parent: 2 + - uid: 9357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,49.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,49.5 + parent: 2 + - uid: 9359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,49.5 + parent: 2 + - uid: 9360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,49.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 11550 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-30.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-30.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-30.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-30.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-30.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 12108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-27.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-26.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-25.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-24.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-23.5 + parent: 2 + - uid: 12113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-22.5 + parent: 2 + - uid: 12114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-21.5 + parent: 2 + - uid: 12115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-20.5 + parent: 2 + - uid: 12116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-19.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 12118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-17.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-16.5 + parent: 2 + - uid: 12120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-16.5 + parent: 2 + - uid: 12121 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,40.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-45.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 16578 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 16579 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 16580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 16581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 16582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 16584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 16585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 16586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 16588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 16589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 16590 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 16592 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 16593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 16594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 16597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - uid: 16598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 16600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 16601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 16603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 2 + - uid: 16604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 2 + - uid: 16619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 2 + - uid: 16621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 16624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 2 + - uid: 16639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 2 + - uid: 16640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 2 + - uid: 16642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,16.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 2 + - uid: 16645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,18.5 + parent: 2 + - uid: 16646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,19.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 2 + - uid: 16649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 2 + - uid: 16651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 2 + - uid: 16652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 2 + - uid: 16653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,26.5 + parent: 2 + - uid: 16655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,28.5 + parent: 2 + - uid: 16656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,30.5 + parent: 2 + - uid: 16658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,31.5 + parent: 2 + - uid: 16659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,32.5 + parent: 2 + - uid: 16660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,33.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,36.5 + parent: 2 + - uid: 16685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,49.5 + parent: 2 + - uid: 16686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,49.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,49.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,49.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 2 + - uid: 16693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 2 + - uid: 16694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 2 + - uid: 16695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,23.5 + parent: 2 + - uid: 16698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,27.5 + parent: 2 + - uid: 16699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + - uid: 16700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 2 + - uid: 16704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,37.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,37.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,37.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,37.5 + parent: 2 + - uid: 16708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,37.5 + parent: 2 + - uid: 16709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,37.5 + parent: 2 + - uid: 16710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,37.5 + parent: 2 + - uid: 16711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,37.5 + parent: 2 + - uid: 16712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,37.5 + parent: 2 + - uid: 16713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,36.5 + parent: 2 + - uid: 16714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,35.5 + parent: 2 + - uid: 16715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,35.5 + parent: 2 + - uid: 16716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,35.5 + parent: 2 + - uid: 16717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,35.5 + parent: 2 + - uid: 16720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,35.5 + parent: 2 + - uid: 16721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,35.5 + parent: 2 + - uid: 16725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,34.5 + parent: 2 + - uid: 16726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,36.5 + parent: 2 + - uid: 16727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,37.5 + parent: 2 + - uid: 16728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,38.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,39.5 + parent: 2 + - uid: 16730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,40.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,41.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,42.5 + parent: 2 + - uid: 16733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,43.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,44.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,33.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - uid: 16740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,33.5 + parent: 2 + - uid: 16742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,33.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,33.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 16752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,33.5 + parent: 2 + - uid: 16755 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 16757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 2 + - uid: 16758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,36.5 + parent: 2 + - uid: 16759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,45.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,45.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,45.5 + parent: 2 + - uid: 16762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,45.5 + parent: 2 + - uid: 16763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,45.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,45.5 + parent: 2 + - uid: 16765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,45.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,45.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,45.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,45.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,42.5 + parent: 2 + - uid: 16777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,43.5 + parent: 2 + - uid: 16778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,44.5 + parent: 2 + - uid: 16779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,26.5 + parent: 2 + - uid: 16780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,26.5 + parent: 2 + - uid: 16782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,26.5 + parent: 2 + - uid: 16784 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 16785 + components: + - type: Transform + pos: -21.5,24.5 + parent: 2 + - uid: 16786 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 16787 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 16789 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 + - uid: 16790 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 16791 + components: + - type: Transform + pos: -26.5,28.5 + parent: 2 + - uid: 16792 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 + - uid: 16793 + components: + - type: Transform + pos: -26.5,30.5 + parent: 2 + - uid: 16794 + components: + - type: Transform + pos: -26.5,31.5 + parent: 2 + - uid: 16795 + components: + - type: Transform + pos: -26.5,32.5 + parent: 2 + - uid: 16796 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 + - uid: 16797 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - uid: 16799 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - uid: 16800 + components: + - type: Transform + pos: -26.5,37.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: -26.5,38.5 + parent: 2 + - uid: 16802 + components: + - type: Transform + pos: -26.5,39.5 + parent: 2 + - uid: 16803 + components: + - type: Transform + pos: -26.5,40.5 + parent: 2 + - uid: 16804 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - uid: 16805 + components: + - type: Transform + pos: -26.5,42.5 + parent: 2 + - uid: 16809 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 16810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,19.5 + parent: 2 + - uid: 16811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,19.5 + parent: 2 + - uid: 16813 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 16814 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 16815 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 16816 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 16818 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 16819 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 16820 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 16821 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 16822 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 16823 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 16824 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 16825 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 16826 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 16828 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 16829 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 16832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - uid: 16834 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 16835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - uid: 16836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - uid: 16838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - uid: 16839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - uid: 16840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - uid: 16841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - uid: 16842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - uid: 16843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - uid: 16844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 16847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 16848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 16849 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 16850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + - uid: 16851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - uid: 16852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 16853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - uid: 16854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - uid: 16855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - uid: 16856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + - uid: 16857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 2 + - uid: 16858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 2 + - uid: 16859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 2 + - uid: 16860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 2 + - uid: 16861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - uid: 16862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - uid: 16863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - uid: 16864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - uid: 16866 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 16867 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 + - uid: 16868 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 16869 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 16870 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 16871 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 2 + - uid: 16872 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 16873 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 16874 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 16876 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 16877 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 16878 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 16879 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 16881 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 16882 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 16883 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 16885 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 16886 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 16887 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 16888 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 16889 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 16890 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 16892 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 16895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-29.5 + parent: 2 + - uid: 16896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-29.5 + parent: 2 + - uid: 16897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-29.5 + parent: 2 + - uid: 16898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-29.5 + parent: 2 + - uid: 16899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 2 + - uid: 16900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-29.5 + parent: 2 + - uid: 16901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-29.5 + parent: 2 + - uid: 16902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-29.5 + parent: 2 + - uid: 16903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-29.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-29.5 + parent: 2 + - uid: 16906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-29.5 + parent: 2 + - uid: 16907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-29.5 + parent: 2 + - uid: 16909 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 16910 + components: + - type: Transform + pos: -54.5,-27.5 + parent: 2 + - uid: 16911 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - uid: 16919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 2 + - uid: 16921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 2 + - uid: 16923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-10.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-11.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 16926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-13.5 + parent: 2 + - uid: 16927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-14.5 + parent: 2 + - uid: 16928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-15.5 + parent: 2 + - uid: 16930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-16.5 + parent: 2 + - uid: 16933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-26.5 + parent: 2 + - uid: 16934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-26.5 + parent: 2 + - uid: 16935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-26.5 + parent: 2 + - uid: 16937 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 16938 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 16939 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 16940 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 16944 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 2 + - uid: 16945 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 2 + - uid: 16946 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 + - uid: 16948 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - uid: 16950 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - uid: 16952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-40.5 + parent: 2 + - uid: 16953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-40.5 + parent: 2 + - uid: 16954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-40.5 + parent: 2 + - uid: 16955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-40.5 + parent: 2 + - uid: 16956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-40.5 + parent: 2 + - uid: 16958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-47.5 + parent: 2 + - uid: 16959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-47.5 + parent: 2 + - uid: 16960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-47.5 + parent: 2 + - uid: 16961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-47.5 + parent: 2 + - uid: 16962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-47.5 + parent: 2 + - uid: 16963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-46.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-45.5 + parent: 2 + - uid: 16965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-44.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-43.5 + parent: 2 + - uid: 16967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-42.5 + parent: 2 + - uid: 16968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-41.5 + parent: 2 + - uid: 16972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - uid: 16973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-15.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - uid: 16978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 2 + - uid: 16981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - uid: 16984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 2 + - uid: 16985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 + - uid: 16987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,0.5 + parent: 2 + - uid: 16989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,2.5 + parent: 2 + - uid: 16991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-28.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-27.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-26.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-25.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-24.5 + parent: 2 + - uid: 16997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-23.5 + parent: 2 + - uid: 16998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-23.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-23.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-23.5 + parent: 2 + - uid: 17001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-23.5 + parent: 2 + - uid: 17002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-23.5 + parent: 2 + - uid: 17004 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 17005 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 17006 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 17007 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 17014 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 17015 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 17018 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 17019 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 17022 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 17023 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 17025 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 17026 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 17028 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 17030 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 17031 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 17034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - uid: 17035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 2 + - uid: 17039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 17040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 2 + - uid: 17041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + - uid: 17042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + - uid: 17048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 2 + - uid: 17060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + - uid: 17072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + - uid: 17073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - uid: 17074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - uid: 17077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-29.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 2 + - uid: 17080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 2 + - uid: 17081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 17090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-36.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-36.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-36.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-36.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-36.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-36.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-35.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-35.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-38.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-31.5 + parent: 2 + - uid: 17131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-31.5 + parent: 2 + - uid: 17132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 + - uid: 17133 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - uid: 17148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-41.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-40.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-39.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-38.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-37.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-43.5 + parent: 2 + - uid: 17156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-44.5 + parent: 2 + - uid: 17157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-45.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-46.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-47.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-48.5 + parent: 2 + - uid: 17163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-50.5 + parent: 2 + - uid: 17164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-50.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-49.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-49.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 2 + - uid: 17170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-49.5 + parent: 2 + - uid: 17171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-49.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-49.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-49.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-53.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-52.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-51.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-50.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-51.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-52.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-53.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-55.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-56.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-57.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-58.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-59.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-59.5 + parent: 2 + - uid: 17197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - uid: 17203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,0.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 2 + - uid: 17218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 2 + - uid: 17219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-6.5 + parent: 2 + - uid: 17220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + - uid: 17227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-4.5 + parent: 2 + - uid: 17229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-3.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-2.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - uid: 17235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - uid: 17236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - uid: 17237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - uid: 17238 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 17239 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 17240 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 17241 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 17243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 + - uid: 17246 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 17247 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 17248 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 17249 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 17250 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 17251 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 17254 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 17257 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 17258 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 17265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - uid: 17266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - uid: 17267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,1.5 + parent: 2 + - uid: 17271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + - uid: 17272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,1.5 + parent: 2 + - uid: 17274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,1.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,1.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,1.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,1.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,1.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 2 + - uid: 17280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,0.5 + parent: 2 + - uid: 17281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-0.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,2.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,1.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,1.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,1.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,1.5 + parent: 2 + - uid: 17289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,1.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,1.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-9.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-10.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-11.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 2 + - uid: 17304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 + - uid: 17305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-18.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-18.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-18.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-18.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-18.5 + parent: 2 + - uid: 17311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-18.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-18.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-18.5 + parent: 2 + - uid: 17314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-18.5 + parent: 2 + - uid: 17315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-18.5 + parent: 2 + - uid: 17316 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 17320 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-19.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-20.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-21.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-22.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-23.5 + parent: 2 + - uid: 17328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-25.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-26.5 + parent: 2 + - uid: 17331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-28.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-29.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-30.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-31.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-36.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-36.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-36.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-36.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + pos: 45.5,-38.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 17345 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-31.5 + parent: 2 + - uid: 17352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-32.5 + parent: 2 + - uid: 17353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-32.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-32.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-32.5 + parent: 2 + - uid: 17356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-32.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-32.5 + parent: 2 + - uid: 17358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-32.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-32.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-42.5 + parent: 2 + - uid: 17363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 2 + - uid: 17364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-42.5 + parent: 2 + - uid: 17365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-42.5 + parent: 2 + - uid: 17366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 2 + - uid: 17367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 2 + - uid: 17368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 2 + - uid: 17369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 2 + - uid: 17370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-42.5 + parent: 2 + - uid: 17371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-42.5 + parent: 2 + - uid: 17372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-42.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 2 + - uid: 17377 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 17378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-44.5 + parent: 2 + - uid: 17379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 2 + - uid: 17380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-44.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-44.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-44.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-44.5 + parent: 2 + - uid: 17384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-44.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-44.5 + parent: 2 + - uid: 17386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-44.5 + parent: 2 + - uid: 17387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-44.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-46.5 + parent: 2 + - uid: 17389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-47.5 + parent: 2 + - uid: 17390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-48.5 + parent: 2 + - uid: 17391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-49.5 + parent: 2 + - uid: 17392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-50.5 + parent: 2 + - uid: 17393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-51.5 + parent: 2 + - uid: 17394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-52.5 + parent: 2 + - uid: 17395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-53.5 + parent: 2 + - uid: 17398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-54.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,2.5 + parent: 2 + - uid: 17526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 2 + - uid: 17527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 2 + - uid: 17528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 2 + - uid: 17533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 2 + - uid: 17535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 2 + - uid: 17536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 + - uid: 17539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 17540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 17541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2 + - uid: 17542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2 + - uid: 17543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 + - uid: 17544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,20.5 + parent: 2 + - uid: 17547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,21.5 + parent: 2 + - uid: 17548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 2 + - uid: 17550 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 17551 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 17552 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 17553 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 17554 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 17557 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 17558 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 17559 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 17560 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 17561 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 17564 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 17565 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 17566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - uid: 17567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 17568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - uid: 17569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - uid: 17570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - uid: 17571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - uid: 17572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 17573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - uid: 17577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,23.5 + parent: 2 + - uid: 17578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - uid: 17579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,26.5 + parent: 2 + - uid: 17581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 2 + - uid: 17582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 2 + - uid: 17583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 2 + - uid: 17584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 2 + - uid: 17585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 2 + - uid: 17586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 2 + - uid: 17587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 2 + - uid: 17588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,24.5 + parent: 2 + - uid: 17589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 2 + - uid: 17590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,26.5 + parent: 2 + - uid: 17591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,27.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,28.5 + parent: 2 + - uid: 17593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 2 + - uid: 17594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 2 + - uid: 17595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,31.5 + parent: 2 + - uid: 17596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 2 + - uid: 17600 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 17601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 2 + - uid: 17602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,32.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 + - uid: 17606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,32.5 + parent: 2 + - uid: 17607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,32.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,32.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + - uid: 17634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - uid: 17640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - uid: 17647 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 17652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - uid: 17657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - uid: 17659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,0.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 2 + - uid: 17668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 2 + - uid: 17672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - uid: 17673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,1.5 + parent: 2 + - uid: 17678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 2 + - uid: 17680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,6.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 2 + - uid: 17691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 17693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 17697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-21.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 2 + - uid: 17705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-26.5 + parent: 2 + - uid: 17708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-29.5 + parent: 2 + - uid: 17711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-30.5 + parent: 2 + - uid: 17712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-31.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-32.5 + parent: 2 + - uid: 17714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-33.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-34.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-35.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-36.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-37.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-38.5 + parent: 2 + - uid: 17720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-39.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-40.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-41.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-42.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-43.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-51.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 2 + - uid: 17765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 17766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - uid: 17767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 + - uid: 17777 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 2 + - uid: 17781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-34.5 + parent: 2 + - uid: 17782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-33.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-32.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-30.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-28.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-27.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 2 + - uid: 17790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-24.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 2 + - uid: 17797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 2 + - uid: 17798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 2 + - uid: 17804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 2 + - uid: 17814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,1.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - uid: 17830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,1.5 + parent: 2 + - uid: 17831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,1.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,1.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,1.5 + parent: 2 + - uid: 17839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,1.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,0.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,0.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 2 + - uid: 17856 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,0.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,0.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,0.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,0.5 + parent: 2 + - uid: 17870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 17875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - uid: 17876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - uid: 17883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - uid: 17884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - uid: 17885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - uid: 17891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - uid: 17892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 17893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,2.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,3.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,4.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,4.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,5.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,6.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 2 + - uid: 17943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,8.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,9.5 + parent: 2 + - uid: 18088 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 18138 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 21199 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 21200 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 21201 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 21202 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 21205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 2 + - uid: 23666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,1.5 + parent: 2 + - uid: 24072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - uid: 24243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 + - uid: 28376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,19.5 + parent: 2 + - uid: 28377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,20.5 + parent: 2 + - uid: 28378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + - uid: 28379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - uid: 28380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,18.5 + parent: 2 + - uid: 28381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - uid: 28382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - uid: 28384 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 28385 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 28386 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 + - uid: 28387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-9.5 + parent: 2 + - uid: 28388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 28389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-5.5 + parent: 2 + - uid: 28390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-3.5 + parent: 2 + - uid: 28396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - uid: 28397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 2 + - uid: 28398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 2 +- proto: DisposalRouter + entities: + - uid: 16559 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - type: DisposalRouter + tags: + - Atmos + - Bar + - Cargo + - uid: 16560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - type: DisposalRouter + tags: + - Chemistry + - Robotics + - Science + - uid: 16561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 2 + - type: DisposalRouter + tags: + - Bridge + - Court + - uid: 16562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - type: DisposalRouter + tags: + - Botany + - Engineering + - Kitchen + - uid: 17538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 2 + - type: DisposalRouter + tags: + - Botany + - uid: 17549 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - type: DisposalRouter + tags: + - Kitchen + - uid: 17597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,32.5 + parent: 2 + - type: DisposalRouter + tags: + - Engineering + - uid: 17646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - type: DisposalRouter + tags: + - Court + - uid: 17653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - type: DisposalRouter + tags: + - Bridge + - uid: 17724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-43.5 + parent: 2 + - type: DisposalRouter + tags: + - Science + - uid: 17752 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - type: DisposalRouter + tags: + - Robotics + - uid: 17762 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - type: DisposalRouter + tags: + - Chemistry + - uid: 17821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 + - type: DisposalRouter + tags: + - Bar + - uid: 17843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,1.5 + parent: 2 + - type: DisposalRouter + tags: + - Atmos + - uid: 17845 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - type: DisposalRouter + tags: + - Cargo +- proto: DisposalRouterFlipped + entities: + - uid: 15510 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - type: DisposalRouter + tags: + - Trash +- proto: DisposalTagger + entities: + - uid: 15508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - type: DisposalTagger + tag: Trash +- proto: DisposalTrunk + entities: + - uid: 2286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: -48.5,2.5 + parent: 2 + - uid: 9361 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-4.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-30.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + pos: 54.5,3.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,49.5 + parent: 2 + - uid: 16691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,20.5 + parent: 2 + - uid: 16697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 2 + - uid: 16701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - uid: 16719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,35.5 + parent: 2 + - uid: 16724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,34.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,36.5 + parent: 2 + - uid: 16806 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 + - uid: 16915 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 16931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-40.5 + parent: 2 + - uid: 16957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 17003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-23.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - uid: 17036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-39.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-38.5 + parent: 2 + - uid: 17135 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 17136 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 17177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-50.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-50.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-54.5 + parent: 2 + - uid: 17180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-59.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 2 + - uid: 17244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 2 + - uid: 17261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,22.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-1.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-18.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-39.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-54.5 + parent: 2 + - uid: 17546 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 17575 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 17648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-51.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 24244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - uid: 28372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-25.5 + parent: 2 + - uid: 28374 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 28383 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 + - uid: 28399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - uid: 28400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + - uid: 28401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 2 + - uid: 28402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 434 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: 37.5,-54.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: 45.5,-39.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 9327 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 9332 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 10270 + components: + - type: Transform + pos: -10.5,-50.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + pos: -57.5,-23.5 + parent: 2 + - uid: 11834 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 17523 + components: + - type: Transform + pos: 54.5,3.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 20946 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 23612 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 24248 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 16566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 16722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,35.5 + parent: 2 + - uid: 16865 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 +- proto: DogBed + entities: + - uid: 1670 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 1615 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 5816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.280407,3.3386672 + parent: 2 + - uid: 5817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.717907,3.4480422 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: -47.081112,-18.538473 + parent: 2 + - uid: 11501 + components: + - type: Transform + pos: -47.070698,-18.29889 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 23838 + components: + - type: Transform + pos: -26.335854,15.494169 + parent: 2 + - type: GasTank + toggleActionEntity: 23839 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23839 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 23832 + components: + - type: Transform + pos: -26.606686,15.712919 + parent: 2 + - type: GasTank + toggleActionEntity: 23833 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23833 +- proto: Dresser + entities: + - uid: 22340 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 21002 + - type: Storage + storedItems: + 22418: + position: 0,0 + _rotation: South + 22419: + position: 2,0 + _rotation: South + 22420: + position: 4,0 + _rotation: South + 22421: + position: 0,2 + _rotation: South + 22422: + position: 2,2 + _rotation: South + 22423: + position: 4,2 + _rotation: South + 23525: + position: 6,0 + _rotation: South + 23928: + position: 6,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 22418 + - 22419 + - 22420 + - 22421 + - 22422 + - 22423 + - 23525 + - 23928 + - uid: 22410 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 21002 + - type: Storage + storedItems: + 22411: + position: 0,0 + _rotation: South + 22412: + position: 2,0 + _rotation: South + 22413: + position: 4,0 + _rotation: South + 22414: + position: 0,2 + _rotation: South + 22415: + position: 2,2 + _rotation: South + 22416: + position: 4,2 + _rotation: South + 23524: + position: 6,0 + _rotation: South + 22571: + position: 6,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 22411 + - 22412 + - 22413 + - 22414 + - 22415 + - 22416 + - 23524 + - 22571 + - uid: 22424 + components: + - type: Transform + pos: 14.5,7.5 + parent: 21002 + - type: Storage + storedItems: + 22425: + position: 0,0 + _rotation: South + 22426: + position: 2,0 + _rotation: South + 22427: + position: 4,0 + _rotation: South + 22428: + position: 0,2 + _rotation: South + 22429: + position: 2,2 + _rotation: South + 22430: + position: 4,2 + _rotation: South + 23526: + position: 6,0 + _rotation: South + 22573: + position: 6,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 22425 + - 22426 + - 22427 + - 22428 + - 22429 + - 22430 + - 23526 + - 22573 +- proto: DresserCaptainFilled + entities: + - uid: 358 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 6638 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 3514 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 480 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: -42.5,-37.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - type: Storage + storedItems: + 5548: + position: 0,0 + _rotation: South + 5549: + position: 1,0 + _rotation: South + 5550: + position: 2,0 + _rotation: South + 5551: + position: 3,0 + _rotation: South + 5576: + position: 4,0 + _rotation: South + 5577: + position: 5,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 5548 + - 5549 + - 5550 + - 5551 + - 5576 + - 5577 + - uid: 12136 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 12137 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 12159 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 3516 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - type: Storage + storedItems: + 3517: + position: 0,0 + _rotation: South + 3518: + position: 2,0 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 3517 + - 3518 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 4343 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 15031 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 9880 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 3736 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - type: Storage + storedItems: + 1053: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1053 +- proto: DrinkBottleBeer + entities: + - uid: 23755 + components: + - type: Transform + pos: 16.821438,29.711718 + parent: 2 + - uid: 23756 + components: + - type: Transform + pos: 16.779772,29.159634 + parent: 2 +- proto: DrinkBottleGoldschlager + entities: + - uid: 23226 + components: + - type: Transform + pos: -53.08521,12.786483 + parent: 2 +- proto: DrinkBottleTequila + entities: + - uid: 23233 + components: + - type: Transform + pos: -53.783127,12.796899 + parent: 2 +- proto: DrinkBottleWine + entities: + - uid: 23355 + components: + - type: Transform + pos: 38.60958,16.707075 + parent: 2 + - uid: 23370 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 13.983306,14.287479 + parent: 2 +- proto: DrinkCognacBottleFull + entities: + - uid: 23228 + components: + - type: Transform + pos: -52.793545,12.786483 + parent: 2 +- proto: DrinkColaBottleFull + entities: + - uid: 23388 + components: + - type: Transform + pos: -37.570995,-44.208107 + parent: 2 +- proto: DrinkDetFlask + entities: + - uid: 19174 + components: + - type: Transform + pos: -31.531183,-50.453175 + parent: 2 +- proto: DrinkDrGibbCan + entities: + - uid: 28307 + components: + - type: Transform + pos: -5.3641663,15.747065 + parent: 21002 +- proto: DrinkFlask + entities: + - uid: 23421 + components: + - type: Transform + pos: 29.415947,20.657654 + parent: 2 +- proto: DrinkFlaskOld + entities: + - uid: 2102 + components: + - type: Transform + parent: 2095 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkGildlagerBottleFull + entities: + - uid: 10386 + components: + - type: Transform + pos: -56.52132,1.4738216 + parent: 2 +- proto: DrinkGinGlass + entities: + - uid: 23236 + components: + - type: Transform + pos: -52.941887,9.867835 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 3600 + components: + - type: Transform + pos: 36.722878,-3.2444518 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 36.691628,-7.6194515 + parent: 2 + - uid: 9407 + components: + - type: Transform + pos: 19.376999,37.711403 + parent: 2 + - uid: 9659 + components: + - type: Transform + pos: -21.708103,5.9208603 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: -21.489353,6.2333603 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: -21.411228,5.9052353 + parent: 2 + - uid: 16684 + components: + - type: Transform + pos: 16.599165,37.669735 + parent: 2 + - uid: 16747 + components: + - type: Transform + pos: 19.533249,37.53432 + parent: 2 + - uid: 16770 + components: + - type: Transform + pos: 19.668665,37.711403 + parent: 2 + - uid: 23571 + components: + - type: Transform + pos: -56.73,-33.229942 + parent: 2 + - uid: 23572 + components: + - type: Transform + pos: -56.73,-33.52161 + parent: 2 + - uid: 23573 + components: + - type: Transform + pos: -56.72756,-33.80093 + parent: 2 + - uid: 23574 + components: + - type: Transform + pos: -56.730648,-34.057106 + parent: 2 + - uid: 23575 + components: + - type: Transform + pos: -56.492992,-33.94599 + parent: 2 + - uid: 23576 + components: + - type: Transform + pos: -56.505337,-33.671303 + parent: 2 + - uid: 23577 + components: + - type: Transform + pos: -56.499165,-33.40587 + parent: 2 + - uid: 23620 + components: + - type: Transform + pos: -36.6906,-34.412094 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 11453 + components: + - type: Transform + pos: -48.22078,-11.387981 + parent: 2 +- proto: DrinkIceJug + entities: + - uid: 23353 + components: + - type: Transform + pos: 38.8075,16.75916 + parent: 2 +- proto: DrinkJar + entities: + - uid: 2398 + components: + - type: Transform + parent: 11445 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2400 + components: + - type: Transform + parent: 11445 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2739 + components: + - type: Transform + parent: 11445 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkJarWhat + entities: + - uid: 3209 + components: + - type: Transform + parent: 11445 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23816 + components: + - type: Transform + pos: -37.405224,-59.512615 + parent: 2 +- proto: DrinkJuiceOrangeCarton + entities: + - uid: 5185 + components: + - type: Transform + parent: 488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5278 + components: + - type: Transform + parent: 488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9339 + components: + - type: Transform + parent: 9334 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkJuiceTomatoCarton + entities: + - uid: 9337 + components: + - type: Transform + parent: 9334 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkLithiumFlask + entities: + - uid: 2098 + components: + - type: Transform + parent: 2095 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkMelonLiquorBottleFull + entities: + - uid: 19156 + components: + - type: Transform + pos: 42.265656,36.62421 + parent: 2 +- proto: DrinkMilkCarton + entities: + - uid: 3398 + components: + - type: Transform + parent: 10787 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3584 + components: + - type: Transform + parent: 10787 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5279 + components: + - type: Transform + parent: 488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5454 + components: + - type: Transform + parent: 488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5455 + components: + - type: Transform + parent: 488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9335 + components: + - type: Transform + parent: 9334 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9336 + components: + - type: Transform + parent: 9334 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkMug + entities: + - uid: 23578 + components: + - type: Transform + pos: -56.38601,-34.403664 + parent: 2 + - uid: 23579 + components: + - type: Transform + pos: -54.288788,-36.341164 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 28311 + components: + - type: Transform + pos: 17.620728,-45.2835 + parent: 21002 +- proto: DrinkOatMilkCarton + entities: + - uid: 5280 + components: + - type: Transform + parent: 488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5340 + components: + - type: Transform + parent: 488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9338 + components: + - type: Transform + parent: 9334 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkPatronBottleFull + entities: + - uid: 23231 + components: + - type: Transform + pos: -53.439377,12.692733 + parent: 2 +- proto: DrinkRumBottleFull + entities: + - uid: 2707 + components: + - type: Transform + pos: 40.724167,16.686243 + parent: 2 + - uid: 23229 + components: + - type: Transform + pos: -54.408127,12.776066 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 9657 + components: + - type: Transform + pos: -21.583103,9.811485 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: -21.536228,9.51461 + parent: 2 + - uid: 10246 + components: + - type: Transform + pos: -56.227818,-32.455795 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 2553 + components: + - type: Transform + pos: -55.53174,0.7305328 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -56.58382,0.7134049 + parent: 2 + - uid: 20489 + components: + - type: Transform + pos: -56.229656,1.6717383 + parent: 2 +- proto: DrinkSodaWaterBottleFull + entities: + - uid: 3589 + components: + - type: Transform + pos: 23.636429,16.66636 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 24.292679,16.681986 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 24.511429,16.306986 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 23.605179,14.947611 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 23.355179,15.494486 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: 24.573929,15.385111 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: 29.34997,20.992138 + parent: 2 + - uid: 23386 + components: + - type: Transform + pos: -37.20641,-43.947693 + parent: 2 + - uid: 23387 + components: + - type: Transform + pos: -37.258495,-44.176857 + parent: 2 +- proto: DrinkTequilaBottleFull + entities: + - uid: 7684 + components: + - type: Transform + pos: 27.274172,38.093678 + parent: 2 +- proto: DrinkTequilaGlass + entities: + - uid: 7685 + components: + - type: Transform + pos: 26.711672,37.718678 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: 27.633547,38.281178 + parent: 2 +- proto: DrinkVermouthBottleFull + entities: + - uid: 23227 + components: + - type: Transform + pos: -54.10719,12.800266 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 19170 + components: + - type: Transform + pos: -30.46763,-50.21589 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: -30.884296,-50.14297 + parent: 2 + - uid: 23230 + components: + - type: Transform + pos: -52.481045,12.807316 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 3598 + components: + - type: Transform + pos: 36.691628,-7.2444515 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 36.738503,-2.8382018 + parent: 2 + - uid: 23618 + components: + - type: Transform + pos: -36.40935,-34.443344 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: -36.29477,-34.245426 + parent: 2 +- proto: DrinkWaterCup + entities: + - uid: 2270 + components: + - type: Transform + pos: -40.52828,-45.536854 + parent: 2 + - uid: 23389 + components: + - type: Transform + pos: -37.602245,-43.218525 + parent: 2 + - uid: 23390 + components: + - type: Transform + pos: -37.373077,-43.135193 + parent: 2 + - uid: 23391 + components: + - type: Transform + pos: -37.248077,-43.260193 + parent: 2 +- proto: DrinkWatermelonJuice + entities: + - uid: 19140 + components: + - type: Transform + pos: 42.69826,42.532852 + parent: 2 + - uid: 19141 + components: + - type: Transform + pos: 43.281593,42.803684 + parent: 2 + - uid: 19142 + components: + - type: Transform + pos: 43.75382,42.81063 + parent: 2 + - uid: 19143 + components: + - type: Transform + pos: 44.267704,42.49813 + parent: 2 +- proto: DrinkWaterMelonJuiceJug + entities: + - uid: 19148 + components: + - type: Transform + pos: 42.55243,42.852295 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 3802 + components: + - type: Transform + pos: 40.123108,21.988455 + parent: 2 +- proto: DrinkWhiskeyGlass + entities: + - uid: 3803 + components: + - type: Transform + pos: 40.669983,21.738455 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 40.466858,21.550955 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: 5.3368344,-82.39743 + parent: 2 +- proto: DrinkWineGlass + entities: + - uid: 23356 + components: + - type: Transform + pos: 38.24454,16.409254 + parent: 2 + - uid: 23357 + components: + - type: Transform + pos: 38.25496,16.711338 + parent: 2 + - uid: 23371 + components: + - type: Transform + pos: 13.452056,14.016645 + parent: 2 + - uid: 23372 + components: + - type: Transform + pos: 14.535389,14.214562 + parent: 2 +- proto: Eggshells + entities: + - uid: 19085 + components: + - type: Transform + pos: 35.076473,-37.479614 + parent: 2 + - uid: 19086 + components: + - type: Transform + pos: 35.37335,-37.05774 + parent: 2 + - uid: 19087 + components: + - type: Transform + pos: 36.87335,-37.510864 + parent: 2 + - uid: 19088 + components: + - type: Transform + pos: 37.326473,-37.33899 + parent: 2 +- proto: ElectricGrillMachineCircuitboard + entities: + - uid: 5807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.577282,4.729292 + parent: 2 +- proto: ElectricGuitarInstrument + entities: + - uid: 24190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.378447,-42.447163 + parent: 2 +- proto: EmergencyFunnyOxygenTankFilled + entities: + - uid: 23827 + components: + - type: Transform + pos: 23.546455,52.81668 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 11282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-45.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-73.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-5.5 + parent: 2 + - uid: 24008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-62.5 + parent: 2 + - uid: 24017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-62.5 + parent: 2 + - uid: 24018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-73.5 + parent: 2 + - uid: 24020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-51.5 + parent: 2 + - uid: 24021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-41.5 + parent: 2 + - uid: 24022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-41.5 + parent: 2 + - uid: 24023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-39.5 + parent: 2 + - uid: 24024 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 24025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 2 + - uid: 24026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 2 + - uid: 24027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 2 + - uid: 24028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - uid: 24029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 2 + - uid: 24030 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 24031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 2 + - uid: 24032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-10.5 + parent: 2 + - uid: 24033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-22.5 + parent: 2 + - uid: 24034 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 24035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-33.5 + parent: 2 + - uid: 24036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 + - uid: 24037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-8.5 + parent: 2 + - uid: 24038 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 24039 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 24040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - uid: 24041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 2 + - uid: 24042 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 24043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 24044 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 24045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 2 + - uid: 24046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 2 + - uid: 24047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 2 + - uid: 24048 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 24049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 + - uid: 24050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,32.5 + parent: 2 + - uid: 24051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,37.5 + parent: 2 + - uid: 24052 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 24053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,36.5 + parent: 2 + - uid: 24054 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 24055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 2 + - uid: 24056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - uid: 24057 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: 10.5,46.5 + parent: 2 + - uid: 24059 + components: + - type: Transform + pos: 16.5,46.5 + parent: 2 + - uid: 24060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,49.5 + parent: 2 + - uid: 24061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,40.5 + parent: 2 + - uid: 24062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,25.5 + parent: 2 + - uid: 24064 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 24065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - uid: 24066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 24067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 24068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 2 + - uid: 24069 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 24070 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 24071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,4.5 + parent: 2 + - uid: 24073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-10.5 + parent: 2 + - uid: 24074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-26.5 + parent: 2 + - uid: 24076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - uid: 24077 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 24078 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 24079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-13.5 + parent: 2 + - uid: 24080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 24081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + - uid: 24082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-33.5 + parent: 2 + - uid: 24083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-41.5 + parent: 2 + - uid: 24084 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 24085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-36.5 + parent: 2 + - uid: 24086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 2 + - uid: 24088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-31.5 + parent: 2 + - uid: 24093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-54.5 + parent: 2 + - uid: 24094 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 24095 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 24096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-46.5 + parent: 2 + - uid: 24097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-42.5 + parent: 2 + - uid: 24098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-34.5 + parent: 2 + - uid: 24099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-34.5 + parent: 2 + - uid: 24100 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 24101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 24102 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 + - uid: 24103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 2 + - uid: 24104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-36.5 + parent: 2 + - uid: 24105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-40.5 + parent: 2 + - uid: 24106 + components: + - type: Transform + pos: -39.5,-40.5 + parent: 2 + - uid: 24107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 2 + - uid: 24108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-34.5 + parent: 2 + - uid: 24109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-25.5 + parent: 2 + - uid: 24110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-20.5 + parent: 2 + - uid: 24111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-5.5 + parent: 2 + - uid: 24113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-1.5 + parent: 2 + - uid: 24114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,5.5 + parent: 2 + - uid: 24115 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 24116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,12.5 + parent: 2 + - uid: 24117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,24.5 + parent: 2 + - uid: 24118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,34.5 + parent: 2 + - uid: 24119 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 24120 + components: + - type: Transform + pos: -17.5,48.5 + parent: 2 + - uid: 24121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,44.5 + parent: 2 + - uid: 24122 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 24123 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 24124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - uid: 24125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,15.5 + parent: 2 + - uid: 24131 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 +- proto: EmergencyNitrogenTankFilled + entities: + - uid: 23836 + components: + - type: Transform + pos: -26.28377,14.921253 + parent: 2 + - type: GasTank + toggleActionEntity: 23837 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23837 + - uid: 28423 + components: + - type: Transform + pos: 64.447464,6.6445427 + parent: 21002 + - uid: 28424 + components: + - type: Transform + pos: 43.432404,5.5640793 + parent: 21002 + - uid: 28425 + components: + - type: Transform + pos: 52.39586,16.580564 + parent: 21002 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 23834 + components: + - type: Transform + pos: -26.481686,14.431669 + parent: 2 + - type: GasTank + toggleActionEntity: 23835 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23835 + - uid: 28281 + components: + - type: Transform + pos: 43.584152,5.432804 + parent: 21002 + - type: GasTank + toggleActionEntity: 28282 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28282 + - uid: 28283 + components: + - type: Transform + pos: 64.58009,6.520523 + parent: 21002 + - type: GasTank + toggleActionEntity: 28284 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28284 + - uid: 28286 + components: + - type: Transform + pos: 36.607346,-6.5251694 + parent: 21002 + - uid: 28287 + components: + - type: Transform + pos: 41.592026,16.465542 + parent: 21002 + - uid: 28288 + components: + - type: Transform + pos: 52.543518,16.423874 + parent: 21002 + - uid: 28291 + components: + - type: Transform + pos: 46.56346,-16.636257 + parent: 21002 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 1952 + components: + - type: Transform + pos: -10.542792,-26.445763 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: -10.527167,-27.383263 + parent: 2 +- proto: Emitter + entities: + - uid: 3081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4246 + - uid: 3921 + components: + - type: Transform + pos: 60.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4246 + - uid: 7214 + components: + - type: Transform + pos: 9.5,68.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,66.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: 17.5,68.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,66.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,58.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,56.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,56.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,58.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,48.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,48.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,48.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,48.5 + parent: 2 +- proto: EncryptionKeyCargo + entities: + - uid: 9548 + components: + - type: Transform + parent: 9547 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 9536 + components: + - type: Transform + parent: 9535 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 9540 + components: + - type: Transform + parent: 9539 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 9542 + components: + - type: Transform + parent: 9541 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 9538 + components: + - type: Transform + parent: 9537 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 9546 + components: + - type: Transform + parent: 9545 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 9544 + components: + - type: Transform + parent: 9543 + - type: Physics + canCollide: False + - uid: 28274 + components: + - type: Transform + pos: 28.595581,-32.32901 + parent: 21002 +- proto: EncryptionKeyService + entities: + - uid: 9489 + components: + - type: Transform + parent: 9488 + - type: Physics + canCollide: False +- proto: Error + entities: + - uid: 3151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.503017,-33.53635 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 10470 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 23830 + components: + - type: Transform + pos: -26.606686,14.921253 + parent: 2 + - type: GasTank + toggleActionEntity: 23831 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23831 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 5804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-32.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-18.5 + parent: 2 + - uid: 19637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-51.5 + parent: 2 + - uid: 23043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 21002 + - uid: 23795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,43.5 + parent: 2 + - uid: 23796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,48.5 + parent: 2 + - uid: 23797 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 23798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-47.5 + parent: 2 + - uid: 23799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 + - uid: 23800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + - uid: 23801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-0.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 1043 + components: + - type: MetaData + name: chapel fax machine + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - type: FaxMachine + name: Chapel + - uid: 1424 + components: + - type: MetaData + name: medical fax machine + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - type: FaxMachine + name: medical + - uid: 2422 + components: + - type: MetaData + name: security fax machine + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - type: FaxMachine + name: security + - uid: 2423 + components: + - type: MetaData + name: bridge fax machine + - type: Transform + pos: 25.5,4.5 + parent: 2 + - type: FaxMachine + name: bridge + - uid: 3415 + components: + - type: MetaData + name: HoP fax machine + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - type: FaxMachine + name: HoP + - uid: 5844 + components: + - type: MetaData + name: law fax machine + - type: Transform + pos: 38.5,5.5 + parent: 2 + - type: FaxMachine + name: lawyer + - uid: 6248 + components: + - type: MetaData + name: engineering fax machine + - type: Transform + pos: 8.5,34.5 + parent: 2 + - type: FaxMachine + name: engineering + - uid: 7988 + components: + - type: MetaData + name: library fax machine + - type: Transform + pos: -11.5,35.5 + parent: 2 + - type: FaxMachine + name: library + - uid: 9013 + components: + - type: MetaData + name: atmos fax machine + - type: Transform + pos: -28.5,30.5 + parent: 2 + - type: FaxMachine + name: atmos + - uid: 10599 + components: + - type: MetaData + name: science fax machine + - type: Transform + pos: 9.5,-45.5 + parent: 2 + - type: FaxMachine + name: science + - uid: 11204 + components: + - type: MetaData + name: cargo fax machine + - type: Transform + pos: -48.5,3.5 + parent: 2 + - type: FaxMachine + name: cargo + - uid: 11856 + components: + - type: MetaData + name: news fax machine + - type: Transform + pos: -46.5,-27.5 + parent: 2 + - type: FaxMachine + name: news + - uid: 13061 + components: + - type: MetaData + name: AI fax machine + - type: Transform + pos: 58.5,14.5 + parent: 2 + - type: FaxMachine + name: AI + - uid: 22766 + components: + - type: MetaData + name: perma fax machine + - type: Transform + pos: 9.5,7.5 + parent: 21002 + - type: FaxMachine + name: Perma +- proto: FaxMachineCaptain + entities: + - uid: 2688 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 +- proto: FigureSpawner + entities: + - uid: 23863 + components: + - type: Transform + pos: -2.5,-62.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 1114 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - type: Storage + storedItems: + 1115: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1115 + - uid: 1403 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - type: Storage + storedItems: + 1404: + position: 0,0 + _rotation: South + 1405: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1404 + - 1405 + - uid: 2577 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - type: Storage + storedItems: + 6938: + position: 0,0 + _rotation: South + 6941: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 6938 + - 6941 + - uid: 2669 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: 42.66966,-6.5 + parent: 2 + - type: Storage + storedItems: + 9368: + position: 0,0 + _rotation: South + 9369: + position: 1,0 + _rotation: South + 9370: + position: 2,0 + _rotation: South + 9371: + position: 3,0 + _rotation: South + 9372: + position: 4,0 + _rotation: South + 9373: + position: 5,0 + _rotation: South + 9374: + position: 6,0 + _rotation: South + 9375: + position: 7,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 9368 + - 9369 + - 9370 + - 9371 + - 9372 + - 9373 + - 9374 + - 9375 + - uid: 3794 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 10477 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 19178 + components: + - type: Transform + pos: -32.328056,-49.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 2692 + components: + - type: Transform + pos: 28.245878,22.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: 28.730253,22.5 + parent: 2 + - uid: 19175 + components: + - type: Transform + pos: -35.203056,-49.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: -35.96868,-49.5 + parent: 2 +- proto: filingCabinetTall + entities: + - uid: 19177 + components: + - type: Transform + pos: -35.609306,-49.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 2104 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: 42.152096,-6.5 + parent: 2 + - type: Storage + storedItems: + 9376: + position: 0,0 + _rotation: South + 9377: + position: 1,0 + _rotation: South + 9378: + position: 2,0 + _rotation: South + 9379: + position: 3,0 + _rotation: South + 9380: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 9376 + - 9377 + - 9378 + - 9379 + - 9380 + - uid: 10478 + components: + - type: Transform + pos: -5.771684,-54.5 + parent: 2 + - uid: 10479 + components: + - type: Transform + pos: -5.271684,-54.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-29.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 4036 + - 4567 + - 9795 + - 9858 + - uid: 4037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 4567 + - 4036 + - 5582 + - 9795 + - 9858 + - uid: 10191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 3346 + - 3347 + - 3348 + - 16523 + - 16524 + - 16525 + - uid: 13483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 79 + - 75 + - 24132 + - 17899 + - 16671 + - 12062 + - uid: 18231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-70.5 + parent: 2 + - type: DeviceList + devices: + - 18232 + - 18233 + - uid: 18241 + components: + - type: Transform + pos: -8.5,-55.5 + parent: 2 + - type: DeviceList + devices: + - 16533 + - 14793 + - 14782 + - 18233 + - 18232 + - 18234 + - 18235 + - uid: 18243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-70.5 + parent: 2 + - type: DeviceList + devices: + - 18235 + - 18234 + - uid: 18246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 16533 + - 14793 + - 14782 + - 16537 + - 16538 + - 16539 + - 18249 + - 18248 + - 18250 + - 18252 + - 18251 + - uid: 18259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 16539 + - 16538 + - 16537 + - 18261 + - 18260 + - 16536 + - 16535 + - 16534 + - uid: 18264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 16536 + - 16535 + - 16534 + - 3343 + - 3344 + - 3345 + - uid: 18274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 148 + - 147 + - 146 + - 145 + - 144 + - 143 + - 142 + - 141 + - 140 + - 139 + - 138 + - 137 + - 136 + - 135 + - 134 + - 133 + - 132 + - 131 + - 130 + - 129 + - uid: 18275 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 149 + - 150 + - 151 + - 152 + - 153 + - 154 + - 155 + - 156 + - 157 + - 158 + - 159 + - 160 + - 161 + - 162 + - 163 + - 164 + - 165 + - 166 + - 167 + - 168 + - uid: 18276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 18296 + - 18297 + - 18298 + - 18299 + - 18300 + - 18301 + - 188 + - 187 + - 186 + - 185 + - 184 + - 183 + - 182 + - 181 + - 180 + - 179 + - uid: 18277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 107 + - 108 + - 109 + - 110 + - 111 + - 112 + - 113 + - 114 + - 115 + - 116 + - 117 + - 118 + - 119 + - 120 + - 121 + - 122 + - 123 + - 124 + - 125 + - 126 + - uid: 18281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 3345 + - 3344 + - 3343 + - 149 + - 150 + - 148 + - 147 + - 146 + - 145 + - 144 + - 143 + - 142 + - 151 + - 152 + - 153 + - 154 + - 155 + - 141 + - 140 + - 139 + - 85 + - 86 + - 87 + - 158 + - 157 + - 156 + - uid: 18282 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 3354 + - 3353 + - 3352 + - 168 + - 167 + - 166 + - 165 + - 164 + - 163 + - 162 + - 161 + - 160 + - 159 + - 90 + - 89 + - 88 + - 178 + - 177 + - 176 + - 175 + - 174 + - 173 + - 172 + - 171 + - 170 + - 169 + - uid: 18283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 179 + - 20 + - 80 + - 81 + - 107 + - 108 + - 109 + - 180 + - 181 + - 110 + - 111 + - 112 + - 113 + - 114 + - 115 + - 116 + - 3349 + - 3350 + - 3351 + - 188 + - 187 + - 186 + - 185 + - 184 + - 183 + - 182 + - uid: 18284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 82 + - 83 + - 84 + - 138 + - 137 + - 136 + - 135 + - 134 + - 133 + - 132 + - 131 + - 130 + - 129 + - 3346 + - 3347 + - 3348 + - 126 + - 125 + - 124 + - 123 + - 122 + - 121 + - 120 + - 119 + - 118 + - 117 + - uid: 18289 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 90 + - 89 + - 88 + - 20 + - 80 + - 81 + - 82 + - 83 + - 84 + - 85 + - 86 + - 87 + - uid: 18302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 3352 + - 3353 + - 3354 + - 16499 + - 16500 + - 16501 + - uid: 18306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 16499 + - 16500 + - 16501 + - 18327 + - 18326 + - 16505 + - 16506 + - 16507 + - 18323 + - 18322 + - 18307 + - 18308 + - uid: 18318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 18327 + - 18326 + - uid: 18319 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 18308 + - 18307 + - 18322 + - 18323 + - 18324 + - 18325 + - 18309 + - 18310 + - uid: 18331 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 16507 + - 16506 + - 16505 + - 16510 + - 16509 + - 16508 + - 24089 + - 24090 + - 15357 + - 24087 + - 18325 + - 18324 + - 15356 + - 79 + - 75 + - 24132 + - 17899 + - uid: 18334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 16508 + - 16509 + - 16510 + - 16516 + - 16515 + - 16514 + - uid: 18335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 16516 + - 16515 + - 16514 + - 17904 + - 17905 + - uid: 18337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 17904 + - 17905 + - uid: 18367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 16523 + - 16524 + - 16525 + - 18359 + - 18360 + - 18362 + - 18361 + - 18363 + - 16526 + - 16527 + - 16528 + - 18365 + - 18364 + - uid: 18444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 18371 + - 18370 + - 18441 + - 18442 + - uid: 18454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 16526 + - 16527 + - 16528 + - 18369 + - 18368 + - uid: 18464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 18362 + - 18361 + - 18465 + - 18466 + - 18467 + - 18468 + - uid: 18470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 18471 + - 18472 + - 18473 + - 18474 + - 18475 + - 18476 + - 18468 + - 18467 + - uid: 18477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 18471 + - 18472 + - uid: 18483 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 18476 + - 18475 + - uid: 18484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 18473 + - 18474 + - uid: 18498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 3351 + - 3350 + - 3349 + - 18494 + - 18495 + - 18496 + - 18497 + - 16548 + - 16549 + - 16550 + - uid: 18500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 16550 + - 16549 + - 16548 + - 18493 + - 18492 + - 18491 + - 18490 + - 16551 + - 16552 + - 18502 + - 18504 + - uid: 18531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 18491 + - 18490 + - 18492 + - 18493 + - 18522 + - 18523 + - uid: 18537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 2 + - uid: 18538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 18534 + - 18535 + - 18524 + - 18525 + - 18527 + - 18526 + - uid: 18542 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 18529 + - 18528 + - 18526 + - 18527 + - uid: 18551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 18549 + - 18550 + - 18528 + - 18529 + - 18547 + - 18546 + - uid: 18552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 18549 + - 18550 + - 18528 + - 18529 + - 18547 + - 18546 + - uid: 18565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 18559 + - 18560 + - 18488 + - 18489 + - 18561 + - uid: 18566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 18560 + - 18559 + - 18571 + - 18572 + - 18568 + - 18569 + - uid: 18575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 18310 + - 18309 + - 18578 + - 18568 + - 18569 + - uid: 18583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 16671 + - 15028 + - 18580 + - 15029 + - 12062 + - 17902 + - 17903 + - uid: 18586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 17902 + - 17903 + - uid: 18604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 18260 + - 18261 + - 18592 + - 18593 + - 18594 + - 18608 + - uid: 18607 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 18600 + - 18599 + - 18598 + - 18601 + - 18602 + - 18597 + - 2200 + - 18595 + - 18592 + - 18593 + - 18609 + - 18608 + - uid: 18615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 18600 + - 18599 + - 18598 + - 18616 + - 18617 + - 18619 + - 18618 + - uid: 18625 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 18628 + - 18627 + - 18365 + - 18364 + - 17460 + - 20975 + - 23518 + - uid: 18651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 18640 + - 18639 + - 18636 + - 18635 + - uid: 18653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 18638 + - 18637 + - 18636 + - 18635 + - 18634 + - uid: 18657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 18638 + - uid: 18662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 18660 + - 18661 + - 18251 + - 18252 + - 18248 + - 18249 + - 18659 + - uid: 18668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 18659 + - uid: 18679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 18660 + - uid: 18684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 18661 + - uid: 18685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 2200 + - 18595 + - 18594 + - uid: 18688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 18597 + - uid: 18689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-51.5 + parent: 2 + - uid: 18699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 18698 + - uid: 20687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 18523 + - 18522 + - 18524 + - 18525 + - uid: 21211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,11.5 + parent: 21002 + - type: DeviceList + devices: + - 21390 + - uid: 21367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 21002 + - type: DeviceList + devices: + - 25356 + - 25354 + - 25353 + - uid: 21372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-19.5 + parent: 21002 + - type: DeviceList + devices: + - 25356 + - 25354 + - 25353 + - uid: 21412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,40.5 + parent: 21002 + - type: DeviceList + devices: + - 22384 + - uid: 21417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-27.5 + parent: 21002 + - type: DeviceList + devices: + - 25359 + - uid: 21418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-26.5 + parent: 21002 + - type: DeviceList + devices: + - 25359 + - uid: 21419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,26.5 + parent: 21002 + - type: DeviceList + devices: + - 21413 + - uid: 21420 + components: + - type: Transform + pos: 78.5,28.5 + parent: 21002 + - type: DeviceList + devices: + - 21413 + - uid: 21452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-28.5 + parent: 21002 + - type: DeviceList + devices: + - 25357 + - 25358 + - 25352 + - uid: 21454 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 21002 + - type: DeviceList + devices: + - 25357 + - 25358 + - 25352 + - uid: 21460 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 21002 + - type: DeviceList + devices: + - 21457 + - uid: 21463 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 21002 + - type: DeviceList + devices: + - 21457 + - uid: 21570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 21002 + - type: DeviceList + devices: + - 26798 + - 26787 + - 26792 + - uid: 21697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 21002 + - type: DeviceList + devices: + - 21709 + - uid: 21712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 21002 + - type: DeviceList + devices: + - 28045 + - uid: 22141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 21002 + - type: DeviceList + devices: + - 21709 + - uid: 23057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 21002 + - type: DeviceList + devices: + - 23052 + - 23053 + - 23054 + - 23055 + - uid: 23680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,48.5 + parent: 2 + - type: DeviceList + devices: + - 16775 + - 23678 + - uid: 23681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 23685 + - 23686 + - 23678 + - 16775 + - 16551 + - 16552 + - uid: 23726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 18489 + - 18488 + - 23687 + - 23685 + - 23686 + - uid: 24092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 24090 + - 24089 + - 24087 + - uid: 24225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 24155 + - uid: 24298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,7.5 + parent: 21002 + - type: DeviceList + devices: + - 26587 + - uid: 24299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,9.5 + parent: 21002 + - type: DeviceList + devices: + - 26587 + - uid: 24301 + components: + - type: Transform + pos: 52.5,10.5 + parent: 21002 + - type: DeviceList + devices: + - 21390 + - uid: 24302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 21002 + - type: DeviceList + devices: + - 21397 + - uid: 24303 + components: + - type: Transform + pos: 46.5,10.5 + parent: 21002 + - type: DeviceList + devices: + - 21397 + - uid: 24304 + components: + - type: Transform + pos: 37.5,1.5 + parent: 21002 + - type: DeviceList + devices: + - 21389 + - uid: 24305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,1.5 + parent: 21002 + - type: DeviceList + devices: + - 21389 + - uid: 26222 + components: + - type: Transform + pos: 44.5,39.5 + parent: 21002 + - type: DeviceList + devices: + - 22384 + - uid: 26679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 21002 + - type: DeviceList + devices: + - 28045 + - uid: 28066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,0.5 + parent: 21002 + - type: DeviceList + devices: + - 26798 + - 26787 + - 26792 +- proto: FireAxeCabinetFilled + entities: + - uid: 2471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - uid: 28373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,38.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 6252 + components: + - type: Transform + pos: 6.713035,38.652546 + parent: 2 +- proto: Firelock + entities: + - uid: 21389 + components: + - type: Transform + pos: 36.5,1.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 24305 + - 24304 + - 23531 + - uid: 21390 + components: + - type: Transform + pos: 53.5,10.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 24301 + - 21211 + - 26568 + - uid: 21397 + components: + - type: Transform + pos: 45.5,10.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 24302 + - 24303 + - 25568 + - uid: 21413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,27.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21420 + - 21419 + - 21415 + - uid: 21709 + components: + - type: Transform + pos: -1.5,26.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21697 + - 22141 + - 22155 + - uid: 22384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,39.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 26222 + - 21412 + - 26203 + - uid: 23901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23903 + - 23907 + - uid: 23902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23903 + - uid: 23908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23909 + - uid: 23911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23909 + - uid: 23912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23915 + - uid: 23913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23915 + - uid: 23916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23918 + - 23917 + - uid: 23922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-53.5 + parent: 2 + - uid: 23925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23927 + - uid: 25352 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21452 + - 21454 + - 21371 + - 21456 + - uid: 25353 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21367 + - 21372 + - 21369 + - uid: 25354 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21367 + - 21372 + - 21369 + - uid: 25356 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21367 + - 21372 + - 21369 + - uid: 25357 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21452 + - 21454 + - 21371 + - 21456 + - uid: 25358 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21452 + - 21454 + - 21371 + - 21456 + - uid: 25359 + components: + - type: Transform + pos: 47.5,-26.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21418 + - 21417 + - 28262 + - uid: 26587 + components: + - type: Transform + pos: 55.5,8.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 24299 + - 24298 + - 25567 + - uid: 26787 + components: + - type: Transform + pos: 28.5,2.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21504 + - 21570 + - 28066 + - uid: 26792 + components: + - type: Transform + pos: 28.5,3.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21504 + - 21570 + - 28066 + - uid: 26798 + components: + - type: Transform + pos: 28.5,1.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21504 + - 21570 + - 28066 + - uid: 28045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21504 + - 21712 + - 26679 +- proto: FirelockEdge + entities: + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18277 + - uid: 117 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 118 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 119 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 120 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 121 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 122 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 123 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 124 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 125 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 126 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18277 + - 18284 + - 18273 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 18274 + - 18286 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18274 + - 18270 + - 18286 + - 18281 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18275 + - 18287 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18275 + - 18287 + - 18282 + - 18271 + - uid: 169 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 170 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 171 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 172 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 173 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 174 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 175 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 176 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 177 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 178 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18276 + - 18285 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - 18283 + - 18272 + - uid: 18659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18662 + - 18663 + - 18668 + - 18667 +- proto: FirelockElectronics + entities: + - uid: 5819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.577282,3.2917922 + parent: 2 + - uid: 5820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.358532,3.6355422 + parent: 2 + - uid: 23804 + components: + - type: Transform + pos: -1.6836903,40.36923 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 20 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18283 + - 18272 + - uid: 75 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18331 + - 18332 + - 13483 + - 23235 + - uid: 79 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18331 + - 18332 + - 13483 + - 23235 + - uid: 80 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18283 + - 18272 + - uid: 81 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18283 + - 18272 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18284 + - 18273 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18284 + - 18273 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18284 + - 18273 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18289 + - 18288 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18289 + - 18288 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18281 + - 18270 + - 18289 + - 18288 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18282 + - 18271 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18282 + - 18271 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18289 + - 18288 + - 18282 + - 18271 + - uid: 2200 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18685 + - 18687 + - 18607 + - 18606 + - uid: 3343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18264 + - 18263 + - 18281 + - 18270 + - uid: 3344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18264 + - 18263 + - 18281 + - 18270 + - uid: 3345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18264 + - 18263 + - 18281 + - 18270 + - uid: 3346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 10191 + - 10169 + - uid: 3347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 10191 + - 10169 + - uid: 3348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18284 + - 18273 + - 10191 + - 10169 + - uid: 3349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18498 + - 18499 + - uid: 3350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18498 + - 18499 + - uid: 3351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18283 + - 18272 + - 18498 + - 18499 + - uid: 3352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18302 + - 18303 + - uid: 3353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18302 + - 18303 + - uid: 3354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18282 + - 18271 + - 18302 + - 18303 + - uid: 4036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4037 + - 2194 + - 5583 + - 18644 + - uid: 4567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4037 + - 2194 + - 5583 + - 18644 + - uid: 5582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4037 + - 18644 + - uid: 9795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4037 + - 2194 + - 5583 + - 18644 + - uid: 9858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4037 + - 2194 + - 5583 + - 18644 + - uid: 12062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13483 + - 23235 + - 18583 + - 18584 + - uid: 14782 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18241 + - 18240 + - 18246 + - 18247 + - uid: 14793 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18241 + - 18240 + - 18246 + - 18247 + - uid: 16499 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18302 + - 18303 + - 18306 + - 18305 + - uid: 16500 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18302 + - 18303 + - 18306 + - 18305 + - uid: 16501 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18302 + - 18303 + - 18306 + - 18305 + - uid: 16505 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18331 + - 18332 + - uid: 16506 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18331 + - 18332 + - uid: 16507 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18331 + - 18332 + - uid: 16508 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18331 + - 18332 + - 18334 + - 18333 + - uid: 16509 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18331 + - 18332 + - 18334 + - 18333 + - uid: 16510 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18331 + - 18332 + - 18334 + - 18333 + - uid: 16514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18334 + - 18333 + - 18335 + - 18336 + - uid: 16515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18334 + - 18333 + - 18335 + - 18336 + - uid: 16516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18334 + - 18333 + - 18335 + - 18336 + - uid: 16523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10191 + - 10169 + - 18367 + - 18366 + - uid: 16524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10191 + - 10169 + - 18367 + - 18366 + - uid: 16525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10191 + - 10169 + - 18367 + - 18366 + - uid: 16526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - 15512 + - 18454 + - uid: 16527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - 15512 + - 18454 + - uid: 16528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - 15512 + - 18454 + - uid: 16533 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18241 + - 18240 + - 18246 + - 18247 + - uid: 16534 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18259 + - 18258 + - 18264 + - 18263 + - uid: 16535 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18259 + - 18258 + - 18264 + - 18263 + - uid: 16536 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18259 + - 18258 + - 18264 + - 18263 + - uid: 16537 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18246 + - 18247 + - 18259 + - 18258 + - uid: 16538 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18246 + - 18247 + - 18259 + - 18258 + - uid: 16539 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18246 + - 18247 + - 18259 + - 18258 + - uid: 16548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18498 + - 18499 + - 18500 + - 18501 + - uid: 16549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18498 + - 18499 + - 18500 + - 18501 + - uid: 16550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18498 + - 18499 + - 18500 + - 18501 + - uid: 16551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 23681 + - 23682 + - uid: 16552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 23681 + - 23682 + - uid: 16671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13483 + - 23235 + - 18583 + - 18584 + - uid: 16775 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23682 + - 23681 + - 23680 + - 23679 + - uid: 17460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18625 + - 18644 + - uid: 17899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13483 + - 23235 + - 18331 + - 18332 + - uid: 17902 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18583 + - 18584 + - 18586 + - 18587 + - uid: 17903 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18583 + - 18584 + - 18586 + - 18587 + - uid: 17904 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18335 + - 18336 + - 18337 + - 18338 + - uid: 17905 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18335 + - 18336 + - 18337 + - 18338 + - uid: 18232 + components: + - type: Transform + pos: -9.5,-63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18241 + - 18240 + - 18231 + - 18244 + - uid: 18233 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18241 + - 18240 + - 18231 + - 18244 + - uid: 18234 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18241 + - 18240 + - 18243 + - 18242 + - uid: 18235 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18241 + - 18240 + - 18243 + - 18242 + - uid: 18248 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18246 + - 18247 + - 18662 + - 18663 + - uid: 18249 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18246 + - 18247 + - 18662 + - 18663 + - uid: 18250 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18246 + - 18247 + - uid: 18251 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18246 + - 18247 + - 18662 + - 18663 + - uid: 18252 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18246 + - 18247 + - 18662 + - 18663 + - uid: 18260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18259 + - 18258 + - 18604 + - 18603 + - uid: 18261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18259 + - 18258 + - 18604 + - 18603 + - uid: 18296 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - uid: 18297 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - uid: 18298 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - uid: 18299 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - uid: 18300 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - uid: 18301 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18276 + - 18285 + - uid: 18307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18319 + - 18328 + - uid: 18308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18319 + - 18328 + - uid: 18309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18319 + - 18328 + - 18575 + - 18570 + - uid: 18310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18319 + - 18328 + - 18575 + - 18570 + - uid: 18322 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18319 + - 18328 + - uid: 18323 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18319 + - 18328 + - uid: 18324 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18319 + - 18328 + - 18331 + - 18332 + - uid: 18325 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18319 + - 18328 + - 18331 + - 18332 + - uid: 18326 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18318 + - 18317 + - uid: 18327 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18306 + - 18305 + - 18318 + - 18317 + - uid: 18359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - uid: 18360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - uid: 18361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - 18464 + - 18463 + - uid: 18362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - 18464 + - 18463 + - uid: 18363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - uid: 18364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - 18625 + - 18644 + - uid: 18365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18367 + - 18366 + - 18625 + - 18644 + - uid: 18368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15512 + - 18440 + - 18454 + - uid: 18369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15512 + - 18440 + - 18454 + - uid: 18370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18440 + - 18444 + - 18443 + - uid: 18371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18440 + - 18444 + - 18443 + - uid: 18441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18444 + - 18443 + - uid: 18442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18444 + - 18443 + - uid: 18465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18464 + - 18463 + - uid: 18466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18464 + - 18463 + - uid: 18467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18464 + - 18463 + - 18470 + - 18469 + - uid: 18468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18464 + - 18463 + - 18470 + - 18469 + - uid: 18471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18470 + - 18469 + - 18477 + - 18478 + - uid: 18472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18470 + - 18469 + - 18477 + - 18478 + - uid: 18473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18470 + - 18469 + - 18484 + - 18480 + - uid: 18474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18470 + - 18469 + - 18484 + - 18480 + - uid: 18475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18470 + - 18469 + - 18483 + - 18482 + - uid: 18476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18470 + - 18469 + - 18483 + - 18482 + - uid: 18488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23683 + - 18565 + - 18564 + - 23726 + - uid: 18489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23683 + - 18565 + - 18564 + - 23726 + - uid: 18490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 18531 + - 18530 + - uid: 18491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 18531 + - 18530 + - uid: 18492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 18531 + - 18530 + - uid: 18493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 18531 + - 18530 + - uid: 18494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18498 + - 18499 + - uid: 18495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18498 + - 18499 + - uid: 18496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18498 + - 18499 + - uid: 18497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18498 + - 18499 + - uid: 18502 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - uid: 18504 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - uid: 18522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18531 + - 18530 + - 20717 + - 20687 + - uid: 18523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18531 + - 18530 + - 20717 + - 20687 + - uid: 18524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18538 + - 18536 + - 20717 + - 20687 + - uid: 18525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18538 + - 18536 + - 20717 + - 20687 + - uid: 18526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18538 + - 18536 + - 18542 + - 18541 + - uid: 18527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18538 + - 18536 + - 18542 + - 18541 + - uid: 18528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18542 + - 18541 + - 18552 + - 18551 + - 9410 + - uid: 18529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18542 + - 18541 + - 18552 + - 18551 + - 9410 + - uid: 18534 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18538 + - 18536 + - uid: 18535 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18538 + - 18536 + - uid: 18546 + components: + - type: Transform + pos: 6.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18552 + - 18551 + - 18553 + - 9410 + - uid: 18547 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18552 + - 18551 + - 9410 + - uid: 18549 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18552 + - 18551 + - 9410 + - uid: 18550 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18552 + - 18551 + - 9410 + - uid: 18559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18565 + - 18564 + - 18566 + - 18567 + - uid: 18560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18565 + - 18564 + - 18566 + - 18567 + - uid: 18561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18565 + - 18564 + - uid: 18568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18566 + - 18567 + - 18575 + - 18570 + - uid: 18569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18566 + - 18567 + - 18575 + - 18570 + - uid: 18571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18566 + - 18567 + - uid: 18572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18566 + - 18567 + - uid: 18578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18575 + - 18570 + - uid: 18592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18604 + - 18603 + - 18607 + - 18606 + - uid: 18593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18604 + - 18603 + - 18607 + - 18606 + - uid: 18594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18604 + - 18603 + - 18685 + - 18687 + - uid: 18595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - 18685 + - 18687 + - uid: 18597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - 18688 + - 18691 + - uid: 18598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - 18615 + - 18611 + - uid: 18599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - 18615 + - 18611 + - uid: 18600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - 18615 + - 18611 + - uid: 18601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - uid: 18602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - uid: 18608 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - 18604 + - 18603 + - uid: 18609 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18607 + - 18606 + - uid: 18616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18615 + - 18611 + - uid: 18617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18615 + - 18611 + - uid: 18618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18615 + - 18611 + - uid: 18619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18615 + - 18611 + - uid: 18620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18623 + - uid: 18621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18623 + - uid: 18622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18623 + - uid: 18627 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18625 + - 18644 + - uid: 18628 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18625 + - 18644 + - uid: 18629 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 18630 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 18634 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18645 + - 18653 + - 18652 + - uid: 18635 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18651 + - 18650 + - 18653 + - 18652 + - uid: 18636 + components: + - type: Transform + pos: 39.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18651 + - 18650 + - 18653 + - 18652 + - uid: 18637 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18653 + - 18652 + - uid: 18638 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18653 + - 18652 + - 18657 + - 18658 + - uid: 18639 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18651 + - 18650 + - uid: 18640 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18651 + - 18650 + - uid: 18660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18662 + - 18663 + - 18679 + - 18678 + - uid: 18661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18662 + - 18663 + - 18684 + - uid: 18698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - 18697 + - uid: 20975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18625 + - 18644 + - uid: 21457 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21456 + - 21463 + - 21460 + - uid: 23052 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23057 + - 23056 + - 23060 + - uid: 23053 + components: + - type: Transform + pos: 8.5,0.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23057 + - 23056 + - 23060 + - uid: 23054 + components: + - type: Transform + pos: 0.5,0.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23057 + - 23056 + - uid: 23055 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23057 + - 23056 + - uid: 23518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18625 + - 18644 + - uid: 23678 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23682 + - 23681 + - 23680 + - 23679 + - uid: 23685 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23683 + - 23682 + - 23681 + - 23726 + - uid: 23686 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23683 + - 23682 + - 23681 + - 23726 + - uid: 23687 + components: + - type: Transform + pos: -1.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23683 + - 23726 + - uid: 24087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24092 + - 24091 + - 18331 + - 18332 + - uid: 24089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24092 + - 24091 + - 18331 + - 18332 + - uid: 24090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24092 + - 24091 + - 18331 + - 18332 + - uid: 24132 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18331 + - 18332 + - 13483 + - 23235 + - uid: 24155 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18582 + - 24225 +- proto: Fireplace + entities: + - uid: 1588 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 +- proto: Flash + entities: + - uid: 3047 + components: + - type: Transform + pos: 27.246397,4.5923347 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 6771 + components: + - type: Transform + pos: 22.393808,34.78612 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: 22.560474,34.525703 + parent: 2 +- proto: FloorDrain + entities: + - uid: 424 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-40.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-40.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,22.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 10266 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11838 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 19080 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorWaterEntity + entities: + - uid: 469 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 2 + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 2 + - uid: 792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 2 + - uid: 793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-17.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 2 + - uid: 798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 2 +- proto: FloraTree01 + entities: + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5666814,-12.321836 + parent: 2 +- proto: FloraTree02 + entities: + - uid: 701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.082345,-4.3614655 + parent: 2 + - uid: 1270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.184713,-4.775162 + parent: 2 +- proto: FloraTree04 + entities: + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.0979695,-6.455215 + parent: 2 +- proto: FloraTree06 + entities: + - uid: 699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.990485,-6.654935 + parent: 2 +- proto: FloraTreeLarge02 + entities: + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.2074294,14.294214 + parent: 2 +- proto: FloraTreeLarge03 + entities: + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.346696,-4.0470867 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.4804606,6.6058865 + parent: 2 + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.4804606,6.6058865 + parent: 2 +- proto: FloraTreeLarge06 + entities: + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.506318,-8.567612 + parent: 2 + - uid: 710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.426181,8.49734 + parent: 2 +- proto: FlyAmanitaSeeds + entities: + - uid: 19122 + components: + - type: Transform + pos: -51.51439,-42.355965 + parent: 2 +- proto: FolderSpawner + entities: + - uid: 2276 + components: + - type: Transform + pos: -35.49943,-33.436256 + parent: 2 + - uid: 3602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.457253,-2.5569518 + parent: 2 + - uid: 3603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.551003,-8.3069515 + parent: 2 + - uid: 5855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.999363,5.621146 + parent: 2 + - uid: 10480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5742838,-52.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: 58.45381,19.547539 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: 58.594437,19.375664 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: 61.54756,18.703789 + parent: 2 + - uid: 19044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.373814,-51.42048 + parent: 2 + - uid: 22767 + components: + - type: Transform + pos: 9.572723,6.6391907 + parent: 21002 +- proto: FoodBakedCookieOatmeal + entities: + - uid: 23380 + components: + - type: Transform + pos: -37.591827,-43.593525 + parent: 2 + - uid: 23381 + components: + - type: Transform + pos: -37.591827,-43.593525 + parent: 2 + - uid: 23382 + components: + - type: Transform + pos: -37.435577,-43.624775 + parent: 2 + - uid: 23383 + components: + - type: Transform + pos: -37.591827,-43.593525 + parent: 2 + - uid: 23384 + components: + - type: Transform + pos: -37.435577,-43.624775 + parent: 2 + - uid: 23385 + components: + - type: Transform + pos: -37.435577,-43.624775 + parent: 2 +- proto: FoodBowlBig + entities: + - uid: 23405 + components: + - type: Transform + pos: 4.5200243,-53.818302 + parent: 2 + - uid: 23406 + components: + - type: Transform + pos: 4.5200243,-53.818302 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 5743 + components: + - type: Transform + pos: 30.532213,-11.218129 + parent: 2 +- proto: FoodBreadBaguette + entities: + - uid: 23368 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 13.504139,14.672895 + parent: 2 +- proto: FoodBurgerRobot + entities: + - uid: 13066 + components: + - type: Transform + pos: 58.54756,18.703789 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,20.5 + parent: 2 +- proto: FoodCheeseSlice + entities: + - uid: 23369 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 14.493722,13.735395 + parent: 2 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 3399 + components: + - type: Transform + parent: 10787 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9650 + components: + - type: Transform + pos: -4.6769786,22.726046 + parent: 2 +- proto: FoodContainerEgg + entities: + - uid: 3393 + components: + - type: Transform + parent: 10787 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCornTrash + entities: + - uid: 23754 + components: + - type: Transform + pos: 13.403409,29.562233 + parent: 2 +- proto: FoodLemon + entities: + - uid: 16683 + components: + - type: Transform + pos: 16.203493,37.700985 + parent: 2 +- proto: FoodLime + entities: + - uid: 16682 + components: + - type: Transform + pos: 16.30766,37.544735 + parent: 2 +- proto: FoodMealMilkape + entities: + - uid: 24019 + components: + - type: Transform + pos: -37.487473,-71.52999 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 1587 + components: + - type: Transform + pos: 4.5200243,-54.48497 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 4.5200243,-54.48497 + parent: 2 + - uid: 23364 + components: + - type: Transform + pos: 13.597889,13.735395 + parent: 2 + - uid: 23365 + components: + - type: Transform + pos: 14.399972,14.568729 + parent: 2 +- proto: FoodPlateSmallPlastic + entities: + - uid: 2249 + components: + - type: Transform + pos: -41.38972,-45.43678 + parent: 2 + - uid: 23379 + components: + - type: Transform + pos: -37.508495,-43.551857 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 2295 + components: + - type: Transform + pos: -30.666796,-40.46122 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -40.573044,-46.42997 + parent: 2 + - uid: 3064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.359505,-14.364776 + parent: 2 +- proto: FoodSaladWatermelonFruitBowl + entities: + - uid: 19127 + components: + - type: Transform + pos: 43.496872,41.775906 + parent: 2 +- proto: FoodSnackChips + entities: + - uid: 3595 + components: + - type: Transform + pos: 23.980179,16.619486 + parent: 2 +- proto: FoodSnackPistachios + entities: + - uid: 3596 + components: + - type: Transform + pos: 23.433304,16.119486 + parent: 2 +- proto: FoodSnackRaisins + entities: + - uid: 23377 + components: + - type: Transform + pos: -37.529327,-42.520607 + parent: 2 + - uid: 23378 + components: + - type: Transform + pos: -37.352245,-42.760193 + parent: 2 + - uid: 28310 + components: + - type: Transform + pos: -7.485779,15.599967 + parent: 21002 +- proto: FoodSoupClown + entities: + - uid: 2267 + components: + - type: Transform + pos: -31.419064,-45.393246 + parent: 2 +- proto: FoodSoupVegetable + entities: + - uid: 19180 + components: + - type: Transform + pos: -34.484306,-51.296925 + parent: 2 +- proto: FoodWatermelon + entities: + - uid: 19149 + components: + - type: Transform + pos: 44.67743,42.845352 + parent: 2 +- proto: FoodWatermelonSlice + entities: + - uid: 19144 + components: + - type: Transform + pos: 42.670483,36.532852 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: 43.219093,36.539795 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: 43.85104,36.532852 + parent: 2 + - uid: 19147 + components: + - type: Transform + pos: 44.35104,36.553684 + parent: 2 +- proto: FuelDispenser + entities: + - uid: 5354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 5802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.452118,6.067984 + parent: 2 + - uid: 9444 + components: + - type: Transform + pos: -28.32716,43.59443 + parent: 2 + - uid: 9445 + components: + - type: Transform + pos: -31.405285,43.610054 + parent: 2 + - uid: 9449 + components: + - type: Transform + pos: -24.321604,23.554502 + parent: 2 + - uid: 9790 + components: + - type: Transform + pos: 11.568965,-33.58079 + parent: 2 +- proto: GasFilter + entities: + - uid: 8630 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasFilterFlipped + entities: + - uid: 15676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 8884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,21.5 + parent: 2 +- proto: GasMinerNitrogenStation + entities: + - uid: 27893 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 21002 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 8526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,11.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 27890 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 21002 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 8525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,13.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 8883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,19.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 8670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21595 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 21141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 21002 + - type: GasMixer + inletTwoConcentration: 0.22 + inletOneConcentration: 0.78 + targetPressure: 501.325 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasOutletInjector + entities: + - uid: 8124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,51.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 5579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,13.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,50.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,31.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,29.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,11.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,19.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,21.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,23.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,25.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,9.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,21.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: -39.5,40.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-34.5 + parent: 2 + - uid: 21136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 21002 + - uid: 21138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 21002 + - uid: 21226 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 21002 + - uid: 21227 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 21002 + - uid: 21230 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 21002 + - uid: 22205 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 21002 + - uid: 23960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,6.5 + parent: 21002 + - uid: 25218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-44.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25254 + components: + - type: Transform + pos: -6.5,29.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,16.5 + parent: 21002 + - uid: 26658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,5.5 + parent: 21002 + - uid: 27300 + components: + - type: Transform + pos: 52.5,16.5 + parent: 21002 +- proto: GasPipeBend + entities: + - uid: 3203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5461 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,42.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,42.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,46.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,46.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: -17.5,46.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,42.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,52.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,42.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,41.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,52.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,41.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,50.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,51.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,51.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,51.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,46.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,12.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,10.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,12.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,16.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,18.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,20.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,22.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,24.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,28.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,30.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,12.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8695 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8740 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9390 + components: + - type: Transform + pos: 17.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9405 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,37.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,35.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + pos: -33.5,35.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + pos: -32.5,37.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11907 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13242 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13577 + components: + - type: Transform + pos: -27.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13721 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13744 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13745 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13748 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13752 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13753 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13756 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13757 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13766 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13774 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13775 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13947 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13960 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14068 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14116 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14279 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14303 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14400 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14425 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14582 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14729 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14761 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14930 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14984 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14985 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15126 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15285 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15456 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 15601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15666 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15721 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15795 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15803 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15807 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15837 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15922 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15925 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16123 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16135 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16143 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16144 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16235 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16255 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16256 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16352 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16374 + components: + - type: Transform + pos: 18.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16418 + components: + - type: Transform + pos: 7.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16420 + components: + - type: Transform + pos: 8.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16444 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16471 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 17112 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18433 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18434 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 19077 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19078 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 21002 + - uid: 21698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,23.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,23.5 + parent: 2 + - uid: 22036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,23.5 + parent: 2 + - uid: 22274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,24.5 + parent: 2 + - uid: 22483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,26.5 + parent: 2 + - uid: 23498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,26.5 + parent: 2 + - uid: 23499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,27.5 + parent: 2 + - uid: 23500 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 24293 + components: + - type: Transform + pos: 13.5,5.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25289 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 26449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 26461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 26472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 27820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeFourway + entities: + - uid: 666 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 667 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7765 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13152 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13182 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13206 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13216 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13268 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13317 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13387 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13459 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13479 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13518 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13521 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13536 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13854 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13887 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14073 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14298 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14316 + components: + - type: Transform + pos: 44.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14453 + components: + - type: Transform + pos: 42.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14477 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14696 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14697 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14790 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14796 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14811 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15381 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15619 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15620 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15656 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15677 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 15744 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15745 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15855 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16019 + components: + - type: Transform + pos: -0.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16265 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21173 + components: + - type: Transform + pos: 3.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22664 + components: + - type: Transform + pos: 13.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeStraight + entities: + - uid: 1093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2762 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3202 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6240 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7732 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: -24.5,40.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,40.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,40.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,50.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,52.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,50.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,52.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,45.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,45.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: -17.5,45.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,43.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: -17.5,43.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,51.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,38.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,39.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + pos: -24.5,39.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,46.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,46.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,42.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,43.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,40.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,41.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,40.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,40.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,40.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,40.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,40.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,40.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,40.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,40.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,41.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,42.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,42.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,42.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,41.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,50.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,50.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,50.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,50.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,50.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,52.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,52.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,52.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,52.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,52.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,46.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,46.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,46.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,51.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,51.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,51.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,11.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,13.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,19.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,21.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,23.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,25.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,29.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,31.5 + parent: 2 + - uid: 8543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,11.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,23.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,25.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,29.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,31.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,31.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,29.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,25.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,23.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,21.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,19.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,11.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,10.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,10.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,10.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,10.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,10.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,12.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,12.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,12.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,12.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,12.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,16.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,16.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,16.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,18.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,18.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,18.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,18.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,18.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,20.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,20.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,22.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,22.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,22.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,24.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,24.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,24.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,24.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,28.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,28.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,28.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,28.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,28.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,30.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,30.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,30.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,30.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8653 + components: + - type: Transform + pos: -36.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8655 + components: + - type: Transform + pos: -36.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,19.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,21.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,23.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,29.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,31.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,13.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,12.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,12.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,13.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8716 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8717 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8718 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8719 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8720 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8721 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8722 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8723 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8724 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8725 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8726 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8727 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8728 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8729 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8730 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8731 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8732 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8733 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8734 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8735 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8736 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8737 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8741 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8742 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8743 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8744 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8745 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8746 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8747 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8748 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8749 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8750 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,9.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,9.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,37.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8973 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8974 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8975 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8976 + components: + - type: Transform + pos: -26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8978 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8979 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8980 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8981 + components: + - type: Transform + pos: -26.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8982 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8983 + components: + - type: Transform + pos: -26.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8985 + components: + - type: Transform + pos: -26.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8986 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8987 + components: + - type: Transform + pos: -26.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8988 + components: + - type: Transform + pos: -26.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9413 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9414 + components: + - type: Transform + pos: 0.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9415 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9416 + components: + - type: Transform + pos: 0.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9417 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9418 + components: + - type: Transform + pos: 0.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9420 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9421 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,35.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,35.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,35.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,35.5 + parent: 2 + - uid: 9607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,35.5 + parent: 2 + - uid: 9609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,37.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,37.5 + parent: 2 + - uid: 9613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,37.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,37.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,37.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,38.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,39.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,36.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,37.5 + parent: 2 + - uid: 9624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,38.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,39.5 + parent: 2 + - uid: 9626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,34.5 + parent: 2 + - uid: 9627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,33.5 + parent: 2 + - uid: 9628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,32.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,31.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,36.5 + parent: 2 + - uid: 9631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,35.5 + parent: 2 + - uid: 9632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,34.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,33.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,32.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,31.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-32.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10390 + components: + - type: Transform + pos: 1.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11032 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11033 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11034 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11035 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11286 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13227 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13232 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13233 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13248 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13249 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13250 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13251 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13252 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13253 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13254 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13255 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13257 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13260 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13261 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13262 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13263 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13264 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13265 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13266 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13267 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13269 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13274 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13275 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13276 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13277 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13278 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13279 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13280 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13283 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13284 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13285 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13286 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13287 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13288 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13290 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13292 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13293 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13294 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13297 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13298 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13299 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13300 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13301 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13302 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13303 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13304 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13305 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13306 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13307 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13308 + components: + - type: Transform + pos: 1.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13309 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13310 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13311 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13312 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13314 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13315 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13316 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13318 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13319 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13320 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13321 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13322 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13323 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13325 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13326 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13328 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13329 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13330 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13331 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13332 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13333 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13334 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13336 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13337 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13340 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13341 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13342 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13343 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13344 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13345 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13346 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13348 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13349 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13352 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13353 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13354 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13355 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13356 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13357 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13358 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13561 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13562 + components: + - type: Transform + pos: -27.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13563 + components: + - type: Transform + pos: -27.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13564 + components: + - type: Transform + pos: -27.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13565 + components: + - type: Transform + pos: -27.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13566 + components: + - type: Transform + pos: -27.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13567 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13568 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13569 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13570 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13571 + components: + - type: Transform + pos: -26.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13572 + components: + - type: Transform + pos: -26.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13573 + components: + - type: Transform + pos: -26.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13574 + components: + - type: Transform + pos: -26.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13575 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13589 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13661 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13686 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13687 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13711 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13712 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13713 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13714 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13715 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13716 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13717 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13718 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13719 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13720 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13728 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13729 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13730 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13731 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13732 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13739 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13740 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13741 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13762 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13877 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13879 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13880 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13881 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13882 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13883 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13884 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13885 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13886 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13920 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13921 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13922 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13923 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13924 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13925 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13926 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13927 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13928 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13929 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13930 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14007 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14064 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14065 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14066 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14067 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14069 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14070 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14071 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14072 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14082 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14083 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14084 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14085 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14086 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14087 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14090 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14091 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14092 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14093 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14094 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14095 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14096 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14097 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14098 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14099 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14100 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14101 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14102 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14103 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14104 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14105 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14106 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14107 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14108 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14109 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14110 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14111 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14112 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14113 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14114 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14126 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14133 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14134 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14135 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14136 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14137 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14138 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14139 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14141 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14142 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14143 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14144 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14145 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14146 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14147 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14148 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14149 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14150 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14151 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14162 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14163 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14164 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14224 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14225 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14226 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14227 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14228 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14229 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14231 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14232 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14233 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14234 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14244 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14245 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14246 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14263 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14264 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14265 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14267 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14268 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14269 + components: + - type: Transform + pos: 53.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14270 + components: + - type: Transform + pos: 53.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14271 + components: + - type: Transform + pos: 53.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14272 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14274 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14304 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14305 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14306 + components: + - type: Transform + pos: 52.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14307 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14331 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14332 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14333 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14346 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14347 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14348 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14349 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14358 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14359 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14360 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14385 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14386 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14387 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14388 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14389 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14390 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14401 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14414 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14415 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14416 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14417 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14418 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14419 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14420 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14421 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14422 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14423 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14461 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14462 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14463 + components: + - type: Transform + pos: 42.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14464 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14465 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14475 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14483 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14484 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14485 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14486 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14487 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14489 + components: + - type: Transform + pos: 46.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14490 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14491 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14507 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14509 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14562 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14573 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14583 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14584 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14585 + components: + - type: Transform + pos: 33.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14586 + components: + - type: Transform + pos: 33.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14587 + components: + - type: Transform + pos: 33.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14588 + components: + - type: Transform + pos: 33.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14589 + components: + - type: Transform + pos: 33.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14590 + components: + - type: Transform + pos: 33.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14591 + components: + - type: Transform + pos: 33.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14592 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14593 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14594 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14595 + components: + - type: Transform + pos: 36.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14596 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14597 + components: + - type: Transform + pos: 36.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14598 + components: + - type: Transform + pos: 36.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14599 + components: + - type: Transform + pos: 36.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14600 + components: + - type: Transform + pos: 36.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14601 + components: + - type: Transform + pos: 36.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14613 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14616 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14617 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14618 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14619 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14620 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14621 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14623 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14624 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14691 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14692 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14693 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14694 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14695 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14698 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14699 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14700 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14701 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14702 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14703 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14717 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14718 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14719 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14742 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14743 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14744 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14745 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14746 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14747 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14757 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14758 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14759 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14760 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14762 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14908 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14909 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14910 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14911 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14912 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14913 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14914 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14915 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14916 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14917 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14918 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14919 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14920 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14921 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14931 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15016 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15017 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15018 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15019 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15021 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15022 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15023 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15024 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15025 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15027 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15084 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15085 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15086 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15087 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15088 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15089 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15090 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15091 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15092 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15093 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15094 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15095 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15096 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15097 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15098 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15099 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15100 + components: + - type: Transform + pos: -55.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15101 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15102 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15103 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15104 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15119 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15169 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15170 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15171 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15172 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15173 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15174 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15175 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15176 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15199 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15200 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15201 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15202 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15203 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15204 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15221 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15222 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15248 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15251 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15252 + components: + - type: Transform + pos: -42.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15253 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15254 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15255 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15256 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15257 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15258 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15259 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15281 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15282 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15283 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15284 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15349 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15350 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15352 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15353 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15354 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15355 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15388 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15389 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15390 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15392 + components: + - type: Transform + pos: -19.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15393 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15394 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15395 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15396 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15405 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15442 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15443 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15448 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15449 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15450 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15451 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15452 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15453 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15454 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15457 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15471 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15472 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15473 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15474 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15475 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15485 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15486 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15487 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15634 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15635 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15636 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15637 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15638 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15639 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15640 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15641 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15662 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15663 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 15668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 15680 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15682 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15683 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15684 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15685 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15686 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15715 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 15718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15722 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15738 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15739 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15746 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15826 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15830 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15831 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15834 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15835 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15836 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15838 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15839 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15841 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15842 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15843 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15844 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15845 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15846 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15847 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15867 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15868 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15869 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15870 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15871 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15872 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15873 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15874 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15875 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15876 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15877 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15878 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15879 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15880 + components: + - type: Transform + pos: -32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15881 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15882 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15883 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15884 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15885 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15886 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15887 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15906 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15907 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15908 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15909 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15910 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16145 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16146 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16147 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16176 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16177 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16178 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16271 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16289 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16290 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16303 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16338 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16339 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16340 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16378 + components: + - type: Transform + pos: 18.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16379 + components: + - type: Transform + pos: 18.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16398 + components: + - type: Transform + pos: 10.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16399 + components: + - type: Transform + pos: 10.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16405 + components: + - type: Transform + pos: 7.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16426 + components: + - type: Transform + pos: 7.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16427 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16428 + components: + - type: Transform + pos: 7.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16429 + components: + - type: Transform + pos: 8.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16430 + components: + - type: Transform + pos: 8.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16431 + components: + - type: Transform + pos: 8.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16473 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16478 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16479 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16480 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16481 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16517 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16518 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16913 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 17114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 17291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18428 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18429 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18430 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19075 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19076 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19079 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21142 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 21002 + - uid: 21144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21160 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21161 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21162 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21163 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21164 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21654 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 22320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22458 + components: + - type: Transform + pos: 13.5,1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22459 + components: + - type: Transform + pos: 13.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22460 + components: + - type: Transform + pos: 13.5,3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22461 + components: + - type: Transform + pos: 13.5,4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22462 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22463 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22464 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22465 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22466 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22467 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22468 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22469 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22470 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23501 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - uid: 23502 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-44.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25244 + components: + - type: Transform + pos: -6.5,27.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25245 + components: + - type: Transform + pos: -6.5,28.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25246 + components: + - type: Transform + pos: -6.5,25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25247 + components: + - type: Transform + pos: -6.5,24.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25248 + components: + - type: Transform + pos: -6.5,23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25249 + components: + - type: Transform + pos: -6.5,22.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25250 + components: + - type: Transform + pos: -6.5,21.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25251 + components: + - type: Transform + pos: -6.5,20.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25252 + components: + - type: Transform + pos: -6.5,19.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25253 + components: + - type: Transform + pos: -6.5,18.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25291 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25325 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25326 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25327 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-22.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 26548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 26554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 28263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 28264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 28265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 28266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 28267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeTJunction + entities: + - uid: 737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 3284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 4566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5635 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5636 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6673 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 6765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,44.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,44.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,44.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,40.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,40.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,51.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,36.5 + parent: 2 + - uid: 8738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8768 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9404 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9730 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10577 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11287 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13151 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13177 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13178 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13180 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13192 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13202 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13247 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13370 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13376 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13383 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13389 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13400 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13406 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13411 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13420 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13435 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13441 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13448 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13491 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13507 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13514 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13576 + components: + - type: Transform + pos: -26.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13586 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13738 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13749 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13915 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14115 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14275 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14276 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14288 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14289 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14299 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14315 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14380 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14470 + components: + - type: Transform + pos: 45.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14543 + components: + - type: Transform + pos: 36.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14848 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14850 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14928 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14965 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14969 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15303 + components: + - type: Transform + pos: -47.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15304 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15331 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15363 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15364 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15385 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15403 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15404 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15470 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15484 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 15674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 15679 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15681 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15693 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15694 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16026 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16174 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16175 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16264 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16274 + components: + - type: Transform + pos: 25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16301 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16302 + components: + - type: Transform + pos: 26.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16308 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16315 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16320 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16397 + components: + - type: Transform + pos: 10.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16451 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16472 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 17113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18432 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21172 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 2 + - uid: 22671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22978 + components: + - type: Transform + pos: 19.5,0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-25.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27898 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 27901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 27938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPort + entities: + - uid: 1675 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,43.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,51.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,37.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-35.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-35.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-35.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,15.5 + parent: 21002 + - uid: 22269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,6.5 + parent: 21002 + - uid: 23542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 24296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-7.5 + parent: 21002 + - uid: 24527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 21002 + - uid: 25225 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 21002 + - uid: 25868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,16.5 + parent: 21002 + - uid: 26557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,5.5 + parent: 21002 + - uid: 26596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-17.5 + parent: 21002 + - uid: 26671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-31.5 + parent: 21002 +- proto: GasPressurePump + entities: + - uid: 8671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9752 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-33.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,25.5 + parent: 2 + - uid: 23065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' + - uid: 23527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 21002 + - type: GasPressurePump + targetPressure: 501.325 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 3286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,25.5 + parent: 2 + - uid: 9281 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 9011 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15687 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#BB55BBFF' +- proto: GasThermoMachineHeater + entities: + - uid: 3287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 +- proto: GasThermoMachineHeaterEnabled + entities: + - uid: 9012 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasValve + entities: + - uid: 8100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,43.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,43.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,50.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,52.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + pos: -24.5,37.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + pos: -23.5,37.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 8691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,9.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,37.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - type: GasValve + open: False + - uid: 9760 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - type: GasValve + open: False + - uid: 9761 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - type: GasValve + open: False +- proto: GasVentPump + entities: + - uid: 1922 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5583 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18270 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11291 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23235 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18258 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18645 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23679 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18501 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18570 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18570 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18567 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18564 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13598 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23679 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23683 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18285 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18287 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18287 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13869 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13870 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13871 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14006 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18644 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18644 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18650 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14391 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18652 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18658 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23907 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23907 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18463 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18469 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14741 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18478 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14748 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18480 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18482 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18663 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14922 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18678 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14923 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18667 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 14990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15028 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18582 + - 18583 + - 18584 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18587 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18584 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15117 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18328 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15150 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18317 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15250 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18623 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18338 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15326 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24091 + - 18331 + - 18332 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15415 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15416 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18690 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23927 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5583 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15512 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18603 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15652 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18603 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18691 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18606 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15776 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15789 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15790 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18687 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15827 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15899 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15900 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 15912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18240 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18240 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-81.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18244 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-81.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18242 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18244 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18242 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18530 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18536 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18541 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16335 + components: + - type: Transform + pos: 34.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18553 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16447 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16448 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16484 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18288 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18288 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18272 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16489 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18273 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18271 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18303 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18305 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18332 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18333 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18336 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16530 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18366 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16532 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10169 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16542 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18263 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18247 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18499 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 16774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18440 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18443 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18411 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 18654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18658 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 19072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23056 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23056 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23060 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22666 + components: + - type: Transform + pos: 14.5,5.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22872 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23704 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23682 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 23900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 24526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 21002 + - uid: 25217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-44.5 + parent: 21002 + - uid: 27894 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 28268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 412 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5583 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8128 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,52.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18258 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18501 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13502 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18570 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18570 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18567 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13595 + components: + - type: Transform + pos: -17.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18564 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13599 + components: + - type: Transform + pos: -10.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23679 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13600 + components: + - type: Transform + pos: -0.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23679 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23683 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13656 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18285 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18287 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13767 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18287 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13873 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13874 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13875 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13876 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13901 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14005 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14020 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14074 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14131 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18644 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18644 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18645 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14374 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18644 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14383 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18650 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14392 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14452 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18652 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18658 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23907 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23907 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14629 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14644 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18463 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18469 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14740 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18478 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14749 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18480 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14766 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14767 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18482 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18663 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14925 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18678 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14926 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18667 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14989 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15029 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18582 + - 18583 + - 18584 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18587 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18584 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15118 + components: + - type: Transform + pos: -48.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18328 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15148 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18317 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15247 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15249 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18623 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15287 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15289 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18338 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15325 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24091 + - 18331 + - 18332 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15387 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18690 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23927 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5583 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15461 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15512 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18603 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15654 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18603 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18691 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18606 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15775 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15787 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15788 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18611 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15797 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18687 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15828 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15903 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15904 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15905 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15934 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18240 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16031 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16032 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18240 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-81.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18242 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-81.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18244 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18244 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18242 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16137 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16238 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18530 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18536 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18541 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16336 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16337 + components: + - type: Transform + pos: 35.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16402 + components: + - type: Transform + pos: 18.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9410 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16432 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18553 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16450 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18288 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16483 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18288 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18272 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18273 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18270 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18271 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16498 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18303 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16503 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18305 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18332 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18333 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18336 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18366 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10169 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18263 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18247 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18499 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23235 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18440 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18409 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18443 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18658 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23056 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21184 + components: + - type: Transform + pos: 3.5,1.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23056 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 21002 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 23060 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23682 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-44.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25292 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25293 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21456 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-29.5 + parent: 21002 + - type: DeviceNetwork + deviceLists: + - 21371 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 26474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,3.5 + parent: 21002 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVolumePump + entities: + - uid: 8104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,45.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: -18.5,45.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 2740 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 +- proto: GlowstickYellow + entities: + - uid: 26771 + components: + - type: Transform + parent: 26770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26772 + components: + - type: Transform + parent: 26770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26773 + components: + - type: Transform + parent: 26770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26774 + components: + - type: Transform + parent: 26770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26775 + components: + - type: Transform + parent: 26770 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26776 + components: + - type: Transform + parent: 26770 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrassBattlemap + entities: + - uid: 9690 + components: + - type: Transform + pos: 24.054735,15.237508 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 2149 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 23063 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 21002 +- proto: Grille + entities: + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,2.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 42.5,-23.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - uid: 747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-17.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-17.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-18.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-13.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-12.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-13.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-39.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-39.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-38.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-34.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-32.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-24.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-24.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-25.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-24.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-25.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-24.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-30.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-33.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-33.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-37.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-38.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-40.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-42.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-42.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-39.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-2.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,17.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,17.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-21.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-22.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: -58.5,-25.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-3.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-3.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-3.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-14.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-9.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-10.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-11.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-14.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-14.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-13.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-12.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-11.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-10.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-9.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,22.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-22.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-22.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-19.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-19.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-19.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-19.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-19.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-19.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-22.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-24.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-22.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-22.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-22.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-36.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-18.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-24.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-28.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-28.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-28.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-28.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-28.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-28.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-28.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-26.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-37.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-37.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-38.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-38.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-39.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-39.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-30.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-39.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-39.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-39.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-39.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-39.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-39.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-39.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-39.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-38.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-35.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-30.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-30.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-30.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-30.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-30.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-22.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-21.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-21.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-31.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-35.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-35.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-35.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-35.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-32.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-37.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-37.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-37.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-37.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-22.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-22.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-22.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-60.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-60.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-61.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-61.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-59.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-58.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-57.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-56.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-55.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-54.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-54.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-55.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-56.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-57.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-58.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-59.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-60.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-60.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-52.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-50.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-48.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-48.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-50.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-52.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,2.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,38.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,37.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,34.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,31.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,34.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,34.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,36.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,38.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,40.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,25.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,25.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,40.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,41.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,42.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,44.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,54.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,54.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,54.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,54.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,54.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,51.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,51.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,51.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,51.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,51.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,51.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,51.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,51.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,47.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,54.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,54.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,54.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,54.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,54.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,54.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,54.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,54.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,54.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,54.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,54.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,54.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,54.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,53.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,53.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,69.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,69.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,70.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,63.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,52.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,54.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,55.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,56.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,57.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,58.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,64.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,65.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,66.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,67.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,68.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,69.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,70.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,70.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,70.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,70.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,70.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,69.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,70.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,70.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,70.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,70.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,70.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,69.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,68.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,67.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,66.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,65.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,64.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,63.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,61.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,60.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,59.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,58.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,70.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,70.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: -1.5,48.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,49.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,50.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,51.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,44.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,44.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,44.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,43.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,42.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,41.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,54.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,54.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,54.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,54.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,54.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,54.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,52.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,53.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,53.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,52.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,50.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,30.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,30.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,30.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,30.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,30.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,30.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,30.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,30.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,30.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,32.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,31.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,32.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,34.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,51.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,53.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,52.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,53.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,53.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,52.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,51.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,50.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,48.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,48.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,47.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,45.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,44.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,44.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,44.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + pos: -25.5,54.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + pos: -25.5,48.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: -25.5,49.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,45.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,46.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + pos: -25.5,51.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + pos: -25.5,52.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,44.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,44.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,44.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,44.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,53.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,51.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,47.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,42.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,41.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,36.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,35.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,37.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,38.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,38.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,38.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,33.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,32.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,31.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,30.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,29.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,28.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,27.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,26.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,25.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,24.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,23.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,21.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,20.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,19.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,18.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,17.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,16.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,15.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,14.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,13.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,12.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,11.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,10.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,9.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: -39.5,31.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: -22.5,32.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,24.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2 + - uid: 9385 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,48.5 + parent: 2 + - uid: 9492 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 9493 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 9496 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + pos: -43.5,-45.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + pos: -43.5,-44.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + pos: -43.5,-43.5 + parent: 2 + - uid: 9502 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,42.5 + parent: 2 + - uid: 9595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,42.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,42.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,41.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,40.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,39.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,38.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,38.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,38.5 + parent: 2 + - uid: 9700 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 9822 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-27.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-27.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-47.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-48.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-51.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-51.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-50.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-49.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-44.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-46.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-50.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-49.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-48.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-47.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-46.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 10455 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 10459 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 2 + - uid: 10788 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-55.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-55.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: -47.5,39.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + pos: -47.5,3.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + pos: -40.5,45.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: -41.5,45.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: -39.5,45.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,13.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,13.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,13.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,9.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,9.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,1.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,2.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-0.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-0.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-3.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-6.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-6.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-16.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,4.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-18.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-18.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-20.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-20.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + pos: -50.5,-53.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 + - uid: 11520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-19.5 + parent: 2 + - uid: 11522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-22.5 + parent: 2 + - uid: 11523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 11825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-15.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-39.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-38.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-33.5 + parent: 2 + - uid: 12477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-55.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-55.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-55.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-55.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,11.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,13.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,12.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,14.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,16.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,20.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,24.5 + parent: 2 + - uid: 12705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,24.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,21.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,20.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,19.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,13.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,12.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,11.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,11.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,11.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,11.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,11.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,11.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,11.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,11.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,11.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,24.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,24.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,24.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,24.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,24.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,22.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,23.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-6.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-6.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-6.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-1.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-1.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,0.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,1.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,1.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,1.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,0.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,5.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,5.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,5.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,5.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,43.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-2.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-70.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-63.5 + parent: 2 + - uid: 16035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-63.5 + parent: 2 + - uid: 16036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-63.5 + parent: 2 + - uid: 16037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-63.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-63.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-63.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-63.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-63.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-64.5 + parent: 2 + - uid: 16043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-65.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-66.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-64.5 + parent: 2 + - uid: 16046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-65.5 + parent: 2 + - uid: 16047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-66.5 + parent: 2 + - uid: 16048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-71.5 + parent: 2 + - uid: 16049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-72.5 + parent: 2 + - uid: 16050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-73.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-70.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-71.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-72.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-73.5 + parent: 2 + - uid: 16055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-78.5 + parent: 2 + - uid: 16056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-77.5 + parent: 2 + - uid: 16057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-78.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-77.5 + parent: 2 + - uid: 16059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-80.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-81.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-82.5 + parent: 2 + - uid: 16062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-80.5 + parent: 2 + - uid: 16063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-81.5 + parent: 2 + - uid: 16064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-82.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-83.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-83.5 + parent: 2 + - uid: 16067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-83.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-82.5 + parent: 2 + - uid: 16069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-81.5 + parent: 2 + - uid: 16070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-80.5 + parent: 2 + - uid: 16071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-78.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-76.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-75.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-74.5 + parent: 2 + - uid: 16075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-72.5 + parent: 2 + - uid: 16076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-71.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-69.5 + parent: 2 + - uid: 16078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-68.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-67.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-65.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-64.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-62.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-61.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-60.5 + parent: 2 + - uid: 16085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-59.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-60.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-61.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-62.5 + parent: 2 + - uid: 16090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-64.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-65.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-67.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-68.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-69.5 + parent: 2 + - uid: 16095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-71.5 + parent: 2 + - uid: 16096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-72.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-74.5 + parent: 2 + - uid: 16098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-75.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-76.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-78.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-80.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-81.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-82.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-83.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-83.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-83.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-57.5 + parent: 2 + - uid: 16109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-57.5 + parent: 2 + - uid: 16150 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,44.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,48.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,42.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-45.5 + parent: 2 + - uid: 16971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-43.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-2.5 + parent: 2 + - uid: 18558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-47.5 + parent: 2 + - uid: 18674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 2 + - uid: 18675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 2 + - uid: 18680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-36.5 + parent: 2 + - uid: 18681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-34.5 + parent: 2 + - uid: 18682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-32.5 + parent: 2 + - uid: 18683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-32.5 + parent: 2 + - uid: 19540 + components: + - type: Transform + pos: -50.5,-52.5 + parent: 2 + - uid: 19541 + components: + - type: Transform + pos: -47.5,-56.5 + parent: 2 + - uid: 19875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-67.5 + parent: 2 + - uid: 19876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-72.5 + parent: 2 + - uid: 19877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-72.5 + parent: 2 + - uid: 19878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-72.5 + parent: 2 + - uid: 19879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-72.5 + parent: 2 + - uid: 19880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-72.5 + parent: 2 + - uid: 19881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-72.5 + parent: 2 + - uid: 19882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-72.5 + parent: 2 + - uid: 19883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-72.5 + parent: 2 + - uid: 19884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-72.5 + parent: 2 + - uid: 19887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-72.5 + parent: 2 + - uid: 19888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-72.5 + parent: 2 + - uid: 19889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-72.5 + parent: 2 + - uid: 19890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-72.5 + parent: 2 + - uid: 19891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-72.5 + parent: 2 + - uid: 19892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-71.5 + parent: 2 + - uid: 19893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-70.5 + parent: 2 + - uid: 19894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-69.5 + parent: 2 + - uid: 19895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-67.5 + parent: 2 + - uid: 19896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-67.5 + parent: 2 + - uid: 19897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-67.5 + parent: 2 + - uid: 19899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-65.5 + parent: 2 + - uid: 19900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-64.5 + parent: 2 + - uid: 19901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-63.5 + parent: 2 + - uid: 19902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-62.5 + parent: 2 + - uid: 19903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-61.5 + parent: 2 + - uid: 19904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-60.5 + parent: 2 + - uid: 19907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-57.5 + parent: 2 + - uid: 19908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-56.5 + parent: 2 + - uid: 19909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-55.5 + parent: 2 + - uid: 19910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-54.5 + parent: 2 + - uid: 19911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-53.5 + parent: 2 + - uid: 19912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-52.5 + parent: 2 + - uid: 19913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-51.5 + parent: 2 + - uid: 19960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-47.5 + parent: 2 + - uid: 19963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-46.5 + parent: 2 + - uid: 19964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-44.5 + parent: 2 + - uid: 19969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-44.5 + parent: 2 + - uid: 19976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-48.5 + parent: 2 + - uid: 19977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-48.5 + parent: 2 + - uid: 20137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-61.5 + parent: 2 + - uid: 20141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-61.5 + parent: 2 + - uid: 20142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-61.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-60.5 + parent: 2 + - uid: 20144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-59.5 + parent: 2 + - uid: 20145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-58.5 + parent: 2 + - uid: 20146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-61.5 + parent: 2 + - uid: 20147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-61.5 + parent: 2 + - uid: 20148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-61.5 + parent: 2 + - uid: 20149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-61.5 + parent: 2 + - uid: 20150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-61.5 + parent: 2 + - uid: 20151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-61.5 + parent: 2 + - uid: 20152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-61.5 + parent: 2 + - uid: 20153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-61.5 + parent: 2 + - uid: 20154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-61.5 + parent: 2 + - uid: 20155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-61.5 + parent: 2 + - uid: 20156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-61.5 + parent: 2 + - uid: 20157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-61.5 + parent: 2 + - uid: 20158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-61.5 + parent: 2 + - uid: 20160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-59.5 + parent: 2 + - uid: 20161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-58.5 + parent: 2 + - uid: 20162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-57.5 + parent: 2 + - uid: 20163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-56.5 + parent: 2 + - uid: 20164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-55.5 + parent: 2 + - uid: 20165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-51.5 + parent: 2 + - uid: 20166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-52.5 + parent: 2 + - uid: 20167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-53.5 + parent: 2 + - uid: 20168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-50.5 + parent: 2 + - uid: 20169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-49.5 + parent: 2 + - uid: 20170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-48.5 + parent: 2 + - uid: 20171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-47.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-18.5 + parent: 2 + - uid: 20238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-17.5 + parent: 2 + - uid: 20239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-13.5 + parent: 2 + - uid: 20240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-12.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-11.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-10.5 + parent: 2 + - uid: 20243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,16.5 + parent: 2 + - uid: 20244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,19.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,15.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - uid: 20248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,23.5 + parent: 2 + - uid: 20249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,24.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - uid: 20251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,27.5 + parent: 2 + - uid: 20252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,28.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,37.5 + parent: 2 + - uid: 20348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,23.5 + parent: 2 + - uid: 20349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,23.5 + parent: 2 + - uid: 20350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,23.5 + parent: 2 + - uid: 20351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,23.5 + parent: 2 + - uid: 20352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,23.5 + parent: 2 + - uid: 20353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,23.5 + parent: 2 + - uid: 20354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,23.5 + parent: 2 + - uid: 20355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,25.5 + parent: 2 + - uid: 20356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,26.5 + parent: 2 + - uid: 20357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,27.5 + parent: 2 + - uid: 20358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,29.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,32.5 + parent: 2 + - uid: 20360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,33.5 + parent: 2 + - uid: 20361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,34.5 + parent: 2 + - uid: 20362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,35.5 + parent: 2 + - uid: 20363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,37.5 + parent: 2 + - uid: 20364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,37.5 + parent: 2 + - uid: 20365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,37.5 + parent: 2 + - uid: 20366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,37.5 + parent: 2 + - uid: 20367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,34.5 + parent: 2 + - uid: 20368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,37.5 + parent: 2 + - uid: 20369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,37.5 + parent: 2 + - uid: 20370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,37.5 + parent: 2 + - uid: 20371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,37.5 + parent: 2 + - uid: 20372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,37.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,37.5 + parent: 2 + - uid: 20374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,37.5 + parent: 2 + - uid: 20375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,37.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,37.5 + parent: 2 + - uid: 20377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,37.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,37.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,37.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,37.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,37.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,43.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,42.5 + parent: 2 + - uid: 20384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,41.5 + parent: 2 + - uid: 20385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,39.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,39.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,33.5 + parent: 2 + - uid: 20485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,28.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,28.5 + parent: 2 + - uid: 20562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,52.5 + parent: 2 + - uid: 20563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,40.5 + parent: 2 + - uid: 20564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,43.5 + parent: 2 + - uid: 20565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,34.5 + parent: 2 + - uid: 20566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,33.5 + parent: 2 + - uid: 20567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,32.5 + parent: 2 + - uid: 20568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,31.5 + parent: 2 + - uid: 20569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,36.5 + parent: 2 + - uid: 20570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,36.5 + parent: 2 + - uid: 20571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,25.5 + parent: 2 + - uid: 20572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,24.5 + parent: 2 + - uid: 20573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,23.5 + parent: 2 + - uid: 20574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,22.5 + parent: 2 + - uid: 20575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,15.5 + parent: 2 + - uid: 20576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,15.5 + parent: 2 + - uid: 20577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,15.5 + parent: 2 + - uid: 20578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,15.5 + parent: 2 + - uid: 20579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,14.5 + parent: 2 + - uid: 20580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,12.5 + parent: 2 + - uid: 20581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,12.5 + parent: 2 + - uid: 20582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,11.5 + parent: 2 + - uid: 20583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,10.5 + parent: 2 + - uid: 20584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,9.5 + parent: 2 + - uid: 20585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,4.5 + parent: 2 + - uid: 20586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,5.5 + parent: 2 + - uid: 20587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,6.5 + parent: 2 + - uid: 20588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,53.5 + parent: 2 + - uid: 20589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,54.5 + parent: 2 + - uid: 20590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,54.5 + parent: 2 + - uid: 20591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,46.5 + parent: 2 + - uid: 20592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,56.5 + parent: 2 + - uid: 20593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,56.5 + parent: 2 + - uid: 20594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,56.5 + parent: 2 + - uid: 20595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,56.5 + parent: 2 + - uid: 20596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,56.5 + parent: 2 + - uid: 20598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,75.5 + parent: 2 + - uid: 20599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,75.5 + parent: 2 + - uid: 20600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,75.5 + parent: 2 + - uid: 20601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,75.5 + parent: 2 + - uid: 20602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,75.5 + parent: 2 + - uid: 20603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,75.5 + parent: 2 + - uid: 20604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,75.5 + parent: 2 + - uid: 20605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,75.5 + parent: 2 + - uid: 20606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,72.5 + parent: 2 + - uid: 20607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,71.5 + parent: 2 + - uid: 20608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,69.5 + parent: 2 + - uid: 20609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,68.5 + parent: 2 + - uid: 21071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 21002 + - uid: 21072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 21002 + - uid: 21073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 21002 + - uid: 21074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 21002 + - uid: 21075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 21002 + - uid: 21076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 21002 + - uid: 21077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 21002 + - uid: 21080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 21002 + - uid: 21081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 21002 + - uid: 21082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 21002 + - uid: 21083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 21002 + - uid: 21084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 21002 + - uid: 21085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 21002 + - uid: 21339 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 21002 + - uid: 21341 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 21002 + - uid: 21342 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 21002 + - uid: 21433 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 21002 + - uid: 21434 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 21002 + - uid: 21445 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 21002 + - uid: 21446 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 21002 + - uid: 21510 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 21002 + - uid: 21511 + components: + - type: Transform + pos: 24.5,0.5 + parent: 21002 + - uid: 22862 + components: + - type: Transform + pos: -7.5,14.5 + parent: 21002 + - uid: 22863 + components: + - type: Transform + pos: -6.5,14.5 + parent: 21002 + - uid: 22878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 21002 + - uid: 22937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 21002 + - uid: 22938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 21002 + - uid: 22939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 21002 + - uid: 22940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 21002 + - uid: 22941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 21002 + - uid: 22942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 21002 + - uid: 22943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 21002 + - uid: 22944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 21002 + - uid: 22945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 21002 + - uid: 22946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 21002 + - uid: 22947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 21002 + - uid: 22948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 21002 + - uid: 22949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 21002 + - uid: 22969 + components: + - type: Transform + pos: -3.5,17.5 + parent: 21002 + - uid: 22970 + components: + - type: Transform + pos: -3.5,16.5 + parent: 21002 + - uid: 22980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 21002 + - uid: 22987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 21002 + - uid: 22988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 21002 + - uid: 22989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 21002 + - uid: 22990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 21002 + - uid: 22991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 21002 + - uid: 22992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 21002 + - uid: 22993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 21002 + - uid: 22994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 21002 + - uid: 22995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 21002 + - uid: 22996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 21002 + - uid: 22997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 21002 + - uid: 22998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 21002 + - uid: 23506 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 23507 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 23544 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 23545 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 23546 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 23547 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 23548 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 23611 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 23931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 21002 + - uid: 23932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 21002 + - uid: 23933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 21002 + - uid: 23934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 21002 + - uid: 23935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 21002 + - uid: 23936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 21002 + - uid: 23937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 21002 + - uid: 23938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-32.5 + parent: 21002 + - uid: 23939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-32.5 + parent: 21002 + - uid: 23940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 21002 + - uid: 23941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 21002 + - uid: 23942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 21002 + - uid: 23943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 21002 + - uid: 23944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-29.5 + parent: 21002 + - uid: 23945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-28.5 + parent: 21002 + - uid: 23950 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 21002 + - uid: 23951 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 21002 + - uid: 23955 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 21002 + - uid: 23956 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 21002 + - uid: 23957 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 21002 + - uid: 23958 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 21002 + - uid: 23959 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 21002 + - uid: 23961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-31.5 + parent: 21002 + - uid: 23962 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 21002 + - uid: 23963 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 21002 + - uid: 23964 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 21002 + - uid: 23965 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 21002 + - uid: 23966 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 21002 + - uid: 23967 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 21002 + - uid: 23968 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 21002 + - uid: 23975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 21002 + - uid: 23976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-28.5 + parent: 21002 + - uid: 23977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 21002 + - uid: 23978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-31.5 + parent: 21002 + - uid: 23979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-31.5 + parent: 21002 + - uid: 23992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-27.5 + parent: 21002 + - uid: 23996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 21002 + - uid: 23997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-23.5 + parent: 21002 + - uid: 23998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 21002 + - uid: 24133 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 24138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,4.5 + parent: 2 + - uid: 24139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,4.5 + parent: 2 + - uid: 24271 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 24272 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 24273 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 2 + - uid: 24274 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 24275 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 2 + - uid: 24276 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 2 + - uid: 24277 + components: + - type: Transform + pos: 15.5,-52.5 + parent: 2 + - uid: 24278 + components: + - type: Transform + pos: 14.5,-52.5 + parent: 2 + - uid: 24279 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 24280 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + pos: -5.5,14.5 + parent: 21002 + - uid: 24320 + components: + - type: Transform + pos: -9.5,17.5 + parent: 21002 + - uid: 24322 + components: + - type: Transform + pos: -9.5,16.5 + parent: 21002 + - uid: 24441 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 21002 + - uid: 24442 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 21002 + - uid: 24447 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 21002 + - uid: 24448 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 21002 + - uid: 24449 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 21002 + - uid: 24452 + components: + - type: Transform + pos: 18.5,-47.5 + parent: 21002 + - uid: 24453 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 21002 + - uid: 24499 + components: + - type: Transform + pos: 36.5,66.5 + parent: 21002 + - uid: 24500 + components: + - type: Transform + pos: 35.5,66.5 + parent: 21002 + - uid: 24501 + components: + - type: Transform + pos: 33.5,65.5 + parent: 21002 + - uid: 24502 + components: + - type: Transform + pos: 32.5,65.5 + parent: 21002 + - uid: 24503 + components: + - type: Transform + pos: 31.5,65.5 + parent: 21002 + - uid: 24504 + components: + - type: Transform + pos: 29.5,64.5 + parent: 21002 + - uid: 24506 + components: + - type: Transform + pos: 27.5,64.5 + parent: 21002 + - uid: 24507 + components: + - type: Transform + pos: 25.5,63.5 + parent: 21002 + - uid: 24508 + components: + - type: Transform + pos: 24.5,63.5 + parent: 21002 + - uid: 24509 + components: + - type: Transform + pos: 22.5,62.5 + parent: 21002 + - uid: 24510 + components: + - type: Transform + pos: 21.5,62.5 + parent: 21002 + - uid: 24511 + components: + - type: Transform + pos: 19.5,61.5 + parent: 21002 + - uid: 24512 + components: + - type: Transform + pos: 17.5,60.5 + parent: 21002 + - uid: 24513 + components: + - type: Transform + pos: 15.5,59.5 + parent: 21002 + - uid: 24514 + components: + - type: Transform + pos: 13.5,58.5 + parent: 21002 + - uid: 24516 + components: + - type: Transform + pos: 8.5,55.5 + parent: 21002 + - uid: 24518 + components: + - type: Transform + pos: 1.5,47.5 + parent: 21002 + - uid: 24519 + components: + - type: Transform + pos: 0.5,45.5 + parent: 21002 + - uid: 24521 + components: + - type: Transform + pos: -2.5,40.5 + parent: 21002 + - uid: 24522 + components: + - type: Transform + pos: -3.5,38.5 + parent: 21002 + - uid: 24523 + components: + - type: Transform + pos: -4.5,36.5 + parent: 21002 + - uid: 24524 + components: + - type: Transform + pos: -5.5,34.5 + parent: 21002 + - uid: 24525 + components: + - type: Transform + pos: -5.5,33.5 + parent: 21002 + - uid: 24528 + components: + - type: Transform + pos: -3.5,37.5 + parent: 21002 + - uid: 24529 + components: + - type: Transform + pos: -2.5,41.5 + parent: 21002 + - uid: 24530 + components: + - type: Transform + pos: -0.5,43.5 + parent: 21002 + - uid: 24531 + components: + - type: Transform + pos: -0.5,44.5 + parent: 21002 + - uid: 24532 + components: + - type: Transform + pos: 0.5,44.5 + parent: 21002 + - uid: 24533 + components: + - type: Transform + pos: 3.5,49.5 + parent: 21002 + - uid: 24534 + components: + - type: Transform + pos: 2.5,49.5 + parent: 21002 + - uid: 24535 + components: + - type: Transform + pos: 4.5,51.5 + parent: 21002 + - uid: 24536 + components: + - type: Transform + pos: 4.5,52.5 + parent: 21002 + - uid: 24537 + components: + - type: Transform + pos: 5.5,53.5 + parent: 21002 + - uid: 24538 + components: + - type: Transform + pos: 6.5,53.5 + parent: 21002 + - uid: 24539 + components: + - type: Transform + pos: 7.5,54.5 + parent: 21002 + - uid: 24540 + components: + - type: Transform + pos: 7.5,55.5 + parent: 21002 + - uid: 24541 + components: + - type: Transform + pos: 10.5,57.5 + parent: 21002 + - uid: 24542 + components: + - type: Transform + pos: 14.5,58.5 + parent: 21002 + - uid: 24543 + components: + - type: Transform + pos: 14.5,59.5 + parent: 21002 + - uid: 24545 + components: + - type: Transform + pos: 18.5,61.5 + parent: 21002 + - uid: 24546 + components: + - type: Transform + pos: 23.5,62.5 + parent: 21002 + - uid: 24547 + components: + - type: Transform + pos: 23.5,63.5 + parent: 21002 + - uid: 24548 + components: + - type: Transform + pos: 30.5,64.5 + parent: 21002 + - uid: 25281 + components: + - type: Transform + pos: 57.5,-43.5 + parent: 21002 + - uid: 25282 + components: + - type: Transform + pos: 58.5,-43.5 + parent: 21002 + - uid: 25283 + components: + - type: Transform + pos: 59.5,-43.5 + parent: 21002 + - uid: 25284 + components: + - type: Transform + pos: 64.5,-42.5 + parent: 21002 + - uid: 25340 + components: + - type: Transform + pos: 63.5,-42.5 + parent: 21002 + - uid: 25341 + components: + - type: Transform + pos: 60.5,-43.5 + parent: 21002 + - uid: 25342 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 21002 + - uid: 25343 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 21002 + - uid: 25345 + components: + - type: Transform + pos: 38.5,-44.5 + parent: 21002 + - uid: 25346 + components: + - type: Transform + pos: 62.5,-42.5 + parent: 21002 + - uid: 26628 + components: + - type: Transform + pos: 26.5,5.5 + parent: 21002 + - uid: 26647 + components: + - type: Transform + pos: 24.5,4.5 + parent: 21002 + - uid: 27066 + components: + - type: Transform + pos: 54.5,-44.5 + parent: 21002 + - uid: 28079 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 21002 + - uid: 28080 + components: + - type: Transform + pos: 67.5,-41.5 + parent: 21002 + - uid: 28081 + components: + - type: Transform + pos: 69.5,-40.5 + parent: 21002 + - uid: 28083 + components: + - type: Transform + pos: 71.5,-40.5 + parent: 21002 + - uid: 28084 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 21002 + - uid: 28085 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 21002 + - uid: 28086 + components: + - type: Transform + pos: 76.5,-38.5 + parent: 21002 + - uid: 28087 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 21002 + - uid: 28088 + components: + - type: Transform + pos: 78.5,-36.5 + parent: 21002 + - uid: 28090 + components: + - type: Transform + pos: 81.5,-35.5 + parent: 21002 + - uid: 28091 + components: + - type: Transform + pos: 81.5,-34.5 + parent: 21002 + - uid: 28092 + components: + - type: Transform + pos: 83.5,-33.5 + parent: 21002 + - uid: 28093 + components: + - type: Transform + pos: 82.5,-33.5 + parent: 21002 + - uid: 28094 + components: + - type: Transform + pos: 84.5,-32.5 + parent: 21002 + - uid: 28095 + components: + - type: Transform + pos: 83.5,-32.5 + parent: 21002 + - uid: 28096 + components: + - type: Transform + pos: 85.5,-31.5 + parent: 21002 + - uid: 28097 + components: + - type: Transform + pos: 85.5,-30.5 + parent: 21002 + - uid: 28098 + components: + - type: Transform + pos: 86.5,-30.5 + parent: 21002 + - uid: 28099 + components: + - type: Transform + pos: 86.5,-29.5 + parent: 21002 + - uid: 28100 + components: + - type: Transform + pos: 87.5,-28.5 + parent: 21002 + - uid: 28101 + components: + - type: Transform + pos: 88.5,-28.5 + parent: 21002 + - uid: 28103 + components: + - type: Transform + pos: 89.5,-26.5 + parent: 21002 + - uid: 28104 + components: + - type: Transform + pos: 89.5,-25.5 + parent: 21002 + - uid: 28105 + components: + - type: Transform + pos: 90.5,-23.5 + parent: 21002 + - uid: 28106 + components: + - type: Transform + pos: 90.5,-24.5 + parent: 21002 + - uid: 28107 + components: + - type: Transform + pos: 91.5,-21.5 + parent: 21002 + - uid: 28109 + components: + - type: Transform + pos: 93.5,-17.5 + parent: 21002 + - uid: 28110 + components: + - type: Transform + pos: 93.5,-16.5 + parent: 21002 + - uid: 28111 + components: + - type: Transform + pos: 94.5,-14.5 + parent: 21002 + - uid: 28112 + components: + - type: Transform + pos: 94.5,-13.5 + parent: 21002 + - uid: 28114 + components: + - type: Transform + pos: 95.5,-12.5 + parent: 21002 + - uid: 28115 + components: + - type: Transform + pos: 95.5,-12.5 + parent: 21002 + - uid: 28117 + components: + - type: Transform + pos: 95.5,2.5 + parent: 21002 + - uid: 28124 + components: + - type: Transform + pos: 95.5,4.5 + parent: 21002 + - uid: 28125 + components: + - type: Transform + pos: 95.5,5.5 + parent: 21002 + - uid: 28128 + components: + - type: Transform + pos: 95.5,6.5 + parent: 21002 + - uid: 28139 + components: + - type: Transform + pos: 95.5,7.5 + parent: 21002 + - uid: 28140 + components: + - type: Transform + pos: 95.5,8.5 + parent: 21002 + - uid: 28141 + components: + - type: Transform + pos: 95.5,11.5 + parent: 21002 + - uid: 28142 + components: + - type: Transform + pos: 95.5,12.5 + parent: 21002 + - uid: 28144 + components: + - type: Transform + pos: 95.5,14.5 + parent: 21002 + - uid: 28145 + components: + - type: Transform + pos: 95.5,15.5 + parent: 21002 + - uid: 28146 + components: + - type: Transform + pos: 95.5,16.5 + parent: 21002 + - uid: 28147 + components: + - type: Transform + pos: 95.5,17.5 + parent: 21002 + - uid: 28149 + components: + - type: Transform + pos: 95.5,19.5 + parent: 21002 + - uid: 28154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,39.5 + parent: 21002 + - uid: 28156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,35.5 + parent: 21002 + - uid: 28157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,36.5 + parent: 21002 + - uid: 28158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 94.5,37.5 + parent: 21002 + - uid: 28159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,40.5 + parent: 21002 + - uid: 28160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,41.5 + parent: 21002 + - uid: 28162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,43.5 + parent: 21002 + - uid: 28163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,46.5 + parent: 21002 + - uid: 28164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,47.5 + parent: 21002 + - uid: 28165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,49.5 + parent: 21002 + - uid: 28166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,51.5 + parent: 21002 + - uid: 28168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,55.5 + parent: 21002 + - uid: 28169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,55.5 + parent: 21002 + - uid: 28170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,57.5 + parent: 21002 + - uid: 28171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,58.5 + parent: 21002 + - uid: 28172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,58.5 + parent: 21002 + - uid: 28173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 83.5,59.5 + parent: 21002 + - uid: 28175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,60.5 + parent: 21002 + - uid: 28176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,61.5 + parent: 21002 + - uid: 28177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,62.5 + parent: 21002 + - uid: 28178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,62.5 + parent: 21002 + - uid: 28179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,62.5 + parent: 21002 + - uid: 28180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,63.5 + parent: 21002 + - uid: 28181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,64.5 + parent: 21002 + - uid: 28182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,64.5 + parent: 21002 + - uid: 28184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,64.5 + parent: 21002 + - uid: 28185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,65.5 + parent: 21002 + - uid: 28186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,65.5 + parent: 21002 + - uid: 28187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,65.5 + parent: 21002 + - uid: 28188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,65.5 + parent: 21002 + - uid: 28189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,65.5 + parent: 21002 + - uid: 28190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,66.5 + parent: 21002 + - uid: 28192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,66.5 + parent: 21002 + - uid: 28193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,66.5 + parent: 21002 + - uid: 28194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,66.5 + parent: 21002 + - uid: 28195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,66.5 + parent: 21002 + - uid: 28196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,66.5 + parent: 21002 + - uid: 28197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,66.5 + parent: 21002 + - uid: 28199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,66.5 + parent: 21002 + - uid: 28200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,66.5 + parent: 21002 +- proto: GrilleBroken + entities: + - uid: 22881 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 21002 + - uid: 24497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,66.5 + parent: 21002 + - uid: 24563 + components: + - type: Transform + pos: 6.5,54.5 + parent: 21002 + - uid: 24564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,54.5 + parent: 21002 + - uid: 24565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,56.5 + parent: 21002 + - uid: 24566 + components: + - type: Transform + pos: 9.5,56.5 + parent: 21002 + - uid: 24567 + components: + - type: Transform + pos: 1.5,48.5 + parent: 21002 + - uid: 24568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,48.5 + parent: 21002 + - uid: 24569 + components: + - type: Transform + pos: 0.5,46.5 + parent: 21002 + - uid: 24570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,46.5 + parent: 21002 + - uid: 24571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,41.5 + parent: 21002 + - uid: 24572 + components: + - type: Transform + pos: -1.5,43.5 + parent: 21002 + - uid: 24578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,32.5 + parent: 21002 + - uid: 28201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,66.5 + parent: 21002 + - uid: 28207 + components: + - type: Transform + pos: 95.5,-10.5 + parent: 21002 + - uid: 28223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,34.5 + parent: 21002 +- proto: GrilleDiagonal + entities: + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 2 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 23946 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 21002 + - uid: 23947 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 21002 + - uid: 23948 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 21002 + - uid: 23949 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 21002 + - uid: 23952 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 21002 + - uid: 23953 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 21002 + - uid: 23969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 21002 + - uid: 23970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 21002 + - uid: 23971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 21002 + - uid: 23972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-14.5 + parent: 21002 + - uid: 23973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 21002 + - uid: 23974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 21002 +- proto: GrilleSpawner + entities: + - uid: 2296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-7.5 + parent: 2 + - uid: 19885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-73.5 + parent: 2 + - uid: 19886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-72.5 + parent: 2 + - uid: 19898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-67.5 + parent: 2 + - uid: 19905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-59.5 + parent: 2 + - uid: 19906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-58.5 + parent: 2 + - uid: 19914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-50.5 + parent: 2 + - uid: 19915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-49.5 + parent: 2 + - uid: 19916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-66.5 + parent: 2 + - uid: 19917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-67.5 + parent: 2 + - uid: 19918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-68.5 + parent: 2 + - uid: 19919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-72.5 + parent: 2 + - uid: 19920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-72.5 + parent: 2 + - uid: 19921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-72.5 + parent: 2 + - uid: 20159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-60.5 + parent: 2 + - uid: 20172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-46.5 + parent: 2 + - uid: 20173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-51.5 + parent: 2 + - uid: 20174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-54.5 + parent: 2 + - uid: 20175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-61.5 + parent: 2 + - uid: 20176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-61.5 + parent: 2 + - uid: 20177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-61.5 + parent: 2 + - uid: 20178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-61.5 + parent: 2 + - uid: 20179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-61.5 + parent: 2 + - uid: 20180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-61.5 + parent: 2 + - uid: 20181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-61.5 + parent: 2 + - uid: 20182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-57.5 + parent: 2 + - uid: 20183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-56.5 + parent: 2 + - uid: 20597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-7.5 + parent: 2 + - uid: 20610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-15.5 + parent: 2 + - uid: 20611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,19.5 + parent: 2 + - uid: 20612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,8.5 + parent: 2 + - uid: 20613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,5.5 + parent: 2 + - uid: 20614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,13.5 + parent: 2 + - uid: 20615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,15.5 + parent: 2 + - uid: 20616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,12.5 + parent: 2 + - uid: 20618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,28.5 + parent: 2 + - uid: 20619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,30.5 + parent: 2 + - uid: 20620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,31.5 + parent: 2 + - uid: 20621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,56.5 + parent: 2 + - uid: 20622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,37.5 + parent: 2 + - uid: 20623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,45.5 + parent: 2 + - uid: 20624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,45.5 + parent: 2 + - uid: 20625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,44.5 + parent: 2 + - uid: 20626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,46.5 + parent: 2 + - uid: 20627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,51.5 + parent: 2 + - uid: 20628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,52.5 + parent: 2 + - uid: 20629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,46.5 + parent: 2 + - uid: 20630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,37.5 + parent: 2 + - uid: 20631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,56.5 + parent: 2 + - uid: 20632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,75.5 + parent: 2 + - uid: 20633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,75.5 + parent: 2 + - uid: 20634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,70.5 + parent: 2 + - uid: 20635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,73.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,75.5 + parent: 2 + - uid: 20637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,29.5 + parent: 2 + - uid: 20638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,31.5 + parent: 2 + - uid: 20639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,28.5 + parent: 2 + - uid: 20640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,36.5 + parent: 2 + - uid: 20641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,37.5 + parent: 2 + - uid: 20642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,37.5 + parent: 2 + - uid: 20643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,37.5 + parent: 2 + - uid: 20644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,6.5 + parent: 2 + - uid: 20645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,20.5 + parent: 2 + - uid: 20646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,17.5 + parent: 2 + - uid: 20648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-9.5 + parent: 2 + - uid: 20649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-18.5 + parent: 2 + - uid: 23980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-32.5 + parent: 21002 + - uid: 23981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-18.5 + parent: 21002 + - uid: 23982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-19.5 + parent: 21002 + - uid: 23983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-22.5 + parent: 21002 + - uid: 23984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-29.5 + parent: 21002 + - uid: 23985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-31.5 + parent: 21002 + - uid: 23986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 21002 + - uid: 23987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 21002 + - uid: 23989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-18.5 + parent: 21002 + - uid: 23990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-14.5 + parent: 21002 + - uid: 23991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 21002 + - uid: 23993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 21002 + - uid: 23994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 21002 + - uid: 24281 + components: + - type: Transform + pos: -39.5,-72.5 + parent: 2 + - uid: 24282 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 + - uid: 24283 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 + - uid: 24284 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 2 + - uid: 24285 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 2 + - uid: 24286 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 2 + - uid: 24287 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - uid: 24288 + components: + - type: Transform + pos: 11.5,-61.5 + parent: 2 + - uid: 24289 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 2 + - uid: 24290 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 + - uid: 24291 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 24292 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - uid: 24550 + components: + - type: Transform + pos: 34.5,66.5 + parent: 21002 + - uid: 24551 + components: + - type: Transform + pos: 34.5,65.5 + parent: 21002 + - uid: 24552 + components: + - type: Transform + pos: 30.5,65.5 + parent: 21002 + - uid: 24553 + components: + - type: Transform + pos: 26.5,64.5 + parent: 21002 + - uid: 24554 + components: + - type: Transform + pos: 26.5,63.5 + parent: 21002 + - uid: 24555 + components: + - type: Transform + pos: 20.5,62.5 + parent: 21002 + - uid: 24556 + components: + - type: Transform + pos: 20.5,61.5 + parent: 21002 + - uid: 24557 + components: + - type: Transform + pos: 16.5,60.5 + parent: 21002 + - uid: 24558 + components: + - type: Transform + pos: 16.5,59.5 + parent: 21002 + - uid: 24559 + components: + - type: Transform + pos: 12.5,58.5 + parent: 21002 + - uid: 24560 + components: + - type: Transform + pos: 12.5,57.5 + parent: 21002 + - uid: 24561 + components: + - type: Transform + pos: 9.5,55.5 + parent: 21002 + - uid: 24562 + components: + - type: Transform + pos: 10.5,56.5 + parent: 21002 + - uid: 24573 + components: + - type: Transform + pos: -3.5,39.5 + parent: 21002 + - uid: 24574 + components: + - type: Transform + pos: -2.5,39.5 + parent: 21002 + - uid: 24575 + components: + - type: Transform + pos: -4.5,37.5 + parent: 21002 + - uid: 24576 + components: + - type: Transform + pos: -5.5,35.5 + parent: 21002 + - uid: 24577 + components: + - type: Transform + pos: -4.5,35.5 + parent: 21002 + - uid: 28116 + components: + - type: Transform + pos: 94.5,-12.5 + parent: 21002 + - uid: 28118 + components: + - type: Transform + pos: 93.5,-15.5 + parent: 21002 + - uid: 28119 + components: + - type: Transform + pos: 93.5,-18.5 + parent: 21002 + - uid: 28120 + components: + - type: Transform + pos: 92.5,-18.5 + parent: 21002 + - uid: 28121 + components: + - type: Transform + pos: 92.5,-20.5 + parent: 21002 + - uid: 28122 + components: + - type: Transform + pos: 91.5,-20.5 + parent: 21002 + - uid: 28126 + components: + - type: Transform + pos: 88.5,-26.5 + parent: 21002 + - uid: 28127 + components: + - type: Transform + pos: 87.5,-29.5 + parent: 21002 + - uid: 28129 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 21002 + - uid: 28130 + components: + - type: Transform + pos: 80.5,-35.5 + parent: 21002 + - uid: 28131 + components: + - type: Transform + pos: 80.5,-36.5 + parent: 21002 + - uid: 28132 + components: + - type: Transform + pos: 75.5,-38.5 + parent: 21002 + - uid: 28133 + components: + - type: Transform + pos: 75.5,-39.5 + parent: 21002 + - uid: 28134 + components: + - type: Transform + pos: 61.5,-42.5 + parent: 21002 + - uid: 28135 + components: + - type: Transform + pos: 61.5,-43.5 + parent: 21002 + - uid: 28136 + components: + - type: Transform + pos: 56.5,-43.5 + parent: 21002 + - uid: 28137 + components: + - type: Transform + pos: 56.5,-44.5 + parent: 21002 + - uid: 28138 + components: + - type: Transform + pos: 65.5,-41.5 + parent: 21002 + - uid: 28150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,10.5 + parent: 21002 + - uid: 28151 + components: + - type: Transform + pos: 95.5,9.5 + parent: 21002 + - uid: 28152 + components: + - type: Transform + pos: 95.5,1.5 + parent: 21002 + - uid: 28153 + components: + - type: Transform + pos: 95.5,20.5 + parent: 21002 + - uid: 28202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,66.5 + parent: 21002 + - uid: 28203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,66.5 + parent: 21002 + - uid: 28204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,66.5 + parent: 21002 + - uid: 28205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,66.5 + parent: 21002 + - uid: 28206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,65.5 + parent: 21002 + - uid: 28208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,60.5 + parent: 21002 + - uid: 28209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,66.5 + parent: 21002 + - uid: 28210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,65.5 + parent: 21002 + - uid: 28211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,64.5 + parent: 21002 + - uid: 28212 + components: + - type: Transform + pos: 77.5,63.5 + parent: 21002 + - uid: 28213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,61.5 + parent: 21002 + - uid: 28215 + components: + - type: Transform + pos: 86.5,56.5 + parent: 21002 + - uid: 28216 + components: + - type: Transform + pos: 93.5,42.5 + parent: 21002 + - uid: 28217 + components: + - type: Transform + pos: 88.5,54.5 + parent: 21002 + - uid: 28218 + components: + - type: Transform + pos: 89.5,52.5 + parent: 21002 + - uid: 28219 + components: + - type: Transform + pos: 90.5,50.5 + parent: 21002 + - uid: 28221 + components: + - type: Transform + pos: 92.5,45.5 + parent: 21002 + - uid: 28222 + components: + - type: Transform + pos: 94.5,38.5 + parent: 21002 + - uid: 28224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.5,38.5 + parent: 21002 + - uid: 28225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,42.5 + parent: 21002 + - uid: 28228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 89.5,50.5 + parent: 21002 + - uid: 28230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,54.5 + parent: 21002 + - uid: 28231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,56.5 + parent: 21002 + - uid: 28232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,61.5 + parent: 21002 +- proto: GunSafeDisabler + entities: + - uid: 4271 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 4173 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 4187 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 +- proto: GunSafeShotgunKammerer + entities: + - uid: 4186 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 4188 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 11883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.610058,-20.487406 + parent: 2 +- proto: GyroscopeUnanchored + entities: + - uid: 9460 + components: + - type: Transform + pos: 28.5,46.5 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 11870 + components: + - type: Transform + pos: -52.703808,-19.987406 + parent: 2 + - uid: 11871 + components: + - type: Transform + pos: -52.328808,-19.956156 + parent: 2 + - uid: 22571 + components: + - type: Transform + parent: 22410 + - type: Physics + canCollide: False + - uid: 22573 + components: + - type: Transform + parent: 22424 + - type: Physics + canCollide: False + - uid: 23928 + components: + - type: Transform + parent: 22340 + - type: Physics + canCollide: False + - uid: 23930 + components: + - type: Transform + pos: 8.777603,7.3314342 + parent: 21002 +- proto: HandheldStationMap + entities: + - uid: 6701 + components: + - type: Transform + pos: 5.6160517,46.95252 + parent: 2 +- proto: HandheldStationMapUnpowered + entities: + - uid: 26627 + components: + - type: Transform + pos: 27.403412,4.6648846 + parent: 21002 +- proto: HandLabeler + entities: + - uid: 3488 + components: + - type: Transform + pos: 41.696266,-4.611898 + parent: 2 +- proto: HarmonicaInstrument + entities: + - uid: 23019 + components: + - type: Transform + pos: 13.469788,-8.50042 + parent: 21002 +- proto: HarpInstrument + entities: + - uid: 28321 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 8221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,47.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,48.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,49.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,50.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 445 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 11478 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + pos: 57.5,17.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 23600 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 23794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.3259854,40.57853 + parent: 2 + - uid: 28012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.769775,0.45135498 + parent: 21002 + - uid: 28072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.282562,0.54875755 + parent: 21002 + - uid: 28076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.553406,0.6529236 + parent: 21002 +- proto: HoloprojectorSecurity + entities: + - uid: 23392 + components: + - type: Transform + pos: 32.136696,-34.34107 + parent: 2 + - uid: 23393 + components: + - type: Transform + pos: 32.33461,-34.538986 + parent: 2 + - uid: 23394 + components: + - type: Transform + pos: 36.313778,-34.34107 + parent: 2 + - uid: 23395 + components: + - type: Transform + pos: 36.501278,-34.549404 + parent: 2 +- proto: HospitalCurtains + entities: + - uid: 2724 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-36.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-36.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-36.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-36.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-30.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-37.5 + parent: 2 + - uid: 22383 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 21002 + - uid: 23029 + components: + - type: Transform + pos: 13.5,7.5 + parent: 21002 + - uid: 23031 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 21002 + - uid: 24204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-37.5 + parent: 2 + - uid: 24205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-30.5 + parent: 2 + - uid: 24206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-37.5 + parent: 2 + - uid: 24207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-30.5 + parent: 2 +- proto: HotplateMachineCircuitboard + entities: + - uid: 5809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.671032,4.463667 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 1259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,18.5 + parent: 2 + - uid: 19119 + components: + - type: Transform + pos: -53.5,-44.5 + parent: 2 + - uid: 19120 + components: + - type: Transform + pos: -52.5,-44.5 + parent: 2 + - uid: 19121 + components: + - type: Transform + pos: -51.5,-44.5 + parent: 2 + - uid: 22435 + components: + - type: Transform + pos: 3.5,7.5 + parent: 21002 + - uid: 22436 + components: + - type: Transform + pos: 4.5,7.5 + parent: 21002 + - uid: 22441 + components: + - type: Transform + pos: 2.5,7.5 + parent: 21002 + - uid: 22443 + components: + - type: Transform + pos: 5.5,7.5 + parent: 21002 + - uid: 22444 + components: + - type: Transform + pos: 2.5,5.5 + parent: 21002 + - uid: 22445 + components: + - type: Transform + pos: 3.5,5.5 + parent: 21002 + - uid: 22446 + components: + - type: Transform + pos: 4.5,5.5 + parent: 21002 + - uid: 22447 + components: + - type: Transform + pos: 5.5,5.5 + parent: 21002 +- proto: HydroponicsToolClippers + entities: + - uid: 23037 + components: + - type: Transform + pos: 4.4140625,6.291479 + parent: 21002 +- proto: HydroponicsToolHatchet + entities: + - uid: 9652 + components: + - type: Transform + pos: 13.582126,20.627935 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 19125 + components: + - type: Transform + pos: -52.73314,-42.68409 + parent: 2 + - uid: 22449 + components: + - type: Transform + pos: 5.4725647,6.3096085 + parent: 21002 + - uid: 23419 + components: + - type: Transform + pos: 13.92272,20.573315 + parent: 2 + - uid: 23420 + components: + - type: Transform + pos: 15.037303,20.542065 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 21507 + components: + - type: Transform + pos: 25.4001,4.7600727 + parent: 21002 + - uid: 23039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.2161407,6.385229 + parent: 21002 +- proto: hydroponicsTray + entities: + - uid: 3261 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 +- proto: IceCrust + entities: + - uid: 5875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-18.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-18.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-18.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 11487 + components: + - type: Transform + pos: -46.551716,-18.419298 + parent: 2 +- proto: InflatableDoor + entities: + - uid: 27940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-3.5 + parent: 21002 + - uid: 28298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,14.5 + parent: 21002 + - uid: 28299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,13.5 + parent: 21002 + - uid: 28300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,5.5 + parent: 21002 +- proto: IngotGold + entities: + - uid: 11454 + components: + - type: Transform + pos: -46.648,-7.3827996 + parent: 2 +- proto: IngotSilver + entities: + - uid: 365 + components: + - type: Transform + pos: -47.467575,-7.3966436 + parent: 2 +- proto: IntercomAll + entities: + - uid: 12798 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,16.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,15.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 23422 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 23809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 5806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 2 + - uid: 23523 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 6192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 23520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-40.5 + parent: 2 + - uid: 23626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-33.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 23519 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 19008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-12.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 23522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 23808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 2 + - uid: 24129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 11979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 2 +- proto: JanitorServiceLight + entities: + - uid: 16214 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23779 + - uid: 16239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9774 + - uid: 23761 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23775 + - uid: 23762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23774 + - uid: 23763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23777 + - uid: 23764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23778 + - uid: 23766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23768 + - uid: 23770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23771 + - uid: 23772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23773 + - uid: 23780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23783 + - uid: 23781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18372 + - uid: 23784 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23785 + - uid: 24128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23776 +- proto: JetpackBlueFilled + entities: + - uid: 6124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.327637,4.278886 + parent: 2 + - uid: 6125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.702637,3.560136 + parent: 2 + - uid: 6126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.671387,4.466386 + parent: 2 + - uid: 6127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.40576,3.310136 + parent: 2 + - uid: 25365 + components: + - type: Transform + parent: 25364 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: JugWeldingFuel + entities: + - uid: 21351 + components: + - type: Transform + pos: 27.762161,4.780714 + parent: 21002 + - uid: 21388 + components: + - type: Transform + pos: 27.366318,4.822382 + parent: 21002 + - uid: 21391 + components: + - type: Transform + pos: 31.790726,1.3051796 + parent: 21002 +- proto: KitchenElectricGrill + entities: + - uid: 500 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 503 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 23025 + components: + - type: Transform + pos: 9.5,1.5 + parent: 21002 +- proto: KitchenReagentGrinder + entities: + - uid: 510 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 10583 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 23028 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 21002 +- proto: KitchenSpike + entities: + - uid: 433 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 2250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.54597,-45.99928 + parent: 2 +- proto: Lamp + entities: + - uid: 1579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.50761,-36.11044 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: 39.576233,21.87908 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.546173,-40.193848 + parent: 2 + - uid: 9899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.607558,-30.090584 + parent: 2 +- proto: LampBanana + entities: + - uid: 2262 + components: + - type: Transform + pos: -31.387814,-44.28387 + parent: 2 + - type: HandheldLight + toggleActionEntity: 2263 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 2263 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: LampGold + entities: + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.377337,-36.20955 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: 29.74325,21 + parent: 2 + - uid: 5854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.707695,6.069063 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: 3.4081588,44.633736 + parent: 2 + - type: HandheldLight + toggleActionEntity: 6624 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6624 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 7981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.434964,31.818977 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: -10.450589,38.881477 + parent: 2 + - uid: 7983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.3568397,38.850227 + parent: 2 + - uid: 12172 + components: + - type: Transform + pos: -38.44304,-13.217821 + parent: 2 + - uid: 12174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.583664,-21.061571 + parent: 2 + - uid: 15030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.21174,7.8971014 + parent: 2 + - uid: 15049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.4351,10.032746 + parent: 2 + - uid: 21431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.067581,-31.614372 + parent: 21002 + - uid: 23616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.414734,-33.23075 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 1046 + components: + - type: Transform + pos: 8.440077,-18.25892 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 31.482378,-15.953924 + parent: 2 +- proto: Lantern + entities: + - uid: 11658 + components: + - type: Transform + pos: -3.2863314,31.421535 + parent: 2 + - uid: 21705 + components: + - type: Transform + pos: 27.720627,0.7106495 + parent: 21002 + - uid: 21707 + components: + - type: Transform + pos: 27.376877,0.8825245 + parent: 21002 + - uid: 21708 + components: + - type: Transform + pos: 27.345627,0.6012745 + parent: 21002 +- proto: LightReplacer + entities: + - uid: 9677 + components: + - type: Transform + pos: 22.268173,-4.050702 + parent: 2 +- proto: LightTubeCrystalRed + entities: + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.466858,-7.376135 + parent: 2 +- proto: LockableButtonService + entities: + - uid: 4166 + components: + - type: MetaData + name: lizards + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 683: + - Pressed: DoorBolt + - uid: 23551 + components: + - type: MetaData + name: snakes + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 570: + - Pressed: DoorBolt + - uid: 23556 + components: + - type: MetaData + name: gorillas + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 684: + - Pressed: DoorBolt + - uid: 23557 + components: + - type: MetaData + name: space + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 682: + - Pressed: DoorBolt + - uid: 23558 + components: + - type: MetaData + name: monkeys + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 681: + - Pressed: DoorBolt + - uid: 23559 + components: + - type: MetaData + name: penguins + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 680: + - Pressed: DoorBolt +- proto: LockerAtmosphericsFilled + entities: + - uid: 8897 + components: + - type: Transform + pos: -33.5,43.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: -30.5,43.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: -29.5,43.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 481 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 3324 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 17459 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 1663 + components: + - type: Transform + pos: -13.5001335,-42.499813 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4290 + - 4054 + - 15603 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefEngineerFilled + entities: + - uid: 6616 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 1575 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 +- proto: LockerClown + entities: + - uid: 2258 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24196 + - 24195 + - 4184 + - 3432 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 3793 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 6718 + components: + - type: Transform + pos: 36.5,35.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 36.5,48.5 + parent: 2 + - uid: 23691 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 6703 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 23610 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 4442 + components: + - type: Transform + pos: 42.5,-21.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: 44.5,-31.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: 44.5,-33.5 + parent: 2 + - uid: 22772 + components: + - type: Transform + pos: 3.5,2.5 + parent: 21002 + - uid: 22779 + components: + - type: Transform + pos: 2.5,2.5 + parent: 21002 +- proto: LockerFreezer + entities: + - uid: 486 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5645 + - 5646 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 487 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 +- proto: LockerFreezerBase + entities: + - uid: 10787 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - 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: + - 3393 + - 3398 + - 3399 + - 3584 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerVaultFilled + entities: + - uid: 11445 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - 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: + - 2398 + - 2400 + - 2739 + - 3209 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 3521 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 4810 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 2 +- proto: LockerMedical + entities: + - uid: 2095 + components: + - type: Transform + pos: -34.5,-36.5 + parent: 2 + - 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: + - 2101 + - 2100 + - 2099 + - 2098 + - 2097 + - 2096 + - 2102 + - 7645 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 1518 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 19093 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 1491 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 19505 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24200 + - 24199 + - 24198 + - 24197 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilled + entities: + - uid: 1505 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 11275 + components: + - type: Transform + pos: -50.5,10.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 9894 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 11816 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 9940 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 20844 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 4284 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 28278 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 21002 +- proto: LockerWardenFilled + entities: + - uid: 3733 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - 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 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 6720 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 3797 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 23584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-39.5 + parent: 2 + - uid: 23585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-40.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 23581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 2 + - uid: 23582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-43.5 + parent: 2 + - uid: 23583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 9735 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 1687 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 1688 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 +- proto: MachineParticleAcceleratorEmitterForeCircuitboard + entities: + - uid: 11506 + components: + - type: Transform + pos: -47.530884,-22.773466 + parent: 2 +- proto: MachineParticleAcceleratorEmitterPortCircuitboard + entities: + - uid: 11508 + components: + - type: Transform + pos: -47.4788,-22.794298 + parent: 2 +- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard + entities: + - uid: 11510 + components: + - type: Transform + pos: -47.499634,-22.804716 + parent: 2 +- proto: MachineParticleAcceleratorEndCapCircuitboard + entities: + - uid: 11505 + components: + - type: Transform + pos: -47.530884,-22.773466 + parent: 2 +- proto: MachineParticleAcceleratorFuelChamberCircuitboard + entities: + - uid: 11507 + components: + - type: Transform + pos: -47.530884,-22.804716 + parent: 2 +- proto: MachineParticleAcceleratorPowerBoxCircuitboard + entities: + - uid: 11509 + components: + - type: Transform + pos: -47.520466,-22.794298 + parent: 2 +- proto: MagazineMagnum + entities: + - uid: 4205 + components: + - type: Transform + pos: 32.40636,-20.502666 + parent: 2 +- proto: MagazineMagnumRubber + entities: + - uid: 4206 + components: + - type: Transform + pos: 32.65636,-20.533916 + parent: 2 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 4431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.7493,-41.037598 + parent: 2 + - uid: 4432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.702423,-41.412598 + parent: 2 +- proto: MagicDiceBag + entities: + - uid: 7963 + components: + - type: Transform + pos: -17.406258,28.705639 + parent: 2 +- proto: MailingUnit + entities: + - uid: 430 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - type: MailingUnit + tag: Kitchen + - type: Configuration + config: + tag: Kitchen + - uid: 1630 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 2 + - type: MailingUnit + tag: Chemistry + - type: Configuration + config: + tag: Chemistry + - uid: 1877 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - type: MailingUnit + tag: Bar + - type: Configuration + config: + tag: Bar + - uid: 1878 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 2053 + components: + - type: MetaData + name: recyclables + - type: Transform + pos: -55.5,-30.5 + parent: 2 + - type: MailingUnit + tag: Recycling + - type: Configuration + config: + tag: Recycling + - uid: 3051 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - type: MailingUnit + tag: Bridge + - type: Configuration + config: + tag: Bridge + - uid: 3321 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - type: MailingUnit + tag: Botany + - type: Configuration + config: + tag: Botany + - uid: 6944 + components: + - type: Transform + pos: -48.5,2.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 + - type: MailingUnit + tag: Atmos + - type: Configuration + config: + tag: Atmos + - uid: 9991 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - type: MailingUnit + tag: Science + - type: Configuration + config: + tag: Science + - uid: 10465 + components: + - type: Transform + pos: -2.5,-51.5 + parent: 2 + - type: MailingUnit + tag: Robotics + - type: Configuration + config: + tag: Robotics + - uid: 17649 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - type: MailingUnit + tag: Court + - type: Configuration + config: + tag: Court + - uid: 20960 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - type: MailingUnit + tag: Engineering + - type: Configuration + config: + tag: Engineering +- proto: MaintenancePlantSpawner + entities: + - uid: 1585 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + pos: 58.5,7.5 + parent: 2 + - uid: 23232 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 23234 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 23274 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 23549 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 + - uid: 23580 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 255 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 28333 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 28334 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 28335 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 + - uid: 28336 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 28337 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 28338 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 28339 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - uid: 28340 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 28341 + components: + - type: Transform + pos: -45.5,-47.5 + parent: 2 + - uid: 28343 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 2103 + components: + - type: Transform + pos: -30.47672,-39.94861 + parent: 2 +- proto: MaterialBones1 + entities: + - uid: 21422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.678665,-3.4281406 + parent: 21002 + - uid: 21423 + components: + - type: Transform + pos: 93.5146,-3.7797031 + parent: 21002 +- proto: MaterialCloth + entities: + - uid: 3513 + components: + - type: Transform + pos: 43.426495,-4.5161743 + parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 11451 + components: + - type: Transform + pos: -49.652218,-11.356268 + parent: 2 + - uid: 11452 + components: + - type: Transform + pos: -49.417843,-11.215643 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: -49.183468,-11.403143 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: -49.44128,-11.567205 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 3512 + components: + - type: Transform + pos: 41.613995,-4.120341 + parent: 2 +- proto: MaterialReclaimer + entities: + - uid: 3264 + components: + - type: Transform + pos: -54.5,-30.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 23592 + components: + - type: Transform + pos: -27.514933,-49.371128 + parent: 2 +- proto: MedicalBed + entities: + - uid: 1313 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 1523 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 3740 + components: + - type: Transform + pos: 49.393448,-12.3111925 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: -54.556988,-21.446201 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 1946 + components: + - type: Transform + pos: -12.573936,-26.102297 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: -12.308311,-26.117922 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: -11.314571,-33.28046 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: -11.642696,-33.28046 + parent: 2 + - uid: 24246 + components: + - type: Transform + pos: 37.53505,-14.097963 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 1947 + components: + - type: Transform + pos: -12.558311,-26.461672 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -12.323936,-26.461672 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: -11.314571,-33.56171 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: -11.642696,-33.56171 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 1580 + components: + - type: Transform + pos: -24.41386,-35.51669 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 2303 + components: + - type: Transform + pos: -11.642696,-33.90546 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: -11.642696,-33.90546 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: -11.314571,-33.90546 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 26.491709,9.530283 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: 34.3957,-41.33009 + parent: 2 + - uid: 24157 + components: + - type: Transform + pos: -2.4625432,-61.588234 + parent: 2 + - uid: 24247 + components: + - type: Transform + pos: 37.514214,-14.931296 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 2308 + components: + - type: Transform + pos: -11.642696,-34.15546 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: -11.298946,-34.15546 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 1267 + components: + - type: Transform + pos: 50.533913,-43.561028 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: -11.658321,-34.421085 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: -11.283321,-34.43671 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 2312 + components: + - type: Transform + pos: -11.658321,-34.639835 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: -11.267696,-34.65546 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: -11.267696,-34.65546 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 26.205177,9.57671 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 24163 + components: + - type: Transform + pos: -46.617947,-26.476267 + parent: 2 +- proto: MicrowaveMachineCircuitboard + entities: + - uid: 5810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.405407,4.838667 + parent: 2 +- proto: MindShieldImplanter + entities: + - uid: 27840 + components: + - type: Transform + parent: 25516 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MiningWindow + entities: + - uid: 548 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 2 +- proto: Mirror + entities: + - uid: 2654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-4.5 + parent: 2 + - uid: 11401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 2 +- proto: MonkeyCubeWrapped + entities: + - uid: 3150 + components: + - type: Transform + pos: -62.609245,-46.36129 + parent: 2 + - uid: 23047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.72876,7.022396 + parent: 21002 +- proto: MoonBattlemap + entities: + - uid: 9689 + components: + - type: Transform + pos: -8.51768,36.61304 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 11313 + components: + - type: Transform + pos: 21.12969,-4.0636864 + parent: 2 + - uid: 11314 + components: + - type: Transform + pos: 21.650522,-3.8449364 + parent: 2 +- proto: Morgue + entities: + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-26.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-30.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-30.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-30.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-30.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 20663 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 20666 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 +- proto: Multitool + entities: + - uid: 3046 + components: + - type: Transform + pos: 27.52682,4.58956 + parent: 2 + - uid: 7687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.492922,39.609303 + parent: 2 + - uid: 23692 + components: + - type: Transform + pos: -2.5603397,47.590935 + parent: 2 +- proto: MysteryFigureBox + entities: + - uid: 5548 + components: + - type: Transform + parent: 8002 + - type: Physics + canCollide: False + - uid: 5549 + components: + - type: Transform + parent: 8002 + - type: Physics + canCollide: False + - uid: 5550 + components: + - type: Transform + parent: 8002 + - type: Physics + canCollide: False + - uid: 5551 + components: + - type: Transform + parent: 8002 + - type: Physics + canCollide: False + - uid: 5576 + components: + - type: Transform + parent: 8002 + - type: Physics + canCollide: False +- proto: NetworkConfigurator + entities: + - uid: 9446 + components: + - type: Transform + pos: -31.952162,43.65693 + parent: 2 + - uid: 9792 + components: + - type: Transform + pos: 11.55334,-34.190166 + parent: 2 +- proto: NewtonCradle + entities: + - uid: 23615 + components: + - type: Transform + pos: -36.49375,-33.49542 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 1200 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 18933 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 18937 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 19022 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 19027 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 19037 + components: + - type: Transform + pos: -46.5,-44.5 + parent: 2 + - uid: 19639 + components: + - type: Transform + pos: -45.5,-53.5 + parent: 2 + - uid: 26885 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 21002 +- proto: NitrousOxideCanister + entities: + - uid: 8864 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 2056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.361542,-40.430637 + parent: 2 + - uid: 10289 + components: + - type: Transform + pos: -12.585021,-50.39183 + parent: 2 + - uid: 19070 + components: + - type: Transform + pos: 32.786324,-41.408215 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 9945 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-5.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - type: Storage + storedItems: + 23854: + position: 0,0 + _rotation: South + 23855: + position: 1,0 + _rotation: South + 23856: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 23854 + - 23855 + - 23856 +- proto: NuclearBomb + entities: + - uid: 23813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-9.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 13616 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 +- proto: Ointment + entities: + - uid: 24253 + components: + - type: Transform + pos: 45.50957,-13.525023 + parent: 2 +- proto: OperatingTable + entities: + - uid: 1109 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 19051 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 11983 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 723 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: -21.5,37.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + pos: 38.5,50.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: -57.5,-16.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - uid: 18931 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 18934 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 18936 + components: + - type: Transform + pos: -10.5,24.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 19026 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - uid: 19036 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 19638 + components: + - type: Transform + pos: -46.5,-51.5 + parent: 2 + - uid: 23424 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 +- proto: PaintingHelloWorld + entities: + - uid: 23621 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 11651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 +- proto: PaintingMoony + entities: + - uid: 23614 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 +- proto: PaintingOldGuitarist + entities: + - uid: 2013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-44.5 + parent: 2 +- proto: PaintingPersistenceOfMemory + entities: + - uid: 24192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-32.5 + parent: 2 +- proto: PaintingRedBlueYellow + entities: + - uid: 23624 + components: + - type: Transform + pos: -43.5,-41.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 23622 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 +- proto: PaintingSaturn + entities: + - uid: 23623 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 +- proto: PaintingTheSonOfMan + entities: + - uid: 23625 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 +- proto: Paper + entities: + - uid: 1407 + components: + - type: Transform + parent: 1406 + - type: Physics + canCollide: False + - uid: 1408 + components: + - type: Transform + parent: 1406 + - type: Physics + canCollide: False + - uid: 1412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.478485,-34.388977 + parent: 2 + - uid: 1413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.541683,-34.4906 + parent: 2 + - uid: 1423 + components: + - type: Transform + parent: 1422 + - type: Physics + canCollide: False + - uid: 3493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.59387,-5.805445 + parent: 2 + - uid: 3494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.510536,-5.649195 + parent: 2 + - uid: 3495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.46887,-5.399195 + parent: 2 + - uid: 3496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.46887,-5.399195 + parent: 2 + - uid: 3497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.635536,-5.2221117 + parent: 2 + - uid: 5856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.270195,5.652396 + parent: 2 + - uid: 5857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.509777,5.527396 + parent: 2 + - uid: 9368 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9369 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9370 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9371 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9376 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 9377 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 9378 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 9684 + components: + - type: Transform + pos: -11.299824,33.680893 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: -11.299824,33.540268 + parent: 2 + - uid: 9686 + components: + - type: Transform + pos: -11.284199,33.399643 + parent: 2 + - uid: 9687 + components: + - type: Transform + pos: -8.737324,31.732964 + parent: 2 + - uid: 9688 + components: + - type: Transform + pos: -8.331074,31.639214 + parent: 2 + - uid: 9897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.647428,-30.309217 + parent: 2 + - uid: 9898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.069303,-30.387342 + parent: 2 + - uid: 11861 + components: + - type: Transform + parent: 11860 + - type: Physics + canCollide: False + - uid: 11862 + components: + - type: Transform + parent: 11860 + - type: Physics + canCollide: False + - uid: 22270 + components: + - type: Transform + pos: 19.386505,-5.4395065 + parent: 21002 + - uid: 22768 + components: + - type: Transform + pos: 9.197723,6.828867 + parent: 21002 + - uid: 22769 + components: + - type: Transform + pos: 9.072723,6.688242 + parent: 21002 + - uid: 22770 + components: + - type: Transform + pos: 8.432098,6.922617 + parent: 21002 + - uid: 22771 + components: + - type: Transform + pos: 8.947723,7.625742 + parent: 21002 + - uid: 23006 + components: + - type: Transform + pos: 12.350174,6.6600037 + parent: 21002 + - uid: 23008 + components: + - type: Transform + pos: 12.381424,-7.427479 + parent: 21002 + - uid: 23239 + components: + - type: Transform + parent: 23238 + - type: Physics + canCollide: False + - uid: 23240 + components: + - type: Transform + parent: 23238 + - type: Physics + canCollide: False + - uid: 23241 + components: + - type: Transform + parent: 23238 + - type: Physics + canCollide: False + - uid: 23242 + components: + - type: Transform + parent: 23238 + - type: Physics + canCollide: False + - uid: 23243 + components: + - type: Transform + parent: 23238 + - type: Physics + canCollide: False + - uid: 23854 + components: + - type: Transform + parent: 23853 + - type: Physics + canCollide: False + - uid: 23855 + components: + - type: Transform + parent: 23853 + - type: Physics + canCollide: False +- proto: PaperBin10 + entities: + - uid: 23867 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-44.5 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 28369 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 +- proto: PaperCaptainsThoughts + entities: + - uid: 2743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.116163,20.673426 + parent: 2 + - uid: 2744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.209913,20.62655 + parent: 2 + - uid: 2745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.303663,20.5328 + parent: 2 + - uid: 2746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.303663,20.5328 + parent: 2 + - uid: 2747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.225538,20.610926 + parent: 2 +- proto: PaperCNCSheet + entities: + - uid: 14827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.639872,29.686378 + parent: 2 + - uid: 14828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.655497,29.483253 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.655497,29.248878 + parent: 2 + - uid: 14830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.671122,29.045753 + parent: 2 +- proto: PaperOffice + entities: + - uid: 23856 + components: + - type: Transform + parent: 23853 + - type: Physics + canCollide: False +- proto: ParticleAcceleratorComputerCircuitboard + entities: + - uid: 11504 + components: + - type: Transform + pos: -47.51005,-22.783882 + parent: 2 +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 7230 + components: + - type: Transform + pos: 14.5,50.5 + parent: 2 +- proto: ParticleAcceleratorEmitterForeUnfinished + entities: + - uid: 7229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,52.5 + parent: 2 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 7226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,52.5 + parent: 2 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 7227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,52.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,52.5 + parent: 2 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 7232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,49.5 + parent: 2 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 7231 + components: + - type: Transform + pos: 13.5,50.5 + parent: 2 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 7233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,51.5 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 5183 + components: + - type: Transform + pos: 5.714109,38.545357 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: -23.465305,28.79863 + parent: 2 + - uid: 9308 + components: + - type: Transform + pos: -25.293972,22.25967 + parent: 2 + - uid: 9309 + components: + - type: Transform + pos: -25.372097,22.494045 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: -27.503128,43.635254 + parent: 2 + - uid: 9312 + components: + - type: Transform + pos: 5.573484,38.701607 + parent: 2 + - uid: 9313 + components: + - type: Transform + pos: 5.448484,38.62348 + parent: 2 + - uid: 9314 + components: + - type: Transform + pos: 25.476988,30.728882 + parent: 2 + - uid: 9315 + components: + - type: Transform + pos: 25.695738,30.588257 + parent: 2 + - uid: 11872 + components: + - type: Transform + pos: -52.375683,-20.40928 + parent: 2 + - uid: 21846 + components: + - type: Transform + parent: 21845 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21847 + components: + - type: Transform + parent: 21845 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Pen + entities: + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.371608,-21.445356 + parent: 2 + - uid: 1383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.918555,-34.483868 + parent: 2 + - uid: 1402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.918555,-34.483868 + parent: 2 + - uid: 1404 + components: + - type: Transform + parent: 1403 + - type: Physics + canCollide: False + - uid: 1405 + components: + - type: Transform + parent: 1403 + - type: Physics + canCollide: False + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.11911,-34.373352 + parent: 2 + - uid: 1418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.74411,-34.388977 + parent: 2 + - uid: 1419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.74411,-34.388977 + parent: 2 + - uid: 3604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.457253,-7.9007015 + parent: 2 + - uid: 3605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.410378,-2.9632018 + parent: 2 + - uid: 5858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.702435,5.6993675 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.200958,43.477486 + parent: 2 + - uid: 9900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.100553,-30.277967 + parent: 2 + - uid: 11857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.484272,-26.871986 + parent: 2 + - uid: 19046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.686314,-51.342354 + parent: 2 + - uid: 22199 + components: + - type: Transform + parent: 22197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22201 + components: + - type: Transform + parent: 22197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22203 + components: + - type: Transform + parent: 22197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22775 + components: + - type: Transform + pos: 8.588348,6.644453 + parent: 21002 + - uid: 22776 + components: + - type: Transform + pos: 9.432098,6.878828 + parent: 21002 + - uid: 23009 + components: + - type: Transform + pos: 12.64183,-7.5003967 + parent: 21002 + - uid: 23011 + components: + - type: Transform + pos: 12.537674,6.638035 + parent: 21002 + - uid: 23245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.667557,5.732942 + parent: 2 + - uid: 23436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.323895,-10.992805 + parent: 2 + - uid: 23437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.58431,-11.0136385 + parent: 2 + - uid: 23617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.15935,-33.472218 + parent: 2 + - uid: 23988 + components: + - type: Transform + pos: 19.58963,-5.4863815 + parent: 21002 + - uid: 24153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.28495,3.568643 + parent: 2 + - uid: 28370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.65914,-9.304949 + parent: 2 + - uid: 28371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.242474,-9.919532 + parent: 2 +- proto: PenCap + entities: + - uid: 2672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.002323,20.619299 + parent: 2 +- proto: PenHop + entities: + - uid: 3498 + components: + - type: Transform + pos: 39.354286,-4.8887787 + parent: 2 +- proto: PersonalAI + entities: + - uid: 13062 + components: + - type: Transform + pos: 58.536907,13.703789 + parent: 2 + - uid: 23464 + components: + - type: Transform + pos: -3.333166,-61.954178 + parent: 2 + - uid: 23465 + components: + - type: Transform + pos: -5.4790034,-56.402096 + parent: 2 + - uid: 23466 + components: + - type: Transform + pos: 15.300556,-44.382393 + parent: 2 + - uid: 23467 + components: + - type: Transform + pos: -7.459805,15.50759 + parent: 2 + - uid: 23468 + components: + - type: Transform + pos: -38.122,-21.444462 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 2675 + components: + - type: Transform + pos: 24.007292,15.691906 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 73 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 22399 + components: + - type: Transform + pos: 32.521667,13.5056505 + parent: 21002 + - uid: 24235 + components: + - type: Transform + pos: -52.472195,-22.458754 + parent: 2 +- proto: PillCanister + entities: + - uid: 2085 + components: + - type: Transform + pos: -30.384022,-40.362236 + parent: 2 + - type: Storage + storedItems: + 2086: + position: 0,0 + _rotation: South + 2087: + position: 1,0 + _rotation: South + 2088: + position: 2,0 + _rotation: South + 2089: + position: 3,0 + _rotation: South + 2090: + position: 4,0 + _rotation: South + 2091: + position: 0,1 + _rotation: South + 2092: + position: 1,1 + _rotation: South + 2093: + position: 2,1 + _rotation: South + 2094: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2086 + - 2087 + - 2088 + - 2089 + - 2090 + - 2091 + - 2092 + - 2093 + - 2094 +- proto: PillSpaceDrugs + entities: + - uid: 2086 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False + - uid: 2087 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False + - uid: 2088 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False + - uid: 2089 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False + - uid: 2090 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False + - uid: 2091 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False + - uid: 2092 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False + - uid: 2093 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False + - uid: 2094 + components: + - type: Transform + parent: 2085 + - type: Physics + canCollide: False +- proto: PlaqueAtmos + entities: + - uid: 9644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 8857 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 2187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-33.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,18.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,18.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,19.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,20.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,19.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,18.5 + parent: 2 + - uid: 21130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 21002 + - uid: 21131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 21002 + - uid: 21134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 21002 + - uid: 21135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 21002 +- proto: PlasmaWindowDirectional + entities: + - uid: 1302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-14.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-14.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-14.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-14.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 10832 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 2 + - uid: 11546 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 10165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-45.5 + parent: 2 + - uid: 11225 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 +- proto: PlushieCarp + entities: + - uid: 19089 + components: + - type: Transform + pos: 28.498346,-41.510864 + parent: 2 + - uid: 19090 + components: + - type: Transform + pos: 28.904596,-41.37024 + parent: 2 +- proto: PlushieLamp + entities: + - uid: 5739 + components: + - type: Transform + pos: -35.426277,-40.29563 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 11467 + components: + - type: Transform + pos: -47.09023,-11.4053755 + parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 11466 + components: + - type: Transform + pos: -47.64231,-11.394959 + parent: 2 +- proto: PlushieMoth + entities: + - uid: 19091 + components: + - type: Transform + pos: 31.467096,-38.62024 + parent: 2 +- proto: PlushieSharkBlue + entities: + - uid: 18539 + components: + - type: Transform + pos: 39.500645,13.141673 + parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 21001 + components: + - type: Transform + pos: 31.976513,24.950718 + parent: 1 +- proto: PonderingOrb + entities: + - uid: 23786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.537764,72.5392 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 5422 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 1126 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 18067 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + anchored: True + pos: 32.5,1.5 + parent: 21002 + - type: Physics + bodyType: Static + - uid: 27055 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 21002 + - uid: 28418 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 3155 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 12848 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: 12.5,41.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 8450 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 2265 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 16210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,25.5 + parent: 2 +- proto: PosterContrabandHackingGuide + entities: + - uid: 11884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-17.5 + parent: 2 +- proto: PosterContrabandMissingGloves + entities: + - uid: 23491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,39.5 + parent: 2 +- proto: PosterContrabandTools + entities: + - uid: 28330 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 28331 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 28332 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 +- proto: PosterLegitMime + entities: + - uid: 23628 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 23428 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 9176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,24.5 + parent: 2 +- proto: PottedPlant1 + entities: + - uid: 28294 + components: + - type: Transform + pos: 23.5,4.5 + parent: 21002 + - uid: 28295 + components: + - type: Transform + pos: 23.5,0.5 + parent: 21002 +- proto: PottedPlant21 + entities: + - uid: 28296 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 21002 +- proto: PottedPlantRandom + entities: + - uid: 907 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 39.5,-38.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 37.5,-57.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 18875 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + pos: 61.5,-6.5 + parent: 2 + - uid: 18878 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 18883 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 18884 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 18886 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 23429 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 23554 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 23555 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 24214 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 24220 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 24221 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 24223 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 24224 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 + - uid: 24229 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 28308 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 9902 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 +- proto: PowerCageRecharger + entities: + - uid: 10394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-48.5 + parent: 2 + - type: PointLight + enabled: False +- proto: PowerCellPotato + entities: + - uid: 13597 + components: + - type: Transform + pos: 31.505297,32.037407 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 1602 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,46.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-35.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-14.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,30.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,33.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,21.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-35.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: -2.5,-53.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - uid: 22981 + components: + - type: Transform + pos: 26.5,4.5 + parent: 21002 + - uid: 23693 + components: + - type: Transform + pos: -1.5,47.5 + parent: 2 + - uid: 23815 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 +- proto: PowerCellSmall + entities: + - uid: 23814 + components: + - type: Transform + pos: 31.619879,32.568657 + parent: 2 +- proto: Poweredlight + entities: + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-0.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 2 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-7.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,44.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,14.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-47.5 + parent: 2 + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 2 + - uid: 687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 2 + - uid: 696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 2 + - uid: 697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 2 + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - uid: 711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1014 + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-23.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-20.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-40.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-29.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-37.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-33.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-45.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-44.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-43.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-38.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-32.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-36.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-36.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,16.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,16.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,16.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,11.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,4.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 2735 + - uid: 2734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,12.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-14.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-17.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 2 + - type: Timer + - uid: 3524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-8.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-0.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,18.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 52.5,-35.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 58.5,-35.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 47.5,-35.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-34.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-34.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-32.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-25.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-27.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-10.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-12.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-18.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-12.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-26.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-41.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-35.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-39.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7984 + - uid: 5641 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,40.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,23.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,23.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,22.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,30.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,40.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,46.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,34.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,34.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,44.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,45.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,50.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,49.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,51.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,51.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,49.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,49.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,52.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7984 + - uid: 7939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7984 + - uid: 7940 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,49.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,45.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,13.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,8.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,29.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,35.5 + parent: 2 + - uid: 9169 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 9171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,24.5 + parent: 2 + - uid: 9172 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 2 + - uid: 9174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 2 + - uid: 9175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + pos: -36.5,33.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,36.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,39.5 + parent: 2 + - type: Timer + - uid: 9180 + components: + - type: Transform + pos: -30.5,43.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,39.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,47.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,49.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,45.5 + parent: 2 + - uid: 9185 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-42.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-39.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-39.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-35.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-39.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-39.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-53.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-53.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-0.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 12047 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,5.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + pos: -55.5,10.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-7.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-9.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,0.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-19.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 2 + - uid: 12070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-30.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-26.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-26.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-4.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-13.5 + parent: 2 + - uid: 12083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-18.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-23.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-24.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: -5.5,47.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-50.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,39.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,45.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 17402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-50.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-54.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-45.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-44.5 + parent: 2 + - uid: 17409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-46.5 + parent: 2 + - uid: 17410 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-36.5 + parent: 2 + - uid: 17412 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 17413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 2 + - uid: 17414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-35.5 + parent: 2 + - uid: 17415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-40.5 + parent: 2 + - uid: 17416 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 17425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-35.5 + parent: 2 + - uid: 17426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,48.5 + parent: 2 + - uid: 17450 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,13.5 + parent: 2 + - uid: 17457 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,16.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,8.5 + parent: 2 + - uid: 17463 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,3.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,2.5 + parent: 2 + - uid: 17472 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-49.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 + - uid: 17990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,32.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,25.5 + parent: 2 + - uid: 17992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,36.5 + parent: 2 + - uid: 17993 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 17994 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 17995 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 18014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - uid: 18015 + components: + - type: Transform + pos: 23.5,49.5 + parent: 2 + - uid: 18016 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 18017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,38.5 + parent: 2 + - uid: 18029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-74.5 + parent: 2 + - uid: 18070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-58.5 + parent: 2 + - uid: 18071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-58.5 + parent: 2 + - uid: 18072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-74.5 + parent: 2 + - uid: 18073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-67.5 + parent: 2 + - uid: 18074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-67.5 + parent: 2 + - uid: 18075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-79.5 + parent: 2 + - uid: 18076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-79.5 + parent: 2 + - uid: 18077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-62.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 18080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 18081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 18082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 2 + - uid: 18083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 18084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 2 + - uid: 18085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,8.5 + parent: 2 + - uid: 18329 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 19032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-11.5 + parent: 2 + - uid: 19073 + components: + - type: Transform + pos: 30.5,-36.5 + parent: 2 + - uid: 20917 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 20918 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 20919 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 2 + - uid: 20949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-55.5 + parent: 2 + - uid: 21447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 21002 + - uid: 21449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 21002 + - uid: 22569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 21002 + - uid: 22725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 21002 + - uid: 22726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 21002 + - uid: 22727 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 21002 + - uid: 22728 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 21002 + - uid: 22729 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 21002 + - uid: 22730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 21002 + - uid: 22731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 21002 + - uid: 22732 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 21002 + - uid: 22733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 21002 + - uid: 23012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 21002 + - uid: 23013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 21002 + - uid: 23444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,18.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,12.5 + parent: 2 + - uid: 23765 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 + - uid: 23767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 2 + - uid: 24075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-21.5 + parent: 2 + - uid: 24144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,5.5 + parent: 2 + - uid: 24146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,5.5 + parent: 2 + - uid: 24148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-4.5 + parent: 2 + - uid: 25530 + components: + - type: Transform + pos: -5.5,18.5 + parent: 21002 +- proto: PoweredLightPostSmall + entities: + - uid: 2259 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: 46.5,-50.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: 51.5,51.5 + parent: 2 + - uid: 11559 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: 48.5,47.5 + parent: 2 + - uid: 11812 + components: + - type: Transform + pos: 22.5,62.5 + parent: 2 + - uid: 11824 + components: + - type: Transform + pos: 8.5,62.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + pos: 19.5,-53.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 2 + - type: PointLight + radius: 8 + - uid: 12058 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 20783 + components: + - type: Transform + pos: 22.5,59.5 + parent: 2 + - uid: 20816 + components: + - type: Transform + pos: 48.5,51.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 2 + - uid: 24003 + components: + - type: Transform + pos: 43.5,-53.5 + parent: 2 + - uid: 24005 + components: + - type: Transform + pos: 66.5,49.5 + parent: 2 + - uid: 24006 + components: + - type: Transform + pos: 18.5,62.5 + parent: 2 + - uid: 24009 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 24010 + components: + - type: Transform + pos: -51.5,-54.5 + parent: 2 + - uid: 24016 + components: + - type: Transform + pos: -47.5,-57.5 + parent: 2 + - uid: 26657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,7.5 + parent: 21002 + - uid: 26695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,7.5 + parent: 21002 + - uid: 26696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,4.5 + parent: 21002 +- proto: PoweredlightSodium + entities: + - uid: 2183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-33.5 + parent: 2 + - uid: 21438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-27.5 + parent: 21002 + - uid: 21440 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 21002 + - uid: 21442 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 21002 + - uid: 21455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 21002 + - uid: 25528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-23.5 + parent: 21002 + - uid: 26714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-24.5 + parent: 21002 +- proto: PoweredSmallLight + entities: + - uid: 2535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,9.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,20.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,17.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,7.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-20.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-20.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-20.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,37.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,53.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,50.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,47.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,48.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,46.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 2 + - uid: 9995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,53.5 + parent: 2 + - uid: 9996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,53.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-26.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + pos: -53.5,-32.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-36.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-40.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-36.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-17.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-15.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-15.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-46.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-52.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-56.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-49.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-50.5 + parent: 2 + - uid: 13969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-50.5 + parent: 2 + - uid: 16229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-45.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 17396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-33.5 + parent: 2 + - uid: 17400 + components: + - type: Transform + pos: -52.5,-42.5 + parent: 2 + - uid: 17401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-39.5 + parent: 2 + - uid: 17407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-44.5 + parent: 2 + - uid: 17417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-22.5 + parent: 2 + - uid: 17419 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-11.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-27.5 + parent: 2 + - uid: 17431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,31.5 + parent: 2 + - uid: 17432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,34.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 2 + - uid: 17438 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,28.5 + parent: 2 + - uid: 17441 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,40.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - uid: 17445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,36.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,45.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,45.5 + parent: 2 + - uid: 17448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,52.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,17.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: 64.5,2.5 + parent: 2 + - uid: 18054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,4.5 + parent: 2 + - uid: 18056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-32.5 + parent: 2 + - uid: 18057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-31.5 + parent: 2 + - uid: 18058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 18060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-25.5 + parent: 2 + - uid: 18061 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 18062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-27.5 + parent: 2 + - uid: 18063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-27.5 + parent: 2 + - uid: 18064 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 18066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-44.5 + parent: 2 + - uid: 18068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-49.5 + parent: 2 + - uid: 18069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-43.5 + parent: 2 + - uid: 18086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,6.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 19426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-3.5 + parent: 2 + - uid: 20194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-45.5 + parent: 2 + - uid: 20197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-47.5 + parent: 2 + - uid: 20212 + components: + - type: Transform + pos: -48.5,-52.5 + parent: 2 + - uid: 20213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-49.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,26.5 + parent: 2 + - uid: 20488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,26.5 + parent: 2 + - uid: 20647 + components: + - type: Transform + pos: 64.5,-5.5 + parent: 2 + - uid: 21421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,27.5 + parent: 21002 + - uid: 21437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-34.5 + parent: 21002 + - uid: 21439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,-4.5 + parent: 21002 + - uid: 21448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-44.5 + parent: 21002 + - uid: 21450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 95.5,27.5 + parent: 21002 + - uid: 22572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 21002 + - uid: 22739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 21002 + - uid: 22740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 21002 + - uid: 22741 + components: + - type: Transform + pos: 18.5,6.5 + parent: 21002 + - uid: 23014 + components: + - type: Transform + pos: 5.5,0.5 + parent: 21002 + - uid: 23015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 21002 + - uid: 23550 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 23840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-52.5 + parent: 2 + - uid: 23842 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 23843 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 24007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-2.5 + parent: 2 + - uid: 24191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-17.5 + parent: 2 + - uid: 25878 + components: + - type: Transform + pos: 25.5,4.5 + parent: 21002 + - uid: 25886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 21002 + - uid: 26710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,26.5 + parent: 21002 + - uid: 26712 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 21002 + - uid: 26713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 21002 + - uid: 28256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,57.5 + parent: 21002 + - uid: 28257 + components: + - type: Transform + pos: 43.5,66.5 + parent: 21002 + - uid: 28258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,48.5 + parent: 21002 +- proto: PresentRandomCash + entities: + - uid: 9641 + components: + - type: Transform + pos: -26.517355,4.481133 + parent: 2 +- proto: Protolathe + entities: + - uid: 6715 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 9947 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 2 +- proto: Rack + entities: + - uid: 4150 + components: + - type: Transform + pos: 45.5,-35.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-25.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,3.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 20810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-29.5 + parent: 2 + - uid: 22417 + components: + - type: Transform + pos: 25.5,4.5 + parent: 21002 + - uid: 22451 + components: + - type: Transform + pos: 26.5,0.5 + parent: 21002 + - uid: 22578 + components: + - type: Transform + pos: 25.5,0.5 + parent: 21002 + - uid: 23793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - uid: 23822 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 28260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 21002 +- proto: RadiationCollectorFullTank + entities: + - uid: 7090 + components: + - type: Transform + pos: 8.5,53.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: 9.5,53.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + pos: 7.5,53.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: 17.5,53.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 5859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.184803,-3.1026912 + parent: 2 + - uid: 5860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.132719,-3.3735247 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: 27.299444,34.751095 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: 27.518194,34.594845 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: 27.768194,34.459427 + parent: 2 + - uid: 9925 + components: + - type: Transform + pos: 19.265127,-41.23163 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: 19.468252,-41.403503 + parent: 2 + - uid: 9927 + components: + - type: Transform + pos: 19.780752,-41.247253 + parent: 2 + - uid: 11873 + components: + - type: Transform + pos: -52.813183,-20.331156 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: -52.625683,-20.487406 + parent: 2 + - uid: 23432 + components: + - type: Transform + pos: 56.344727,-11.3157215 + parent: 2 + - uid: 23478 + components: + - type: Transform + pos: 49.199795,-12.635495 + parent: 2 + - uid: 23479 + components: + - type: Transform + pos: 33.942856,-34.471764 + parent: 2 + - uid: 23480 + components: + - type: Transform + pos: 35.057438,-34.4301 + parent: 2 + - uid: 23481 + components: + - type: Transform + pos: 34.974106,-34.315514 + parent: 2 + - uid: 23482 + components: + - type: Transform + pos: 34.01577,-34.33635 + parent: 2 + - uid: 23483 + components: + - type: Transform + pos: 42.16272,-40.47191 + parent: 2 + - uid: 23484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.377563,5.5757937 + parent: 2 + - uid: 23485 + components: + - type: Transform + pos: -55.185413,-20.302197 + parent: 2 + - uid: 23486 + components: + - type: Transform + pos: -50.046886,3.5222416 + parent: 2 + - uid: 23487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.6037574,44.731087 + parent: 2 + - uid: 23488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5100074,44.97067 + parent: 2 + - uid: 23496 + components: + - type: Transform + pos: 18.562805,6.5326214 + parent: 21002 + - uid: 23524 + components: + - type: Transform + parent: 22410 + - type: Physics + canCollide: False + - uid: 23525 + components: + - type: Transform + parent: 22340 + - type: Physics + canCollide: False + - uid: 23526 + components: + - type: Transform + parent: 22424 + - type: Physics + canCollide: False + - uid: 23570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.588356,5.440831 + parent: 2 + - uid: 24152 + components: + - type: Transform + pos: -55.92037,3.5790596 + parent: 2 +- proto: RagItem + entities: + - uid: 9382 + components: + - type: Transform + pos: 17.533895,35.55905 + parent: 2 + - uid: 9654 + components: + - type: Transform + pos: -21.458103,6.9833603 + parent: 2 + - uid: 10587 + components: + - type: Transform + pos: 4.4687123,-52.37536 + parent: 2 + - uid: 12284 + components: + - type: Transform + pos: -56.512615,-32.615707 + parent: 2 + - uid: 23051 + components: + - type: Transform + pos: 19.761139,3.4945202 + parent: 21002 +- proto: Railing + entities: + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - uid: 383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-37.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,21.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,30.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,30.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,50.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,50.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,50.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,50.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: 43.5,48.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,47.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,46.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,45.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,44.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,40.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,54.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,53.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,52.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,51.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,53.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,52.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,51.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,37.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,36.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,35.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,34.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,33.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,32.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,42.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,44.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,45.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,46.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,47.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: 49.5,48.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: 50.5,48.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,50.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,50.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,50.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: 36.5,60.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,61.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,61.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,61.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,61.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,61.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,61.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,61.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,61.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,61.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: 39.5,60.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: 37.5,60.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 33.5,60.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: 24.5,60.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,61.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,61.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: 23.5,60.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,34.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,35.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,39.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,39.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,33.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,32.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,31.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,30.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,28.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,27.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,25.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,24.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,23.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,22.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,19.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,18.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,17.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,16.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,15.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,14.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,12.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,9.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,8.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 2 + - uid: 9424 + components: + - type: Transform + pos: 9.5,71.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + pos: 10.5,71.5 + parent: 2 + - uid: 9426 + components: + - type: Transform + pos: 11.5,71.5 + parent: 2 + - uid: 9427 + components: + - type: Transform + pos: 12.5,71.5 + parent: 2 + - uid: 9428 + components: + - type: Transform + pos: 13.5,71.5 + parent: 2 + - uid: 9429 + components: + - type: Transform + pos: 14.5,71.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: 15.5,71.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + pos: 16.5,71.5 + parent: 2 + - uid: 9432 + components: + - type: Transform + pos: 17.5,71.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,72.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,72.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,72.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,72.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,73.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,73.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,73.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,36.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,37.5 + parent: 2 + - uid: 9582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,40.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,41.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,42.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,42.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,39.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-25.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 2 + - uid: 15041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,8.5 + parent: 2 + - uid: 15042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,8.5 + parent: 2 + - uid: 19039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-46.5 + parent: 2 + - uid: 20185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-52.5 + parent: 2 + - uid: 20186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-51.5 + parent: 2 + - uid: 20187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-50.5 + parent: 2 + - uid: 20191 + components: + - type: Transform + pos: 44.5,-53.5 + parent: 2 + - uid: 20214 + components: + - type: Transform + pos: -49.5,-56.5 + parent: 2 + - uid: 20255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,30.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,26.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,27.5 + parent: 2 + - uid: 22456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 21002 + - uid: 22472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 21002 + - uid: 22473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 21002 + - uid: 22474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 21002 + - uid: 22475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 21002 + - uid: 22476 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 21002 + - uid: 22478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 21002 + - uid: 22880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 21002 + - uid: 22982 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 21002 + - uid: 22983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 21002 + - uid: 22984 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 21002 + - uid: 22985 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 21002 + - uid: 22986 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 21002 + - uid: 23000 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 21002 + - uid: 23004 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 21002 + - uid: 23007 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 21002 + - uid: 23010 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 21002 + - uid: 24712 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 21002 + - uid: 24713 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 21002 + - uid: 24714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 21002 + - uid: 24715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 21002 + - uid: 24716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 21002 + - uid: 24717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-19.5 + parent: 21002 + - uid: 24718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 21002 + - uid: 24719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 21002 + - uid: 24720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 21002 + - uid: 24721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 21002 + - uid: 24722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 21002 + - uid: 24723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 21002 + - uid: 24724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 21002 + - uid: 24725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 21002 + - uid: 24726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 21002 + - uid: 24729 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 21002 + - uid: 24730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 21002 +- proto: RailingCorner + entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 2 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,55.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,56.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,57.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,58.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,59.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,57.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,56.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,55.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,54.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,41.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,43.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,58.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,59.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,61.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,62.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: 22.5,59.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,39.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,73.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,73.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,38.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,42.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-26.5 + parent: 2 + - uid: 20184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-53.5 + parent: 2 + - uid: 20188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-50.5 + parent: 2 + - uid: 20189 + components: + - type: Transform + pos: 46.5,-52.5 + parent: 2 + - uid: 20190 + components: + - type: Transform + pos: 45.5,-53.5 + parent: 2 + - uid: 20215 + components: + - type: Transform + pos: -50.5,-57.5 + parent: 2 + - uid: 20216 + components: + - type: Transform + pos: -51.5,-58.5 + parent: 2 + - uid: 20217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-54.5 + parent: 2 + - uid: 20218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-55.5 + parent: 2 + - uid: 20219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-56.5 + parent: 2 + - uid: 22457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 21002 +- proto: RailingCornerSmall + entities: + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 2 + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,10.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,8.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-33.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-33.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: -37.5,38.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,48.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,55.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,56.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,57.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,58.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,57.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,56.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,55.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,54.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: 46.5,50.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,41.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,43.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,48.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,50.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: 51.5,50.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,48.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,51.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,59.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,59.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,58.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,61.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,61.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,60.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 9442 + components: + - type: Transform + pos: 11.5,72.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,72.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,38.5 + parent: 2 + - uid: 11269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,9.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,9.5 + parent: 2 + - uid: 15045 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - uid: 15046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,7.5 + parent: 2 + - uid: 20192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-52.5 + parent: 2 + - uid: 20193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-50.5 + parent: 2 + - uid: 20220 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 + - uid: 20221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-58.5 + parent: 2 + - uid: 20222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-57.5 + parent: 2 + - uid: 20223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-56.5 + parent: 2 + - uid: 20224 + components: + - type: Transform + pos: -51.5,-55.5 + parent: 2 + - uid: 20226 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 20257 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,28.5 + parent: 2 + - uid: 22471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 21002 + - uid: 23423 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 24728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 21002 + - uid: 24731 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 21002 + - uid: 24732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 21002 + - uid: 24733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 21002 + - uid: 24734 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 21002 + - uid: 24735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 21002 + - uid: 24736 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 21002 +- proto: RailingRound + entities: + - uid: 3408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-1.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-1.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 9859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-30.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-35.5 + parent: 2 + - uid: 23613 + components: + - type: Transform + pos: -32.5,-57.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-19.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-19.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-22.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 21444 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 21002 +- proto: RandomDrinkGlass + entities: + - uid: 9662 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 21002 + - uid: 23864 + components: + - type: Transform + pos: -1.5,-62.5 + parent: 2 +- proto: RandomFloraTree + entities: + - uid: 8003 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 21349 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 21002 + - uid: 21350 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 21002 + - uid: 22999 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 21002 + - uid: 23001 + components: + - type: Transform + pos: 7.5,4.5 + parent: 21002 + - uid: 23769 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 21002 + - uid: 23954 + components: + - type: Transform + pos: 22.5,6.5 + parent: 21002 +- proto: RandomFoodBakedSingle + entities: + - uid: 19517 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 20713 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 20714 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + pos: -53.5,-33.5 + parent: 2 + - uid: 20716 + components: + - type: Transform + pos: -53.5,-35.5 + parent: 2 +- proto: RandomFoodBakedWhole + entities: + - uid: 19386 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 9666 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 9674 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 21002 + - uid: 23862 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - uid: 27837 + components: + - type: Transform + pos: -8.5,17.5 + parent: 21002 +- proto: RandomFoodSingle + entities: + - uid: 9665 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 8001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,33.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 12165 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 12166 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 12167 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: -25.5,-49.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 23022 + components: + - type: Transform + pos: 16.5,5.5 + parent: 21002 + - uid: 23023 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 21002 + - uid: 24165 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 24166 + components: + - type: Transform + pos: -10.5,-52.5 + parent: 2 + - uid: 24167 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 24169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 18139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,22.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 2 + - uid: 20759 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 20760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - uid: 24193 + components: + - type: Transform + pos: 4.5,45.5 + parent: 2 + - uid: 24249 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 20650 + components: + - type: Transform + pos: 31.5,-46.5 + parent: 2 + - uid: 20719 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 20721 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 20722 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 20723 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 20724 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 20725 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 20726 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 20727 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 20728 + components: + - type: Transform + pos: -57.5,-36.5 + parent: 2 + - uid: 20729 + components: + - type: Transform + pos: -54.5,-41.5 + parent: 2 + - uid: 20730 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 20731 + components: + - type: Transform + pos: -14.5,-54.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 2 + - uid: 23745 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 24194 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 7 + components: + - type: Transform + pos: 58.5,-13.5 + parent: 2 + - uid: 20734 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 20735 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 20737 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 20738 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 20741 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + pos: -44.5,-33.5 + parent: 2 + - uid: 20746 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 20747 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 20748 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 20749 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 2 + - uid: 20753 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 20754 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 20755 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 23746 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 +- proto: RandomProduce + entities: + - uid: 20761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,22.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,18.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 20763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,26.5 + parent: 2 + - uid: 20764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 2 + - uid: 20765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-24.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: -20.5,-56.5 + parent: 2 + - uid: 20768 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 20770 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - uid: 28342 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 5538 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 20686 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 20689 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 20690 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 20691 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 20692 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 20693 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 20694 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 20699 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 20701 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 20702 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 20703 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 20704 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 20706 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 20707 + components: + - type: Transform + pos: 40.5,41.5 + parent: 2 + - uid: 20708 + components: + - type: Transform + pos: 26.5,52.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 23750 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 23751 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 23752 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 1121 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-45.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: 0.5,53.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: 1.5,53.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-50.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: -10.5,-74.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: 5.5,-76.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + pos: 5.5,-67.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,31.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 1611 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: 21.5,36.5 + parent: 2 +- proto: RandomWoodenSupport + entities: + - uid: 27256 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 21002 + - uid: 27257 + components: + - type: Transform + pos: 39.5,4.5 + parent: 21002 + - uid: 27299 + components: + - type: Transform + pos: 43.5,9.5 + parent: 21002 + - uid: 28065 + components: + - type: Transform + pos: 44.5,5.5 + parent: 21002 +- proto: RCD + entities: + - uid: 6640 + components: + - type: Transform + pos: 4.508805,43.674324 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 6618 + components: + - type: Transform + pos: 4.696305,43.5337 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: 4.46193,43.580574 + parent: 2 +- proto: ReagentContainerFlour + entities: + - uid: 1586 + components: + - type: Transform + pos: 4.6866913,-54.214134 + parent: 2 + - uid: 23404 + components: + - type: Transform + pos: 4.374191,-54.23497 + parent: 2 +- proto: ReagentContainerMayo + entities: + - uid: 4054 + components: + - type: Transform + parent: 1663 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4290 + components: + - type: Transform + parent: 1663 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReagentGrinderMachineCircuitboard + entities: + - uid: 5811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.639782,4.573042 + parent: 2 +- proto: Recycler + entities: + - uid: 11571 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23758 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 1061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,32.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,34.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,48.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,48.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,34.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,36.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,38.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,40.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,50.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,53.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,69.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,69.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,69.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,42.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,50.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,44.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,44.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,44.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,43.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,42.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,41.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: -38.5,39.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,53.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,52.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,51.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,53.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,51.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,52.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: -10.5,48.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + pos: -39.5,31.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: -38.5,40.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: -38.5,41.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,42.5 + parent: 2 + - uid: 9593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,42.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,42.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,44.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,44.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,43.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,44.5 + parent: 2 + - uid: 23599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,44.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 2 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-17.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-18.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-17.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-12.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-13.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-13.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-32.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-34.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-38.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-39.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-39.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-24.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-24.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-30.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-30.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-33.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-30.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-33.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-37.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-38.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-39.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-40.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,22.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,25.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,25.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-3.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-3.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-3.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-9.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-9.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-10.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-11.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-12.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-13.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-10.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-11.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-12.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-13.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-14.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-14.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-14.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-14.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-22.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-22.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-22.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-22.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-19.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-19.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-19.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-19.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-19.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-19.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-30.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-31.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-31.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-22.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-30.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-30.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-21.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-30.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-30.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-30.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-21.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-24.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-28.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-22.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-22.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-35.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-35.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-35.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-35.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-39.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-39.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-38.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-38.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-37.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-37.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-36.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-39.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-39.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-39.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-39.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-39.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-39.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-39.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-39.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-35.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-38.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-32.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-37.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-37.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-37.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-37.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-22.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-22.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-22.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-54.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-55.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-54.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-56.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-57.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-58.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-59.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-60.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-60.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-61.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-61.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-60.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-60.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-58.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-59.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-57.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-56.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-55.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-52.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-50.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-48.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-48.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-50.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-52.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,2.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: 48.5,2.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,30.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,30.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,30.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,30.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,30.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,30.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,30.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,30.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,30.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,44.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,42.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,41.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,40.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: 33.5,51.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: 35.5,51.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 36.5,51.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 28.5,54.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: 27.5,54.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: 25.5,54.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + pos: 29.5,54.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,51.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,51.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,54.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,54.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,53.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,54.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,53.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,54.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,54.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,54.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,54.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,54.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,54.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,54.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,54.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,54.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,54.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,49.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,50.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,51.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,54.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,54.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,54.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,52.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,54.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,54.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,54.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,53.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,53.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,52.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,34.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,32.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,31.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -22.5,32.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + pos: -25.5,48.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + pos: -25.5,49.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + pos: -25.5,52.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + pos: -25.5,51.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,45.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,46.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,43.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,40.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 + - uid: 8133 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + pos: -25.5,43.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,44.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,44.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,44.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,44.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,9.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,10.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,11.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,12.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,13.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,14.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,15.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,16.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,17.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,18.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,19.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,20.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,21.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,23.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,24.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,25.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,26.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,27.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,28.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,29.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,30.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,31.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,32.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,33.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,35.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,37.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,38.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,38.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,38.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,36.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,41.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,42.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: -43.5,-45.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: -43.5,-43.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: -43.5,-44.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 2 + - uid: 9526 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 9530 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 9531 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-31.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 9704 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-29.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 9720 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 9723 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 9810 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-32.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-44.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-46.5 + parent: 2 + - uid: 10237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-46.5 + parent: 2 + - uid: 10238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-47.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-48.5 + parent: 2 + - uid: 10240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-49.5 + parent: 2 + - uid: 10241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-50.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + pos: 42.5,-23.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-46.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 2 + - uid: 10263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 10264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-51.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 2 + - uid: 10303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 2 + - uid: 10304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 2 + - uid: 10305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-49.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-50.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + pos: 19.5,-51.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + pos: 5.5,-60.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: 5.5,-61.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-81.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + pos: -3.5,-63.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 10699 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + pos: 2.5,-66.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + pos: 2.5,-71.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + pos: -7.5,-70.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: -7.5,-72.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + pos: -7.5,-73.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: -7.5,-77.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -7.5,-78.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-80.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + pos: 2.5,-77.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-82.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-83.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-83.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-83.5 + parent: 2 + - uid: 10734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-82.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-81.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-80.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-80.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-81.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-82.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-83.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-83.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-83.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-82.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-81.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-80.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-67.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-68.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-69.5 + parent: 2 + - uid: 10767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-64.5 + parent: 2 + - uid: 10768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-65.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-71.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-72.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-74.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-75.5 + parent: 2 + - uid: 10773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-76.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-76.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-75.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-74.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-78.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-78.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-72.5 + parent: 2 + - uid: 10780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-71.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-69.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-68.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-67.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-65.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-64.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,4.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 10821 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 10826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,1.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,2.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - uid: 10837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: -58.5,-25.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 10863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-39.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-38.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 2 + - uid: 10869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-33.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,28.5 + parent: 2 + - uid: 10892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-47.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-55.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-55.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-55.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-55.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-55.5 + parent: 2 + - uid: 10918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-55.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-18.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-16.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-18.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-20.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-20.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-22.5 + parent: 2 + - uid: 11474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-19.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 2 + - uid: 11515 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 11533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 11561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-15.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-57.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-57.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-2.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,5.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,5.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,5.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,5.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-6.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-6.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-1.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-6.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-1.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,1.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,1.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,1.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,0.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,0.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 2 + - uid: 14994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-45.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-43.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,2.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-4.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-6.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-2.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-2.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,2.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,4.5 + parent: 2 + - uid: 18229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,28.5 + parent: 2 + - uid: 19189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-48.5 + parent: 2 + - uid: 19483 + components: + - type: Transform + pos: -50.5,-53.5 + parent: 2 + - uid: 19485 + components: + - type: Transform + pos: -50.5,-52.5 + parent: 2 + - uid: 19537 + components: + - type: Transform + pos: -47.5,-56.5 + parent: 2 + - uid: 19958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-47.5 + parent: 2 + - uid: 19959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-47.5 + parent: 2 + - uid: 19967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-44.5 + parent: 2 + - uid: 19968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-44.5 + parent: 2 + - uid: 19972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-48.5 + parent: 2 + - uid: 20256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,28.5 + parent: 2 + - uid: 20662 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 21013 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 21002 + - uid: 21014 + components: + - type: Transform + pos: -2.5,1.5 + parent: 21002 + - uid: 21024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 21002 + - uid: 21027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 21002 + - uid: 21040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 21002 + - uid: 21041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 21002 + - uid: 21042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 21002 + - uid: 21046 + components: + - type: Transform + pos: 0.5,4.5 + parent: 21002 + - uid: 21050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 21002 + - uid: 21051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 21002 + - uid: 21052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 21002 + - uid: 21053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 21002 + - uid: 21065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 21002 + - uid: 21066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 21002 + - uid: 21187 + components: + - type: Transform + pos: 0.5,5.5 + parent: 21002 + - uid: 21188 + components: + - type: Transform + pos: 0.5,6.5 + parent: 21002 + - uid: 21189 + components: + - type: Transform + pos: 0.5,7.5 + parent: 21002 + - uid: 21190 + components: + - type: Transform + pos: 0.5,8.5 + parent: 21002 + - uid: 21191 + components: + - type: Transform + pos: 0.5,9.5 + parent: 21002 + - uid: 21192 + components: + - type: Transform + pos: 1.5,9.5 + parent: 21002 + - uid: 21193 + components: + - type: Transform + pos: 2.5,9.5 + parent: 21002 + - uid: 21194 + components: + - type: Transform + pos: 3.5,9.5 + parent: 21002 + - uid: 21195 + components: + - type: Transform + pos: 3.5,10.5 + parent: 21002 + - uid: 21196 + components: + - type: Transform + pos: 4.5,10.5 + parent: 21002 + - uid: 21197 + components: + - type: Transform + pos: 5.5,10.5 + parent: 21002 + - uid: 21198 + components: + - type: Transform + pos: 6.5,10.5 + parent: 21002 + - uid: 21236 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 21002 + - uid: 21237 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 21002 + - uid: 21238 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 21002 + - uid: 21239 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 21002 + - uid: 21240 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 21002 + - uid: 21241 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 21002 + - uid: 21242 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 21002 + - uid: 21243 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 21002 + - uid: 21244 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 21002 + - uid: 21245 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 21002 + - uid: 21246 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 21002 + - uid: 21247 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 21002 + - uid: 21346 + components: + - type: Transform + pos: 24.5,0.5 + parent: 21002 + - uid: 21508 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 21002 + - uid: 22876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 21002 + - uid: 23672 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 24126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,3.5 + parent: 2 + - uid: 24137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,4.5 + parent: 2 + - uid: 24156 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 24269 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 + - uid: 24270 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 24580 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 21002 + - uid: 24581 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 21002 + - uid: 24582 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 21002 + - uid: 24583 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 21002 + - uid: 24584 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 21002 + - uid: 24585 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 21002 + - uid: 24586 + components: + - type: Transform + pos: 18.5,-47.5 + parent: 21002 + - uid: 24587 + components: + - type: Transform + pos: -7.5,14.5 + parent: 21002 + - uid: 24588 + components: + - type: Transform + pos: -6.5,14.5 + parent: 21002 + - uid: 24589 + components: + - type: Transform + pos: -5.5,14.5 + parent: 21002 + - uid: 24590 + components: + - type: Transform + pos: -3.5,16.5 + parent: 21002 + - uid: 24591 + components: + - type: Transform + pos: -3.5,17.5 + parent: 21002 + - uid: 24592 + components: + - type: Transform + pos: -9.5,16.5 + parent: 21002 + - uid: 24593 + components: + - type: Transform + pos: -9.5,17.5 + parent: 21002 + - uid: 26708 + components: + - type: Transform + pos: 24.5,4.5 + parent: 21002 + - uid: 26718 + components: + - type: Transform + pos: 26.5,5.5 + parent: 21002 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 1858 + components: + - type: MetaData + name: garage remote + - type: Transform + pos: -12.640002,-25.426682 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16922: + - Pressed: Toggle + 17256: + - Pressed: Toggle + - uid: 4246 + components: + - type: MetaData + name: Dock Emitters + - type: Transform + pos: 49.735508,-12.195019 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3921: + - Pressed: Toggle + 3081: + - Pressed: Toggle + - uid: 6115 + components: + - type: MetaData + name: EVA door remote + - type: Transform + pos: 39.76954,-5.4459667 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6114: + - Pressed: Toggle + 6113: + - Pressed: Toggle + - uid: 9928 + components: + - type: Transform + pos: 18.655752,-41.32538 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 9903 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 +- proto: Retractor + entities: + - uid: 1908 + components: + - type: Transform + pos: -27.47524,-39.602512 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 19092 + components: + - type: Transform + pos: 36.24835,-37.27649 + parent: 2 + - uid: 24196 + components: + - type: Transform + parent: 2258 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24199 + components: + - type: Transform + parent: 19505 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RockGuitarInstrument + entities: + - uid: 24187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.519897,-10.374299 + parent: 2 +- proto: RollerBed + entities: + - uid: 1954 + components: + - type: Transform + pos: -17.457813,-36.318623 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: -13.504687,-31.240498 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 22202 + components: + - type: Transform + parent: 22197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23360 + components: + - type: Transform + pos: 41.815514,-4.2144213 + parent: 2 + - uid: 23362 + components: + - type: Transform + pos: -54.608196,9.859919 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 22204 + components: + - type: Transform + parent: 22197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23361 + components: + - type: Transform + pos: 41.534264,-4.287338 + parent: 2 + - uid: 23363 + components: + - type: Transform + pos: -54.322224,9.859919 + parent: 2 +- proto: SadTromboneImplanter + entities: + - uid: 2255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.493217,-50.46559 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 11990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 +- proto: Scalpel + entities: + - uid: 1111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.24407,-26.394304 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: -27.50649,-39.274387 + parent: 2 +- proto: Screen + entities: + - uid: 1601 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,38.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-7.5 + parent: 2 + - uid: 23440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - uid: 23441 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 23442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-1.5 + parent: 2 + - uid: 23443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 2 + - uid: 23446 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 23447 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 23448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-35.5 + parent: 2 + - uid: 23454 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 23455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 2 + - uid: 23456 + components: + - type: Transform + pos: -1.5,-55.5 + parent: 2 + - uid: 23457 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 + - uid: 23458 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 23459 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - uid: 23461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-42.5 + parent: 2 + - uid: 23492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,46.5 + parent: 2 + - uid: 28364 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 24201 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 3316 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 19118 + components: + - type: Transform + pos: -53.5,-42.5 + parent: 2 + - uid: 22448 + components: + - type: Transform + pos: 4.5,9.5 + parent: 21002 +- proto: ShardGlass + entities: + - uid: 24159 + components: + - type: Transform + pos: -37.639343,-64.27721 + parent: 2 +- proto: SheetGlass + entities: + - uid: 3079 + components: + - type: Transform + pos: 15.831806,-44.42406 + parent: 2 + - uid: 6298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.750478,35.42588 + parent: 2 + - uid: 6299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.490061,35.405045 + parent: 2 + - uid: 6300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.656728,35.33213 + parent: 2 + - uid: 8943 + components: + - type: Transform + pos: -23.596386,29.776003 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: -23.455761,29.697878 + parent: 2 + - uid: 9319 + components: + - type: Transform + pos: 26.050371,30.353882 + parent: 2 + - uid: 9320 + components: + - type: Transform + pos: 26.175371,30.603882 + parent: 2 + - uid: 9321 + components: + - type: Transform + pos: 26.269121,30.416382 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: 28.332474,49.774113 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 7631 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: 13.118957,39.569992 + parent: 2 + - uid: 9923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.450102,-41.401127 + parent: 2 + - uid: 23402 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: 14.160623,39.549286 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 6295 + components: + - type: Transform + pos: 6.237593,38.62781 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: -23.433754,31.60024 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 6302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.643709,36.751186 + parent: 2 + - uid: 6303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.331209,36.74077 + parent: 2 + - uid: 6304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.508292,36.563686 + parent: 2 + - uid: 28347 + components: + - type: Transform + pos: 16.310081,-44.382393 + parent: 2 +- proto: SheetSteel + entities: + - uid: 6296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.687978,35.946712 + parent: 2 + - uid: 6297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.469227,35.967545 + parent: 2 + - uid: 6301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.500477,36.040462 + parent: 2 + - uid: 8940 + components: + - type: Transform + pos: -23.558754,30.865866 + parent: 2 + - uid: 8942 + components: + - type: Transform + pos: -23.424511,30.713503 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: 26.743135,30.541382 + parent: 2 + - uid: 9317 + components: + - type: Transform + pos: 26.680635,30.682007 + parent: 2 + - uid: 9318 + components: + - type: Transform + pos: 26.66501,30.557007 + parent: 2 + - uid: 9467 + components: + - type: Transform + pos: 28.676224,49.727238 + parent: 2 + - uid: 21560 + components: + - type: Transform + parent: 21559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21561 + components: + - type: Transform + parent: 21559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28346 + components: + - type: Transform + pos: 16.904722,-44.413643 + parent: 2 +- proto: SheetUranium + entities: + - uid: 11468 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: 15.087707,39.601242 + parent: 2 +- proto: ShellShotgunSlug + entities: + - uid: 19082 + components: + - type: Transform + pos: 28.842348,-35.31463 + parent: 2 + - uid: 19083 + components: + - type: Transform + pos: 28.607973,-34.924004 + parent: 2 + - uid: 19084 + components: + - type: Transform + pos: 27.670473,-35.43963 + parent: 2 +- proto: ShipBattlemap + entities: + - uid: 9691 + components: + - type: Transform + pos: 24.023485,16.190632 + parent: 2 + - uid: 11880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.00294,-20.920916 + parent: 2 +- proto: ShotGunCabinetFilled + entities: + - uid: 23601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 +- proto: Shovel + entities: + - uid: 1269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.4861414,-23.53178 + parent: 2 + - uid: 18342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.534455,20.49856 + parent: 2 + - uid: 22400 + components: + - type: Transform + pos: 36.664062,16.455193 + parent: 21002 + - uid: 24234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.461777,-22.521254 + parent: 2 + - uid: 26607 + components: + - type: Transform + pos: 25.47168,4.5618477 + parent: 21002 + - uid: 26690 + components: + - type: Transform + pos: 25.680008,4.4264297 + parent: 21002 +- proto: ShuttersNormal + entities: + - uid: 2604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 2730 + - uid: 2605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 2730 + - uid: 7762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10222 + - uid: 7794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10222 + - uid: 10164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10222 + - uid: 11982 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24218 + - uid: 16922 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6175 + - 1858 + - uid: 17256 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6175 + - 1858 + - uid: 18581 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24218 + - uid: 20831 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24218 +- proto: ShuttersNormalOpen + entities: + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23438 + - uid: 363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23438 + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23438 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-11.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 872 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 872 + - uid: 922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 872 + - uid: 923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 872 + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 928 + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 928 + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 928 + - uid: 927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 928 + - uid: 1125 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8947 + - uid: 2365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 2366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 2367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 2368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 2369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 2370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 2600 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 2696 + - uid: 2601 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 2696 + - uid: 2602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 2694 + - uid: 2603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 2694 + - uid: 3293 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 3530 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 3531 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3532 + - uid: 3533 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23782 + - uid: 3535 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23782 + - uid: 3536 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23782 + - uid: 3537 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 23782 + - uid: 3799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3800 + - uid: 4035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4033 + - uid: 5217 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 3800 + - uid: 5584 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8946 + - uid: 5585 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8946 + - uid: 5586 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8946 + - uid: 5742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 2696 + - uid: 6226 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8947 + - uid: 6394 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6481 + - uid: 6395 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6481 + - uid: 6480 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6481 + - uid: 6576 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8947 + - uid: 6606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6652 + - uid: 6607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6652 + - uid: 6608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6652 + - uid: 6609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6652 + - uid: 6610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6652 + - uid: 6614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6652 + - uid: 6615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6652 + - uid: 7860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7865 + - uid: 7861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7865 + - uid: 7862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 7865 + - uid: 8941 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 8947 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24149 + - uid: 11302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24149 + - uid: 11303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24149 + - uid: 11304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24149 + - uid: 11305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24149 + - uid: 11306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24149 + - uid: 11554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 + - uid: 11555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 + - uid: 17900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 + - uid: 24134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 + - uid: 24135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 + - uid: 24136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 + - uid: 24140 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24149 + - uid: 24142 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 24149 + - uid: 24145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 + - uid: 24147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 + - uid: 28362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - uid: 28363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18694 +- proto: ShuttersRadiation + entities: + - uid: 7999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1919 + - uid: 8000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1920 +- proto: ShuttersRadiationOpen + entities: + - uid: 9766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10078 + - 21223 + - uid: 9767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10078 + - 21223 + - uid: 9768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10078 + - 21223 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9782 + - uid: 9770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9782 + - uid: 9771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9782 + - uid: 9772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10078 + - 21223 + - uid: 9773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9782 + - uid: 9854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 21223 + - uid: 9855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 9782 +- proto: ShuttersWindow + entities: + - uid: 10589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10588 + - uid: 10590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-53.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10588 + - uid: 10591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10588 +- proto: ShuttersWindowOpen + entities: + - uid: 742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1628 + - uid: 1501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1628 + - uid: 1502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1628 + - uid: 1619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1628 + - uid: 1620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1628 + - uid: 1621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1628 + - uid: 1622 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1629 + - uid: 1623 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1629 + - uid: 1624 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1629 + - uid: 1625 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1629 + - uid: 1626 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1629 + - uid: 1627 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 1629 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 9463 + components: + - type: Transform + pos: 28.511656,50.65157 + parent: 2 + - uid: 11499 + components: + - type: Transform + pos: -47.570698,-18.444723 + parent: 2 +- proto: SignalButtonDirectional + entities: + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 923: + - Pressed: Toggle + 922: + - Pressed: Toggle + 921: + - Pressed: Toggle + 920: + - Pressed: Toggle + - uid: 928 + components: + - type: MetaData + name: window shutters + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 924: + - Pressed: Toggle + 925: + - Pressed: Toggle + 926: + - Pressed: Toggle + 927: + - Pressed: Toggle + - uid: 1014 + components: + - type: MetaData + name: lights + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1050: + - Pressed: Toggle + - uid: 1628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1502: + - Pressed: Toggle + 1501: + - Pressed: Toggle + 742: + - Pressed: Toggle + 1619: + - Pressed: Toggle + 1620: + - Pressed: Toggle + 1621: + - Pressed: Toggle + - uid: 1629 + components: + - type: MetaData + name: closing time + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1622: + - Pressed: Toggle + 1623: + - Pressed: Toggle + 1624: + - Pressed: Toggle + 1625: + - Pressed: Toggle + 1626: + - Pressed: Toggle + 1627: + - Pressed: Toggle + - uid: 1919 + components: + - type: MetaData + name: shutter + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7999: + - Pressed: Toggle + - uid: 1920 + components: + - type: MetaData + name: shutter + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8000: + - Pressed: Toggle + - uid: 2694 + components: + - type: MetaData + name: window shutters + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2602: + - Pressed: Toggle + 2603: + - Pressed: Toggle + - uid: 2696 + components: + - type: MetaData + name: window shutters + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2600: + - Pressed: Toggle + 2601: + - Pressed: Toggle + 5742: + - Pressed: Toggle + - uid: 2730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2604: + - Pressed: Toggle + 2605: + - Pressed: Toggle + - uid: 2735 + components: + - type: MetaData + name: lightswitch + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2733: + - Pressed: Toggle + - uid: 3532 + components: + - type: MetaData + name: window shutters + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3529: + - Pressed: Toggle + 3530: + - Pressed: Toggle + 3531: + - Pressed: Toggle + 2365: + - Pressed: Toggle + 2366: + - Pressed: Toggle + 2367: + - Pressed: Toggle + 2368: + - Pressed: Toggle + 2369: + - Pressed: Toggle + 2370: + - Pressed: Toggle + - uid: 3800 + components: + - type: MetaData + name: window shutters + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3799: + - Pressed: Toggle + 5217: + - Pressed: Toggle + - uid: 4033 + components: + - type: MetaData + name: window shutter + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4035: + - Pressed: Toggle + - uid: 6175 + components: + - type: MetaData + name: garage + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17256: + - Pressed: Toggle + 16922: + - Pressed: Toggle + - uid: 6481 + components: + - type: MetaData + name: window shutters + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6394: + - Pressed: Toggle + 6395: + - Pressed: Toggle + 6480: + - Pressed: Toggle + - uid: 6652 + components: + - type: MetaData + name: window shutters + - type: Transform + pos: 3.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6606: + - Pressed: Toggle + 6607: + - Pressed: Toggle + 6608: + - Pressed: Toggle + 6609: + - Pressed: Toggle + 6610: + - Pressed: Toggle + 6614: + - Pressed: Toggle + 6615: + - Pressed: Toggle + - uid: 7696 + components: + - type: MetaData + name: Collectors + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7190: + - Pressed: Toggle + 7191: + - Pressed: Toggle + 7192: + - Pressed: Toggle + - uid: 7697 + components: + - type: MetaData + name: Collectors + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7189: + - Pressed: Toggle + 7188: + - Pressed: Toggle + 7042: + - Pressed: Toggle + - uid: 7698 + components: + - type: MetaData + name: PA blast doors + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7340: + - Pressed: Toggle + 7339: + - Pressed: Toggle + 7338: + - Pressed: Toggle + - uid: 7706 + components: + - type: MetaData + name: Storage + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7336: + - Pressed: Toggle + 7337: + - Pressed: Toggle + 7334: + - Pressed: Toggle + 7335: + - Pressed: Toggle + - uid: 7865 + components: + - type: MetaData + name: window shutters + - type: Transform + pos: -11.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7862: + - Pressed: Toggle + 7861: + - Pressed: Toggle + 7860: + - Pressed: Toggle + - uid: 7984 + components: + - type: MetaData + name: light switch + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5571: + - Pressed: Toggle + 7939: + - Pressed: Toggle + 7938: + - Pressed: Toggle + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5586: + - Pressed: Toggle + 5585: + - Pressed: Toggle + 5584: + - Pressed: Toggle + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8941: + - Pressed: Toggle + 1125: + - Pressed: Toggle + 6576: + - Pressed: Toggle + 6226: + - Pressed: Toggle + - uid: 9642 + components: + - type: MetaData + name: burn chamber + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9640: + - Pressed: Toggle + 9639: + - Pressed: Toggle + 9638: + - Pressed: Toggle + - uid: 9774 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16239: + - Pressed: Toggle + - uid: 9775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - uid: 9781 + components: + - type: MetaData + name: blast door left + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9718: + - Pressed: Toggle + - uid: 9782 + components: + - type: MetaData + name: radiation shielding left + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9769: + - Pressed: Toggle + 9770: + - Pressed: Toggle + 9771: + - Pressed: Toggle + 9855: + - Pressed: Toggle + 9773: + - Pressed: Toggle + - uid: 10078 + components: + - type: MetaData + name: blast door right + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9715: + - Pressed: Toggle + 9772: + - Pressed: Toggle + 9766: + - Pressed: Toggle + 9767: + - Pressed: Toggle + 9768: + - Pressed: Toggle + - uid: 10222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7794: + - Pressed: Toggle + 7762: + - Pressed: Toggle + 10164: + - Pressed: Toggle + - uid: 10393 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-48.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10312: + - Pressed: Toggle + 9965: + - Pressed: Toggle + - uid: 10588 + components: + - type: MetaData + name: shutters + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10589: + - Pressed: Toggle + 10590: + - Pressed: Toggle + 10591: + - Pressed: Toggle + - uid: 11339 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11338: + - Pressed: Toggle + 11337: + - Pressed: Toggle + - uid: 12804 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12801: + - Pressed: Toggle + 12802: + - Pressed: Toggle + 12803: + - Pressed: Toggle + - uid: 13038 + components: + - type: MetaData + name: space connector + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12955: + - Pressed: Toggle + 12956: + - Pressed: Toggle + 12957: + - Pressed: Toggle + - uid: 15291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8458: + - Pressed: Toggle + 8459: + - Pressed: Toggle + 8460: + - Pressed: Toggle + - uid: 18372 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23781: + - Pressed: Toggle + - uid: 18694 + components: + - type: MetaData + name: window shutters + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11555: + - Pressed: Toggle + 11554: + - Pressed: Toggle + 24136: + - Pressed: Toggle + 24134: + - Pressed: Toggle + 24135: + - Pressed: Toggle + 24145: + - Pressed: Toggle + 24147: + - Pressed: Toggle + 17900: + - Pressed: Toggle + 28363: + - Pressed: Toggle + - uid: 21063 + components: + - type: MetaData + name: prisoner transfer + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 21002 + - type: DeviceLinkSource + linkedPorts: + 21067: + - Pressed: Toggle + - uid: 21064 + components: + - type: MetaData + name: prisoner transfer + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 21002 + - type: DeviceLinkSource + linkedPorts: + 21068: + - Pressed: Toggle + - uid: 21223 + components: + - type: MetaData + name: radiation shielding right + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9854: + - Pressed: Toggle + 9772: + - Pressed: Toggle + 9768: + - Pressed: Toggle + 9767: + - Pressed: Toggle + 9766: + - Pressed: Toggle + - uid: 23438 + components: + - type: MetaData + name: shutters + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 364: + - Pressed: Toggle + 363: + - Pressed: Toggle + 362: + - Pressed: Toggle + - uid: 23768 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23766: + - Pressed: Toggle + - uid: 23771 + components: + - type: MetaData + name: cleaning service + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23770: + - Pressed: Toggle + - uid: 23773 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23772: + - Pressed: Toggle + - uid: 23774 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 23762: + - Pressed: Toggle + - uid: 23775 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23761: + - Pressed: Toggle + - uid: 23776 + components: + - type: MetaData + name: cleaning service + - type: Transform + pos: -50.5,4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 24128: + - Pressed: Toggle + - uid: 23777 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23763: + - Pressed: Toggle + - uid: 23778 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23764: + - Pressed: Toggle + - uid: 23779 + components: + - type: MetaData + name: cleaning service + - type: Transform + pos: 5.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16214: + - Pressed: Toggle + - uid: 23782 + components: + - type: MetaData + name: window shutters + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3534: + - Pressed: Toggle + 3535: + - Pressed: Toggle + 3536: + - Pressed: Toggle + 3537: + - Pressed: Toggle + - uid: 23783 + components: + - type: MetaData + name: cleaning service + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 23780: + - Pressed: Toggle + - uid: 23785 + components: + - type: MetaData + name: cleaning service + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23784: + - Pressed: Toggle + - uid: 24149 + components: + - type: MetaData + name: window shutters + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 24140: + - Pressed: Toggle + 24142: + - Pressed: Toggle + 11306: + - Pressed: Toggle + 11305: + - Pressed: Toggle + 11304: + - Pressed: Toggle + 11303: + - Pressed: Toggle + 11302: + - Pressed: Toggle + 11301: + - Pressed: Toggle + - uid: 24218 + components: + - type: MetaData + name: garage + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18581: + - Pressed: Toggle + 11982: + - Pressed: Toggle + 20831: + - Pressed: Toggle + - uid: 28356 + components: + - type: MetaData + name: bolts + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12133: + - Pressed: DoorBolt + - uid: 28357 + components: + - type: MetaData + name: bolts + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12132: + - Pressed: DoorBolt + - uid: 28358 + components: + - type: MetaData + name: bolts + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12131: + - Pressed: DoorBolt +- proto: SignChemistry1 + entities: + - uid: 8921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-37.5 + parent: 2 +- proto: SignCourt + entities: + - uid: 8922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 +- proto: SignDangerMed + entities: + - uid: 28305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,5.5 + parent: 21002 +- proto: SignDirectionalBridge + entities: + - uid: 20978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5165973,-1.8227005 + parent: 2 + - uid: 20998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.500874,2.5446026 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 3461 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 +- proto: SignDirectionalChemistry + entities: + - uid: 20974 + components: + - type: Transform + pos: -1.4649258,-4.6710877 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 20976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5113826,-1.2714531 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 20985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.4699364,2.5505779 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 20977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.522138,2.6120837 + parent: 2 + - uid: 20997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.4812675,33.33204 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 20979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5276074,2.4069471 + parent: 2 + - uid: 20986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5332532,-28.346897 + parent: 2 + - uid: 20988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.497997,-40.258747 + parent: 2 + - uid: 20992 + components: + - type: Transform + pos: -2.4500175,39.76776 + parent: 2 + - uid: 20995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.461353,-1.2455269 + parent: 2 + - uid: 20999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.525524,2.687672 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 20980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4936252,5.2819476 + parent: 2 + - uid: 20987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5332532,-28.565647 + parent: 2 + - uid: 20989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.497997,-40.456665 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: -2.4500175,39.54901 + parent: 2 + - uid: 20994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.465195,-1.4434437 + parent: 2 + - uid: 21000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.525524,2.4793384 + parent: 2 +- proto: SignDirectionalGravity + entities: + - uid: 20984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.4699364,2.7693279 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 8926 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 20973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5115004,-1.6256199 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 20981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.524472,2.2030704 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 20968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5120444,-1.1898417 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 20969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.527905,2.8014636 + parent: 2 + - uid: 20996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.4812675,33.537514 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 20970 + components: + - type: Transform + pos: -1.4676661,-4.2297864 + parent: 2 + - uid: 20991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.497997,-40.882515 + parent: 2 +- proto: SignDirectionalSalvage + entities: + - uid: 20967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.471596,2.8032153 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 20971 + components: + - type: Transform + pos: -1.4676661,-4.4485364 + parent: 2 + - uid: 20990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.4875805,-40.663765 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 20972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5115004,-1.4068699 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 20966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.471596,2.630097 + parent: 2 + - uid: 20982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.511603,-1.4910889 + parent: 2 +- proto: SignDirectionalWash + entities: + - uid: 20965 + components: + - type: Transform + pos: -43.471596,2.411347 + parent: 2 + - uid: 20983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.511603,-1.7098389 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 24515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,64.5 + parent: 21002 + - uid: 24517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,60.5 + parent: 21002 + - uid: 24520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,57.5 + parent: 21002 + - uid: 24544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,66.5 + parent: 21002 + - uid: 24579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,50.5 + parent: 21002 + - uid: 28123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,3.5 + parent: 21002 + - uid: 28143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,18.5 + parent: 21002 + - uid: 28148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,13.5 + parent: 21002 + - uid: 28161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 92.5,44.5 + parent: 21002 + - uid: 28167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 88.5,53.5 + parent: 21002 + - uid: 28174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,60.5 + parent: 21002 + - uid: 28183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,64.5 + parent: 21002 + - uid: 28191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,66.5 + parent: 21002 + - uid: 28198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,66.5 + parent: 21002 + - uid: 28214 + components: + - type: Transform + pos: 92.5,-19.5 + parent: 21002 + - uid: 28227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,-11.5 + parent: 21002 + - uid: 28233 + components: + - type: Transform + pos: 88.5,-27.5 + parent: 21002 + - uid: 28234 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 21002 + - uid: 28235 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 21002 + - uid: 28236 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 21002 + - uid: 28237 + components: + - type: Transform + pos: 55.5,-44.5 + parent: 21002 + - uid: 28239 + components: + - type: Transform + pos: 39.5,-44.5 + parent: 21002 + - uid: 28241 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 21002 + - uid: 28243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,34.5 + parent: 21002 + - uid: 28254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,42.5 + parent: 21002 + - uid: 28255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,32.5 + parent: 21002 +- proto: SignExamroom + entities: + - uid: 8923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 8927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-13.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 8924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 8925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,2.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 8928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,35.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 10161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-40.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 8931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 +- proto: SignPsychology + entities: + - uid: 2070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-30.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-33.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-33.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 8933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 2 +- proto: SignShock + entities: + - uid: 5411 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 24216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,59.5 + parent: 2 + - uid: 24217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,62.5 + parent: 2 + - uid: 24236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,62.5 + parent: 2 + - uid: 24237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,70.5 + parent: 2 + - uid: 24238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,70.5 + parent: 2 + - uid: 24239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,70.5 + parent: 2 + - uid: 24240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,70.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 24212 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 7789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-18.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-32.5 + parent: 2 + - uid: 28314 + components: + - type: Transform + pos: 96.5,27.5 + parent: 21002 + - uid: 28315 + components: + - type: Transform + pos: 43.5,67.5 + parent: 21002 + - uid: 28316 + components: + - type: Transform + pos: 96.5,-4.5 + parent: 21002 + - uid: 28317 + components: + - type: Transform + pos: 47.5,-45.5 + parent: 21002 +- proto: SignSurgery + entities: + - uid: 8937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-37.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 9562 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 5794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 2 +- proto: SingularityGenerator + entities: + - uid: 7089 + components: + - type: Transform + pos: 13.5,62.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 +- proto: Sink + entities: + - uid: 1122 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-41.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 2 + - uid: 10267 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 2628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,20.5 + parent: 2 + - uid: 20617 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 22440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 21002 +- proto: SinkWide + entities: + - uid: 429 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 2 +- proto: Sledgehammer + entities: + - uid: 10291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.085021,-50.48558 + parent: 2 +- proto: SmartFridge + entities: + - uid: 1287 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - 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 + - uid: 1648 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 6414 + components: + - type: MetaData + name: AME + - type: Transform + pos: 34.5,38.5 + parent: 2 + - uid: 6415 + components: + - type: MetaData + name: AME + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 6416 + components: + - type: MetaData + name: AME + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 7341 + components: + - type: MetaData + name: Main Engine + - type: Transform + pos: 12.5,42.5 + parent: 2 + - uid: 7342 + components: + - type: MetaData + name: Main Engine + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 7371 + components: + - type: MetaData + name: Main Engine + - type: Transform + pos: 14.5,42.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 19552 + components: + - type: Transform + pos: -46.5,-53.5 + parent: 2 + - uid: 19970 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - uid: 20260 + components: + - type: MetaData + name: East Solars + - type: Transform + pos: 49.5,26.5 + parent: 2 + - uid: 21091 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 21002 + - uid: 21092 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 21002 + - uid: 21093 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 21002 + - uid: 24747 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 21002 +- proto: SmokingPipe + entities: + - uid: 11965 + components: + - type: Transform + pos: -10.600379,-82.23077 + parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 2084 + components: + - type: Transform + pos: -30.462147,-39.674736 + parent: 2 +- proto: SoapDeluxe + entities: + - uid: 2275 + components: + - type: Transform + pos: -29.492983,-45.179882 + parent: 2 +- proto: SoapNT + entities: + - uid: 2736 + components: + - type: Transform + pos: 35.97009,22.553062 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 +- proto: SodaDispenserMachineCircuitboard + entities: + - uid: 5812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.389782,4.401167 + parent: 2 +- proto: SolarPanel + entities: + - uid: 19668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-56.5 + parent: 2 + - uid: 19670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-55.5 + parent: 2 + - uid: 19671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-54.5 + parent: 2 + - uid: 19672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-53.5 + parent: 2 + - uid: 19673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-52.5 + parent: 2 + - uid: 19674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-56.5 + parent: 2 + - uid: 19675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-55.5 + parent: 2 + - uid: 19676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-54.5 + parent: 2 + - uid: 19677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-53.5 + parent: 2 + - uid: 19678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-52.5 + parent: 2 + - uid: 19679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-56.5 + parent: 2 + - uid: 19680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-55.5 + parent: 2 + - uid: 19681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-54.5 + parent: 2 + - uid: 19682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-53.5 + parent: 2 + - uid: 19683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-52.5 + parent: 2 + - uid: 19684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-60.5 + parent: 2 + - uid: 19685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-61.5 + parent: 2 + - uid: 19686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-62.5 + parent: 2 + - uid: 19687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-63.5 + parent: 2 + - uid: 19688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-64.5 + parent: 2 + - uid: 19689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-64.5 + parent: 2 + - uid: 19690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-63.5 + parent: 2 + - uid: 19691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-62.5 + parent: 2 + - uid: 19692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-61.5 + parent: 2 + - uid: 19693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-60.5 + parent: 2 + - uid: 19694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-64.5 + parent: 2 + - uid: 19695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-63.5 + parent: 2 + - uid: 19696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-62.5 + parent: 2 + - uid: 19697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-61.5 + parent: 2 + - uid: 19698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-60.5 + parent: 2 + - uid: 19699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-64.5 + parent: 2 + - uid: 19700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-63.5 + parent: 2 + - uid: 19701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-62.5 + parent: 2 + - uid: 19702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-61.5 + parent: 2 + - uid: 19703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-60.5 + parent: 2 + - uid: 19705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-60.5 + parent: 2 + - uid: 19706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-60.5 + parent: 2 + - uid: 19707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-60.5 + parent: 2 + - uid: 19708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-60.5 + parent: 2 + - uid: 19709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-60.5 + parent: 2 + - uid: 19710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-62.5 + parent: 2 + - uid: 19711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-62.5 + parent: 2 + - uid: 19712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-62.5 + parent: 2 + - uid: 19713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-62.5 + parent: 2 + - uid: 19714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-62.5 + parent: 2 + - uid: 19715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-66.5 + parent: 2 + - uid: 19716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-66.5 + parent: 2 + - uid: 19717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-66.5 + parent: 2 + - uid: 19718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-64.5 + parent: 2 + - uid: 19719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-64.5 + parent: 2 + - uid: 19721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-68.5 + parent: 2 + - uid: 19722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-68.5 + parent: 2 + - uid: 19723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-68.5 + parent: 2 + - uid: 19724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-68.5 + parent: 2 + - uid: 19725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-68.5 + parent: 2 + - uid: 19726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-70.5 + parent: 2 + - uid: 19727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-70.5 + parent: 2 + - uid: 19728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-70.5 + parent: 2 + - uid: 19729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-70.5 + parent: 2 + - uid: 19730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-70.5 + parent: 2 + - uid: 19731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-70.5 + parent: 2 + - uid: 19732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-70.5 + parent: 2 + - uid: 19733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-70.5 + parent: 2 + - uid: 19734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-70.5 + parent: 2 + - uid: 19735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-70.5 + parent: 2 + - uid: 19736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-68.5 + parent: 2 + - uid: 19737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-68.5 + parent: 2 + - uid: 19738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-68.5 + parent: 2 + - uid: 19739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-68.5 + parent: 2 + - uid: 19740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-68.5 + parent: 2 + - uid: 19741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-66.5 + parent: 2 + - uid: 19742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-66.5 + parent: 2 + - uid: 19743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-66.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-66.5 + parent: 2 + - uid: 19745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-66.5 + parent: 2 + - uid: 19746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-64.5 + parent: 2 + - uid: 19747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-64.5 + parent: 2 + - uid: 19748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-64.5 + parent: 2 + - uid: 19749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-64.5 + parent: 2 + - uid: 19750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-64.5 + parent: 2 + - uid: 19751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-62.5 + parent: 2 + - uid: 19752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-62.5 + parent: 2 + - uid: 19753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-62.5 + parent: 2 + - uid: 19754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-62.5 + parent: 2 + - uid: 19755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-62.5 + parent: 2 + - uid: 19756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-60.5 + parent: 2 + - uid: 19757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-60.5 + parent: 2 + - uid: 19758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-60.5 + parent: 2 + - uid: 19759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-60.5 + parent: 2 + - uid: 19760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-60.5 + parent: 2 + - uid: 19814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-64.5 + parent: 2 + - uid: 19815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-64.5 + parent: 2 + - uid: 19816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-64.5 + parent: 2 + - uid: 19817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-66.5 + parent: 2 + - uid: 19818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-66.5 + parent: 2 + - uid: 19971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-47.5 + parent: 2 + - uid: 19994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-47.5 + parent: 2 + - uid: 19995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-47.5 + parent: 2 + - uid: 19996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-47.5 + parent: 2 + - uid: 19997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-47.5 + parent: 2 + - uid: 19998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-47.5 + parent: 2 + - uid: 19999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-47.5 + parent: 2 + - uid: 20000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-47.5 + parent: 2 + - uid: 20001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-47.5 + parent: 2 + - uid: 20002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-47.5 + parent: 2 + - uid: 20003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-47.5 + parent: 2 + - uid: 20004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-49.5 + parent: 2 + - uid: 20005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-49.5 + parent: 2 + - uid: 20006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-49.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-49.5 + parent: 2 + - uid: 20008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-49.5 + parent: 2 + - uid: 20009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-49.5 + parent: 2 + - uid: 20010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-49.5 + parent: 2 + - uid: 20011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-49.5 + parent: 2 + - uid: 20012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-49.5 + parent: 2 + - uid: 20013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-53.5 + parent: 2 + - uid: 20014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-54.5 + parent: 2 + - uid: 20015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-55.5 + parent: 2 + - uid: 20016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-56.5 + parent: 2 + - uid: 20017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-57.5 + parent: 2 + - uid: 20018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-57.5 + parent: 2 + - uid: 20019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-56.5 + parent: 2 + - uid: 20020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-55.5 + parent: 2 + - uid: 20021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-54.5 + parent: 2 + - uid: 20022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-53.5 + parent: 2 + - uid: 20023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-53.5 + parent: 2 + - uid: 20024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-54.5 + parent: 2 + - uid: 20025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-55.5 + parent: 2 + - uid: 20026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-56.5 + parent: 2 + - uid: 20027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-57.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-57.5 + parent: 2 + - uid: 20029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-56.5 + parent: 2 + - uid: 20030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-55.5 + parent: 2 + - uid: 20031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-54.5 + parent: 2 + - uid: 20032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-53.5 + parent: 2 + - uid: 20033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-53.5 + parent: 2 + - uid: 20034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-54.5 + parent: 2 + - uid: 20035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-55.5 + parent: 2 + - uid: 20036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-56.5 + parent: 2 + - uid: 20037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-57.5 + parent: 2 + - uid: 20038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-57.5 + parent: 2 + - uid: 20039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-56.5 + parent: 2 + - uid: 20040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-55.5 + parent: 2 + - uid: 20041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-54.5 + parent: 2 + - uid: 20042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-53.5 + parent: 2 + - uid: 20043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-53.5 + parent: 2 + - uid: 20044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-54.5 + parent: 2 + - uid: 20045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-55.5 + parent: 2 + - uid: 20046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-56.5 + parent: 2 + - uid: 20047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-57.5 + parent: 2 + - uid: 20048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-57.5 + parent: 2 + - uid: 20049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-56.5 + parent: 2 + - uid: 20050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-55.5 + parent: 2 + - uid: 20051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-54.5 + parent: 2 + - uid: 20052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-53.5 + parent: 2 + - uid: 20196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-52.5 + parent: 2 + - uid: 20227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-56.5 + parent: 2 + - uid: 20230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-53.5 + parent: 2 + - uid: 20231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-54.5 + parent: 2 + - uid: 20232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-55.5 + parent: 2 + - uid: 20258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 2 + - uid: 20277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,34.5 + parent: 2 + - uid: 20278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,33.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,32.5 + parent: 2 + - uid: 20280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,31.5 + parent: 2 + - uid: 20281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,35.5 + parent: 2 + - uid: 20282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,34.5 + parent: 2 + - uid: 20283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,33.5 + parent: 2 + - uid: 20284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,32.5 + parent: 2 + - uid: 20285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,31.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,35.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,34.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,33.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,32.5 + parent: 2 + - uid: 20290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,31.5 + parent: 2 + - uid: 20291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,35.5 + parent: 2 + - uid: 20292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,34.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,33.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,32.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,31.5 + parent: 2 + - uid: 20296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,27.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,35.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,34.5 + parent: 2 + - uid: 20299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,33.5 + parent: 2 + - uid: 20300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,32.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,31.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,35.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,34.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,33.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,32.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,31.5 + parent: 2 + - uid: 20307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,35.5 + parent: 2 + - uid: 20308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,34.5 + parent: 2 + - uid: 20309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,33.5 + parent: 2 + - uid: 20310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,32.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,31.5 + parent: 2 + - uid: 20312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,35.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,34.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,33.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,32.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,31.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,35.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,34.5 + parent: 2 + - uid: 20319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,33.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,32.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,31.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,35.5 + parent: 2 + - uid: 20323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,34.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,33.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,32.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,31.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,27.5 + parent: 2 + - uid: 20328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,27.5 + parent: 2 + - uid: 20329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,27.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,27.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,27.5 + parent: 2 + - uid: 20332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,27.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,27.5 + parent: 2 + - uid: 20334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,27.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,25.5 + parent: 2 + - uid: 20336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,25.5 + parent: 2 + - uid: 20337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,25.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,25.5 + parent: 2 + - uid: 20339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,25.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,25.5 + parent: 2 + - uid: 20341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,25.5 + parent: 2 + - uid: 20342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,25.5 + parent: 2 + - uid: 20343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,25.5 + parent: 2 + - uid: 20344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,25.5 + parent: 2 + - uid: 20345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,25.5 + parent: 2 + - uid: 22007 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 21002 + - uid: 22519 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 21002 + - uid: 22520 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 21002 + - uid: 22521 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 21002 + - uid: 22522 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 21002 + - uid: 22524 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 21002 + - uid: 22525 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 21002 + - uid: 22526 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 21002 + - uid: 22527 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 21002 + - uid: 22528 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 21002 + - uid: 22529 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 21002 + - uid: 22530 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 21002 + - uid: 22531 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 21002 + - uid: 22532 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 21002 + - uid: 22533 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 21002 + - uid: 22534 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 21002 + - uid: 22535 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 21002 + - uid: 22536 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 21002 + - uid: 22537 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 21002 + - uid: 22538 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 21002 + - uid: 22539 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 21002 + - uid: 22540 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 21002 + - uid: 22541 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 21002 + - uid: 22542 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 21002 + - uid: 22543 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 21002 + - uid: 22544 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 21002 + - uid: 22545 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 21002 + - uid: 22546 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 21002 + - uid: 22547 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 21002 + - uid: 22548 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 21002 + - uid: 22549 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 21002 + - uid: 22550 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 21002 + - uid: 22551 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 21002 + - uid: 22552 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 21002 + - uid: 22553 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 21002 + - uid: 22554 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 21002 + - uid: 22555 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 21002 + - uid: 22556 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 21002 + - uid: 22557 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 21002 + - uid: 22558 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 21002 + - uid: 22579 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 21002 + - uid: 22580 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 21002 + - uid: 22581 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 21002 + - uid: 22582 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 21002 + - uid: 22583 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 21002 + - uid: 22584 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 21002 + - uid: 22585 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 21002 + - uid: 22586 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 21002 + - uid: 22587 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 21002 + - uid: 22588 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 21002 + - uid: 22589 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 21002 + - uid: 22590 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 21002 + - uid: 22591 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 21002 + - uid: 22592 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 21002 + - uid: 22593 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 21002 + - uid: 22594 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 21002 + - uid: 22595 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 21002 + - uid: 22596 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 21002 + - uid: 22597 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 21002 + - uid: 22598 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 21002 + - uid: 23017 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 21002 + - uid: 23020 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 21002 + - uid: 23030 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 21002 + - uid: 23036 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 21002 + - uid: 23038 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 21002 + - uid: 23049 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 21002 + - uid: 23225 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 21002 + - uid: 23529 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 21002 + - uid: 23530 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 21002 + - uid: 24624 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 21002 + - uid: 24669 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 21002 + - uid: 24703 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 21002 + - uid: 24704 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 21002 + - uid: 24705 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 21002 + - uid: 24706 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 21002 + - uid: 24707 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 21002 + - uid: 24708 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 21002 + - uid: 24709 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 21002 + - uid: 24710 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 21002 + - uid: 24711 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 21002 +- proto: SolarTracker + entities: + - uid: 19669 + components: + - type: Transform + pos: -68.5,-58.5 + parent: 2 + - uid: 20053 + components: + - type: Transform + pos: 63.5,-50.5 + parent: 2 + - uid: 20346 + components: + - type: Transform + pos: 78.5,29.5 + parent: 2 + - uid: 22518 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 21002 +- proto: SolidSecretDoor + entities: + - uid: 984 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-36.5 + parent: 2 +- proto: SpaceCash + entities: + - uid: 7965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.515633,29.627514 + parent: 2 + - uid: 7966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.265633,29.393139 + parent: 2 + - uid: 7967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.218758,29.205639 + parent: 2 + - uid: 7968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.968758,28.893139 + parent: 2 + - uid: 12470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.52337,-39.290558 + parent: 2 + - uid: 12471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.71087,-39.259308 + parent: 2 + - uid: 12472 + components: + - type: Transform + pos: -55.49212,-38.337433 + parent: 2 + - uid: 12473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.757744,-39.415558 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 7969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.562508,28.611889 + parent: 2 + - uid: 12474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.11712,-38.509308 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 11462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.72253,-7.418768 + parent: 2 + - uid: 11463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.417843,-7.418768 + parent: 2 + - uid: 11464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.605343,-7.653143 + parent: 2 +- proto: SpaceHeater + entities: + - uid: 18719 + components: + - type: Transform + pos: -26.5,19.5 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 24160 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 +- proto: SpacemenFigureSpawner + entities: + - uid: 20677 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 20678 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 +- proto: SpaceTickCube + entities: + - uid: 25517 + components: + - type: Transform + parent: 25516 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25518 + components: + - type: Transform + parent: 25516 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25519 + components: + - type: Transform + parent: 25516 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25520 + components: + - type: Transform + parent: 25516 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceTickSpawner + entities: + - uid: 21344 + components: + - type: Transform + pos: 75.5,-1.5 + parent: 21002 + - uid: 21532 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 21002 + - uid: 21773 + components: + - type: Transform + pos: 50.5,2.5 + parent: 21002 + - uid: 22147 + components: + - type: Transform + pos: 59.5,23.5 + parent: 21002 + - uid: 23528 + components: + - type: Transform + pos: 22.5,21.5 + parent: 21002 + - uid: 23532 + components: + - type: Transform + pos: 49.5,12.5 + parent: 21002 + - uid: 23533 + components: + - type: Transform + pos: 4.5,25.5 + parent: 21002 + - uid: 23534 + components: + - type: Transform + pos: 26.5,12.5 + parent: 21002 + - uid: 23535 + components: + - type: Transform + pos: 21.5,36.5 + parent: 21002 + - uid: 25362 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 21002 + - uid: 25555 + components: + - type: Transform + pos: 5.5,28.5 + parent: 21002 + - uid: 25557 + components: + - type: Transform + pos: 24.5,37.5 + parent: 21002 + - uid: 25558 + components: + - type: Transform + pos: 45.5,1.5 + parent: 21002 + - uid: 25560 + components: + - type: Transform + pos: 46.5,18.5 + parent: 21002 + - uid: 25561 + components: + - type: Transform + pos: 60.5,15.5 + parent: 21002 + - uid: 25562 + components: + - type: Transform + pos: 45.5,29.5 + parent: 21002 + - uid: 25563 + components: + - type: Transform + pos: 14.5,25.5 + parent: 21002 + - uid: 25649 + components: + - type: Transform + pos: 56.5,3.5 + parent: 21002 + - uid: 25960 + components: + - type: Transform + pos: 54.5,40.5 + parent: 21002 + - uid: 26097 + components: + - type: Transform + pos: 68.5,43.5 + parent: 21002 + - uid: 26114 + components: + - type: Transform + pos: 70.5,52.5 + parent: 21002 + - uid: 26172 + components: + - type: Transform + pos: 69.5,50.5 + parent: 21002 + - uid: 26407 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 21002 + - uid: 26523 + components: + - type: Transform + pos: 85.5,6.5 + parent: 21002 + - uid: 26825 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 21002 + - uid: 26841 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 21002 + - uid: 27391 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 21002 + - uid: 27705 + components: + - type: Transform + pos: 72.5,-12.5 + parent: 21002 + - uid: 27907 + components: + - type: Transform + pos: 51.5,-18.5 + parent: 21002 +- proto: SpaceVillainArcadeComputerCircuitboard + entities: + - uid: 5813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.608532,3.7917922 + parent: 2 + - uid: 11498 + components: + - type: Transform + pos: -47.508194,-23.288473 + parent: 2 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 19109 + components: + - type: Transform + pos: -46.5,-37.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 19110 + components: + - type: Transform + pos: -45.5,-37.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 19111 + components: + - type: Transform + pos: -44.5,-37.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpawnMobBee + entities: + - uid: 610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - uid: 612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 2 + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - uid: 23415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 23416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 2 + - uid: 614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 18696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 18700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 18701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 2 + - uid: 23413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 23414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 20651 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 +- proto: SpawnMobCatFloppa + entities: + - uid: 20652 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 20673 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 20655 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 20709 + components: + - type: Transform + pos: -30.5,30.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 20653 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 +- proto: SpawnMobGorilla + entities: + - uid: 615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-6.5 + parent: 2 + - uid: 616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-9.5 + parent: 2 +- proto: SpawnMobKangarooWillow + entities: + - uid: 20711 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 +- proto: SpawnMobLizard + entities: + - uid: 617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-14.5 + parent: 2 + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-12.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 20656 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 20712 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 +- proto: SpawnMobMonkey + entities: + - uid: 619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-19.5 + parent: 2 + - uid: 621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 2 + - uid: 622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 20671 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 4031 + components: + - type: Transform + pos: -21.5,17.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 23565 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 23566 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 2 + - uid: 23567 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 +- proto: SpawnMobPenguin + entities: + - uid: 23552 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 23553 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 20670 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 +- proto: SpawnMobPurpleSnake + entities: + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-17.5 + parent: 2 + - uid: 601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 2 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 20672 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 20674 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 20675 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 +- proto: SpawnMobSlug + entities: + - uid: 623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-14.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-12.5 + parent: 2 +- proto: SpawnMobSmallPurpleSnake + entities: + - uid: 602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-19.5 + parent: 2 + - uid: 603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-16.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 20676 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 20710 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 20772 + components: + - type: Transform + pos: -33.5,42.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + pos: -30.5,42.5 + parent: 2 + - uid: 20774 + components: + - type: Transform + pos: -29.5,42.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 20775 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 20776 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 1127 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 2 + - uid: 23594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-49.5 + parent: 2 + - uid: 28410 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 28411 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 28412 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 2 + - uid: 28413 + components: + - type: Transform + pos: 13.5,61.5 + parent: 2 + - uid: 28414 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 20777 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 28329 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 20780 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 11531 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 20782 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 20785 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 24112 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 20786 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 20787 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 20788 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 20789 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 20790 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 20791 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 20792 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 20793 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 20794 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 28326 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - uid: 28327 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 28328 + components: + - type: Transform + pos: 60.5,-35.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 20795 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 20796 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 20797 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 20798 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 20799 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 20800 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 20801 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 20802 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 20803 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 20804 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 411 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 20808 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 20809 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - uid: 20812 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 20814 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 20805 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 20806 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 20807 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 20811 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 2 + - uid: 20813 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 20815 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 20863 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 28403 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 28404 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 28405 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 2 + - uid: 28406 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 28407 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 24164 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 28325 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 28408 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 28409 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 18979 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 20817 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 20818 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 5179 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 20819 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - uid: 20820 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 20822 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 20823 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 20824 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 20825 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 20826 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 20827 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 20828 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 20829 + components: + - type: Transform + pos: -9.5,52.5 + parent: 2 + - uid: 20830 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 20865 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 20866 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 20867 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 20868 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - uid: 20869 + components: + - type: Transform + pos: -0.5,-61.5 + parent: 2 + - uid: 20870 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - uid: 20871 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 20872 + components: + - type: Transform + pos: -0.5,-62.5 + parent: 2 + - uid: 20873 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 20874 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 20875 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 20876 + components: + - type: Transform + pos: -52.5,-39.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 20832 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 20833 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 20834 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 20836 + components: + - type: Transform + pos: 11.5,-44.5 + parent: 2 + - uid: 20837 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 20838 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 20839 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 20840 + components: + - type: Transform + pos: -56.5,-21.5 + parent: 2 + - uid: 20841 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 665 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 20842 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 2 + - uid: 20843 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 20845 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 20846 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 20851 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 23598 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 20847 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 20849 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 20850 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - uid: 20852 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 23597 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 20853 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 20854 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 20855 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 23759 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 23760 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 18532 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 20859 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 20860 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 20861 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 20862 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 18378 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 20856 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 23645 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 23064 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 +- proto: SpawnPointZookeeper + entities: + - uid: 20864 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 3068 + components: + - type: Transform + pos: 24.126179,-4.4470134 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 24.360554,-4.3220134 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 24.532429,-4.4938884 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: 24.735554,-4.3063884 + parent: 2 +- proto: SprayPainter + entities: + - uid: 5803 + components: + - type: Transform + pos: -28.54587,5.489859 + parent: 2 +- proto: StairDark + entities: + - uid: 24254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-7.5 + parent: 2 + - uid: 24255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-7.5 + parent: 2 + - uid: 24256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-7.5 + parent: 2 + - uid: 24257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-7.5 + parent: 2 +- proto: Stairs + entities: + - uid: 2415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 +- proto: StairStageDark + entities: + - uid: 28344 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 + - uid: 28345 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 +- proto: StairWhite + entities: + - uid: 23627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 + - uid: 23629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-32.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 1489 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 +- proto: StationMap + entities: + - uid: 23439 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 23449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-35.5 + parent: 2 + - uid: 23450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 2 + - uid: 23451 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 23452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 23453 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - uid: 23462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - uid: 23463 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 23493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,47.5 + parent: 2 + - uid: 28042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 21002 +- proto: StationMapCircuitboard + entities: + - uid: 5814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.389782,3.5105422 + parent: 2 +- proto: StatueVenusBlue + entities: + - uid: 61 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 +- proto: StatueVenusRed + entities: + - uid: 62 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 1366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-33.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-38.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 +- proto: StimpackMini + entities: + - uid: 22144 + components: + - type: Transform + parent: 22143 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22145 + components: + - type: Transform + parent: 22143 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Stool + entities: + - uid: 930 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 19112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-38.5 + parent: 2 + - uid: 19113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-38.5 + parent: 2 + - uid: 19114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-38.5 + parent: 2 + - uid: 19115 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 19116 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 19117 + components: + - type: Transform + pos: -46.5,-40.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,6.5 + parent: 2 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,8.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,7.5 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,9.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-52.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-53.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-54.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-35.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-34.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-33.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,33.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,33.5 + parent: 2 + - uid: 18503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,33.5 + parent: 2 + - uid: 18533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 2289 + components: + - type: Transform + anchored: True + pos: -16.5,-33.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 8860 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 18939 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 1185 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 10002 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 22503 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 21002 + - uid: 24748 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 21002 +- proto: SuitStorageAtmos + entities: + - uid: 8905 + components: + - type: Transform + pos: -30.5,39.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: -29.5,39.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: -28.5,39.5 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 11276 + components: + - type: Transform + pos: -56.5,10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11277 +- proto: SuitStorageCaptain + entities: + - uid: 2742 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 6617 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 1576 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 7668 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 6116 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 3948 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - uid: 21045 + components: + - type: Transform + pos: 1.5,2.5 + parent: 21002 + - uid: 21047 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 21002 + - uid: 21185 + components: + - type: Transform + pos: 4.5,2.5 + parent: 21002 +- proto: SuitStorageHOS + entities: + - uid: 4327 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 9893 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 11818 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + pos: -55.5,-23.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: -54.5,-23.5 + parent: 2 + - uid: 11821 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 3294 + components: + - type: Transform + pos: 37.5,-22.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 3732 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 20877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 2 + - type: SurveillanceCamera + id: Bridge + - uid: 20878 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - type: SurveillanceCamera + id: Boardroom + - uid: 20879 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - type: SurveillanceCamera + id: Captain's Office + - uid: 20880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 + - type: SurveillanceCamera + id: Captain's Bedroom + - uid: 20881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: HoP's + - uid: 20882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,6.5 + parent: 2 + - type: SurveillanceCamera + id: EVA + - uid: 20891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - type: SurveillanceCamera + id: Vault + - uid: 20892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 + - type: SurveillanceCamera + id: Board Storage + - uid: 20911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - type: SurveillanceCamera + id: AI Core + - uid: 20912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,16.5 + parent: 2 + - type: SurveillanceCamera + id: AI Control + - uid: 20913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,8.5 + parent: 2 + - type: SurveillanceCamera + id: AI Spaceway + - uid: 20914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,18.5 + parent: 2 + - type: SurveillanceCamera + id: AI + - uid: 20963 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - type: SurveillanceCamera + id: Telecoms +- proto: SurveillanceCameraEngineering + entities: + - uid: 20897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,4.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos Desk + - uid: 20898 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos 1 + - uid: 20899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,24.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos 2 + - uid: 20900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,34.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos 3 + - uid: 20901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,43.5 + parent: 2 + - type: SurveillanceCamera + id: Atmos Lockeroom + - uid: 20902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,47.5 + parent: 2 + - type: SurveillanceCamera + id: TEG + - uid: 20903 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - type: SurveillanceCamera + id: CE's + - uid: 20904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,50.5 + parent: 2 + - type: SurveillanceCamera + id: PA + - uid: 20905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,63.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + id: Main Engine + - type: ActiveUserInterface + - uid: 20906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,40.5 + parent: 2 + - type: SurveillanceCamera + id: Break Room + - uid: 20907 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Lockeroom + - uid: 20908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - type: SurveillanceCamera + id: AME + - uid: 20909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,32.5 + parent: 2 + - type: SurveillanceCamera + id: Grav + - uid: 20910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - type: SurveillanceCamera + id: East Solars + - uid: 23805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES A + - uid: 23806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES B + - uid: 23807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES C +- proto: SurveillanceCameraGeneral + entities: + - uid: 20951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - type: SurveillanceCamera + id: Rotunda + - uid: 20952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - type: SurveillanceCamera + id: Parkway NW + - uid: 20953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,17.5 + parent: 2 + - type: SurveillanceCamera + id: Parkway NE + - uid: 20954 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - type: SurveillanceCamera + id: Zoo 1 + - uid: 20955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 2 + - type: SurveillanceCamera + id: Zoo 2 + - uid: 20956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - type: SurveillanceCamera + id: Zoo 3 + - uid: 20957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - type: SurveillanceCamera + id: Parkway SE + - uid: 20958 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - type: SurveillanceCamera + id: Court + - uid: 20959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 2 + - type: SurveillanceCamera + id: Evac + - uid: 20961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Tool Room + - uid: 20962 + components: + - type: Transform + pos: -47.5,-35.5 + parent: 2 + - type: SurveillanceCamera + id: Cryo + - uid: 20964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-56.5 + parent: 2 + - type: SurveillanceCamera + id: Arrivals + - uid: 23677 + components: + - type: Transform + pos: -5.5,49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Dock +- proto: SurveillanceCameraMedical + entities: + - uid: 20915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-32.5 + parent: 2 + - type: SurveillanceCamera + id: Medbay + - uid: 20916 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - type: SurveillanceCamera + id: Treatment + - uid: 20920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-34.5 + parent: 2 + - type: SurveillanceCamera + id: Cryopods + - uid: 20921 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - type: SurveillanceCamera + id: CMO's + - uid: 20922 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - type: SurveillanceCamera + id: VIP + - uid: 20923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 2 + - type: SurveillanceCamera + id: Break Room + - uid: 20924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 2 + - type: SurveillanceCamera + id: Virology + - uid: 20925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-25.5 + parent: 2 + - type: SurveillanceCamera + id: Lockers + - uid: 20926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - type: SurveillanceCamera + id: Morgue + - uid: 20927 + components: + - type: MetaData + desc: a small plaque reads "Don't worry its off." + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Psychologist's + - uid: 20928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-44.5 + parent: 2 + - type: SurveillanceCamera + id: Psych + - uid: 20929 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 2 + - type: SurveillanceCamera + id: Chemistry + - uid: 20930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-38.5 + parent: 2 + - type: SurveillanceCamera + id: OR I +- proto: SurveillanceCameraMonitorCircuitboard + entities: + - uid: 5815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.421032,3.7761672 + parent: 2 +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 9552 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 9553 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 9554 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 9555 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 9557 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 9556 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 9551 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 9550 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 20931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-46.5 + parent: 2 + - type: SurveillanceCamera + id: OR II + - uid: 20932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-50.5 + parent: 2 + - type: SurveillanceCamera + id: Robotics + - uid: 20933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-45.5 + parent: 2 + - type: SurveillanceCamera + id: Robo Bay + - uid: 20934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-41.5 + parent: 2 + - type: SurveillanceCamera + id: Science Desk + - uid: 20935 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - type: SurveillanceCamera + id: Xeno Lab + - uid: 20936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-40.5 + parent: 2 + - type: SurveillanceCamera + id: Science Main + - uid: 20937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-29.5 + parent: 2 + - type: SurveillanceCamera + id: RD's + - uid: 20938 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - type: SurveillanceCamera + id: Server Room +- proto: SurveillanceCameraSecurity + entities: + - uid: 13070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Balifery + - uid: 13112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory Desk + - uid: 18167 + components: + - type: Transform + pos: 25.5,0.5 + parent: 21002 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: the mines + - uid: 18219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 21002 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: perma courtyard + - uid: 20883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + id: Main Entrance + - type: ActiveUserInterface + - uid: 20884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-15.5 + parent: 2 + - type: SurveillanceCamera + id: Cell Block + - uid: 20885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + id: Armory + - type: ActiveUserInterface + - uid: 20886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-26.5 + parent: 2 + - type: SurveillanceCamera + id: Dock + - uid: 20887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-33.5 + parent: 2 + - type: SurveillanceCamera + id: Lockeroom + - uid: 20888 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 2 + - type: SurveillanceCamera + id: HoS's + - uid: 20889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-35.5 + parent: 2 + - type: SurveillanceCamera + id: Range + - uid: 20890 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - type: SurveillanceCamera + id: Interrogation + - uid: 21062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 21002 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: perma dock + - uid: 23431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security Desk +- proto: SurveillanceCameraService + entities: + - uid: 9387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Engi Bar + - uid: 20939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,22.5 + parent: 2 + - type: SurveillanceCamera + id: Kitchen + - uid: 20940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - type: SurveillanceCamera + id: Bar + - uid: 20941 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: Jani + - uid: 20942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Law Office + - uid: 20943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,38.5 + parent: 2 + - type: SurveillanceCamera + id: Library + - uid: 20944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 2 + - type: SurveillanceCamera + id: Chapel + - uid: 20945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 2 + - type: SurveillanceCamera + id: Zookeeper's + - uid: 20947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - type: SurveillanceCamera + id: Botany + - uid: 20948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 2 + - type: SurveillanceCamera + id: Theatre + - uid: 20950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-53.5 + parent: 2 + - type: SurveillanceCamera + id: Arrival Stand +- proto: SurveillanceCameraSupply + entities: + - uid: 20893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-1.5 + parent: 2 + - type: SurveillanceCamera + id: Cargo Desk + - uid: 20894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-6.5 + parent: 2 + - type: SurveillanceCamera + id: Cargo + - uid: 20895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,10.5 + parent: 2 + - type: SurveillanceCamera + id: QM's + - uid: 20896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-20.5 + parent: 2 + - type: SurveillanceCamera + id: Salvage +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 23224 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 523 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - type: SurveillanceCamera + id: Exhibit A + - uid: 532 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - type: SurveillanceCamera + id: Exhibit B + - uid: 3481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: NT-Span + - uid: 18963 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - type: SurveillanceCamera + id: SECS + - uid: 23494 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: CMO's Anatomy +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 11853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Field Repor + - uid: 11854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: News at 11 +- proto: SyringeEphedrine + entities: + - uid: 24158 + components: + - type: Transform + pos: -37.53518,-64.44388 + parent: 2 +- proto: Table + entities: + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,22.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,22.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-34.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-24.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-24.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-24.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-42.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-41.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-38.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-39.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,22.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,22.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,20.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-16.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-35.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-38.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-26.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-26.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-14.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-57.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-57.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-58.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-58.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,30.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,29.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,28.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,31.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,23.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,23.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,22.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,21.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,43.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,43.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,43.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,43.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,49.5 + parent: 2 + - uid: 9931 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 9932 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + pos: -48.5,3.5 + parent: 2 + - uid: 11440 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 11442 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 11447 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 11449 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,3.5 + parent: 2 + - uid: 11538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: -52.5,-20.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-32.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-32.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-33.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-34.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-29.5 + parent: 2 + - uid: 19041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 19042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-51.5 + parent: 2 + - uid: 19052 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 19053 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 19054 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - uid: 19057 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 19058 + components: + - type: Transform + pos: 33.5,-41.5 + parent: 2 + - uid: 19059 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 2 + - uid: 22351 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 21002 + - uid: 22746 + components: + - type: Transform + pos: 5.5,9.5 + parent: 21002 + - uid: 22747 + components: + - type: Transform + pos: 6.5,9.5 + parent: 21002 + - uid: 22748 + components: + - type: Transform + pos: 8.5,7.5 + parent: 21002 + - uid: 22749 + components: + - type: Transform + pos: 8.5,6.5 + parent: 21002 + - uid: 22750 + components: + - type: Transform + pos: 9.5,7.5 + parent: 21002 + - uid: 22751 + components: + - type: Transform + pos: 9.5,6.5 + parent: 21002 + - uid: 23003 + components: + - type: Transform + pos: 12.5,6.5 + parent: 21002 + - uid: 23005 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 21002 + - uid: 23024 + components: + - type: Transform + pos: 19.5,3.5 + parent: 21002 + - uid: 23026 + components: + - type: Transform + pos: 9.5,1.5 + parent: 21002 + - uid: 23027 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 21002 + - uid: 23426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-10.5 + parent: 2 + - uid: 23445 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 23587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-49.5 + parent: 2 + - uid: 23588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-49.5 + parent: 2 + - uid: 23596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-47.5 + parent: 2 + - uid: 23828 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 23829 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 24130 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 24151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,3.5 + parent: 2 + - uid: 24226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 2 + - uid: 24228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-3.5 + parent: 2 + - uid: 25228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-43.5 + parent: 21002 + - uid: 25229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 21002 + - uid: 25233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 21002 + - uid: 25236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 21002 + - uid: 25237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 21002 + - uid: 25238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 21002 + - uid: 28365 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 7942 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-38.5 + parent: 2 + - uid: 12262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-39.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-38.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-39.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-38.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-39.5 + parent: 2 + - uid: 18702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 2 + - uid: 22575 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 21002 + - uid: 26318 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 21002 + - uid: 27646 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 21002 + - uid: 27816 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 21002 +- proto: TableCounterMetal + entities: + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,18.5 + parent: 2 + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: 35.5,-34.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 294 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 9398 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-52.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-53.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-54.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-36.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-36.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-36.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-34.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-32.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-35.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-33.5 + parent: 2 + - uid: 19160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - uid: 20857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,34.5 + parent: 2 + - uid: 20858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,34.5 + parent: 2 + - uid: 23276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 2 + - uid: 23403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,34.5 + parent: 2 + - uid: 23412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,35.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 2 + - uid: 23509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,34.5 + parent: 2 + - uid: 23510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,34.5 + parent: 2 +- proto: TableFancyBlue + entities: + - uid: 18055 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 +- proto: TableFancyCyan + entities: + - uid: 257 + components: + - type: Transform + pos: -29.5,30.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -28.5,30.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -29.5,31.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: -28.5,31.5 + parent: 2 + - uid: 17442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 2 + - uid: 17452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,16.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,15.5 + parent: 2 +- proto: TableFancyWhite + entities: + - uid: 17428 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 17436 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 17439 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 1223 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-20.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-10.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-10.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-10.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-39.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 9783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-33.5 + parent: 2 + - uid: 9784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-33.5 + parent: 2 + - uid: 9785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-35.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 2 + - uid: 9816 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-50.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-50.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-44.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-44.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-44.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-41.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-41.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-45.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: -2.5,-53.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 1018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-26.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-10.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,44.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,45.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-11.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,4.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,46.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-9.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,33.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,30.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,38.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,37.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,38.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,38.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,36.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,35.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,38.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,2.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,39.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,39.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,39.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,39.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-23.5 + parent: 2 + - uid: 11481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-22.5 + parent: 2 + - uid: 11482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-19.5 + parent: 2 + - uid: 11485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-18.5 + parent: 2 + - uid: 11486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 2 + - uid: 18626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-18.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-18.5 + parent: 2 + - uid: 19033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 + - uid: 23398 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 23399 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 + - uid: 23400 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 23401 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 23665 + components: + - type: Transform + pos: -1.5,47.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - uid: 24250 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 24251 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 +- proto: TableStone + entities: + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,16.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,16.5 + parent: 2 + - uid: 908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 2 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-14.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-14.5 + parent: 2 + - uid: 19130 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 19131 + components: + - type: Transform + pos: 43.5,36.5 + parent: 2 + - uid: 19132 + components: + - type: Transform + pos: 42.5,36.5 + parent: 2 + - uid: 19133 + components: + - type: Transform + pos: 42.5,42.5 + parent: 2 + - uid: 19134 + components: + - type: Transform + pos: 43.5,42.5 + parent: 2 + - uid: 19135 + components: + - type: Transform + pos: 44.5,42.5 + parent: 2 +- proto: TableWood + entities: + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,15.5 + parent: 2 + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 2 + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-2.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-25.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: -42.5,-38.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: -40.5,-45.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-27.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-7.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-40.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-40.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-41.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-40.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,44.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,37.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,37.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,31.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-40.5 + parent: 2 + - uid: 10580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-55.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-54.5 + parent: 2 + - uid: 10582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-53.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + pos: -48.5,7.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,7.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,5.5 + parent: 2 + - uid: 11828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-82.5 + parent: 2 + - uid: 11851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-27.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-26.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + pos: -54.5,-21.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + pos: -54.5,-20.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - uid: 11937 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 11938 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-76.5 + parent: 2 + - uid: 11944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-69.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-67.5 + parent: 2 + - uid: 11947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-74.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-82.5 + parent: 2 + - uid: 11950 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 11952 + components: + - type: Transform + pos: -2.5,-62.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: -1.5,-62.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - uid: 12170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 2 + - uid: 12171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-21.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-34.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,9.5 + parent: 2 + - uid: 18714 + components: + - type: Transform + pos: -56.5,1.5 + parent: 2 + - uid: 18715 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - uid: 18716 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 18717 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-49.5 + parent: 2 + - uid: 19166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-50.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-50.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 19182 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 20682 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - uid: 20685 + components: + - type: Transform + pos: -17.5,35.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + pos: 27.5,4.5 + parent: 21002 + - uid: 22408 + components: + - type: Transform + pos: 27.5,0.5 + parent: 21002 + - uid: 22709 + components: + - type: Transform + pos: 26.5,4.5 + parent: 21002 + - uid: 22886 + components: + - type: Transform + pos: 16.5,1.5 + parent: 21002 + - uid: 23374 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 23375 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 23376 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 23859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-59.5 + parent: 2 +- proto: TargetClown + entities: + - uid: 2266 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 +- proto: TargetDarts + entities: + - uid: 2247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-47.5 + parent: 2 +- proto: TargetHuman + entities: + - uid: 4108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-35.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-38.5 + parent: 2 +- proto: TargetSyndicate + entities: + - uid: 4107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-36.5 + parent: 2 +- proto: TegCenter + entities: + - uid: 3083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,43.5 + parent: 2 +- proto: TegCirculator + entities: + - uid: 5795 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 7814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,43.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 9488 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9489 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 9535 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9536 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 9537 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9538 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 9539 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9540 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 9541 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9542 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 9543 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9544 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 9545 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9546 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 9547 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 9548 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TelecomServerCircuitboard + entities: + - uid: 11490 + components: + - type: Transform + pos: -47.49778,-19.04889 + parent: 2 +- proto: TeslaCoil + entities: + - uid: 7333 + components: + - type: Transform + pos: 25.5,47.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: 21.5,46.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + pos: 22.5,46.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 +- proto: TeslaGenerator + entities: + - uid: 7355 + components: + - type: Transform + pos: 25.5,49.5 + parent: 2 +- proto: TeslaGroundingRod + entities: + - uid: 7347 + components: + - type: Transform + pos: 22.5,47.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 21.5,47.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: 23.5,47.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: 19.5,68.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 7.5,68.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + pos: 24.5,47.5 + parent: 2 +- proto: ThermomachineFreezerMachineCircuitBoard + entities: + - uid: 5808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.421032,4.416792 + parent: 2 +- proto: ThrusterMachineCircuitboard + entities: + - uid: 11879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.344433,-20.393656 + parent: 2 + - uid: 11882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.219433,-20.956156 + parent: 2 +- proto: ThrusterUnanchored + entities: + - uid: 9454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,50.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,49.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: 31.5,48.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,47.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: 28.5,45.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,47.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 2658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - uid: 22442 + components: + - type: Transform + pos: 18.5,6.5 + parent: 21002 + - uid: 23643 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 +- proto: ToolboxArtisticFilled + entities: + - uid: 5800 + components: + - type: Transform + pos: -28.467745,6.021109 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 5799 + components: + - type: Transform + pos: -33.467743,6.646109 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 5797 + components: + - type: Transform + pos: -32.577118,6.646109 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: -28.498995,6.661734 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: 11.537419,-34.730373 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 5796 + components: + - type: Transform + pos: -29.38962,6.646109 + parent: 2 +- proto: Torch + entities: + - uid: 6671 + components: + - type: Transform + pos: 15.86487,29.65174 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: 16.02112,29.37049 + parent: 2 +- proto: TowercapSeeds + entities: + - uid: 21648 + components: + - type: Transform + parent: 21647 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21649 + components: + - type: Transform + parent: 21647 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToyAi + entities: + - uid: 12731 + components: + - type: Transform + pos: 51.49874,16.594887 + parent: 2 +- proto: ToyFigurineRatKing + entities: + - uid: 2186 + components: + - type: Transform + pos: -42.62832,-34.441296 + parent: 2 +- proto: ToyFigurineRatServant + entities: + - uid: 2184 + components: + - type: Transform + pos: -42.03435,-34.563053 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: -42.175194,-34.035046 + parent: 2 +- proto: ToyFigurineThief + entities: + - uid: 5577 + components: + - type: Transform + parent: 8002 + - type: Physics + canCollide: False +- proto: ToyRubberDuck + entities: + - uid: 3734 + components: + - type: Transform + pos: 35.30755,22.53226 + parent: 2 +- proto: ToySpawner + entities: + - uid: 20680 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - uid: 20681 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 21002 + - uid: 23048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 21002 + - uid: 23050 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 21002 +- proto: TrashBag + entities: + - uid: 3060 + components: + - type: Transform + parent: 3055 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3063 + components: + - type: Transform + pos: 23.204304,-4.3532634 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 23.407429,-4.2595134 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 23.42726,-4.4524517 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 23.610554,-4.3220134 + parent: 2 + - uid: 3075 + components: + - type: Transform + parent: 3055 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6669 + components: + - type: Transform + pos: 13.729453,29.485073 + parent: 2 + - uid: 6670 + components: + - type: Transform + pos: 13.448203,28.974655 + parent: 2 + - uid: 23034 + components: + - type: Transform + pos: 19.430145,3.6658764 + parent: 21002 + - uid: 23035 + components: + - type: Transform + pos: 19.628067,3.6658764 + parent: 21002 + - uid: 23041 + components: + - type: Transform + pos: 19.49913,3.5206451 + parent: 21002 + - uid: 23042 + components: + - type: Transform + pos: 19.290787,3.6456451 + parent: 21002 + - uid: 28350 + components: + - type: Transform + pos: 23.611437,-4.32009 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 23753 + components: + - type: Transform + pos: 13.830492,29.010149 + parent: 2 +- proto: trayScanner + entities: + - uid: 28349 + components: + - type: Transform + pos: -24.948425,23.617188 + parent: 2 + - uid: 28352 + components: + - type: Transform + pos: -32.484524,43.639366 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 3226 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1666: + - Left: Forward + - Right: Reverse + - Middle: Off + 1667: + - Left: Forward + - Right: Reverse + - Middle: Off + 3247: + - Left: Forward + - Right: Reverse + - Middle: Off + 3327: + - Left: Forward + - Right: Reverse + - Middle: Off + 3652: + - Left: Forward + - Right: Reverse + - Middle: Off + 1767: + - Left: Forward + - Right: Reverse + - Middle: Off + 3236: + - Left: Forward + - Right: Reverse + - Middle: Off + 2120: + - Left: Forward + - Right: Reverse + - Middle: Off + 3225: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11354 + components: + - type: Transform + pos: -57.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11358: + - Left: Forward + - Right: Reverse + - Middle: Off + 11345: + - Left: Forward + - Right: Reverse + - Middle: Off + 11346: + - Left: Forward + - Right: Reverse + - Middle: Off + 11348: + - Left: Forward + - Right: Reverse + - Middle: Off + 11349: + - Left: Forward + - Right: Reverse + - Middle: Off + 11352: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 11355 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11357: + - Left: Forward + - Right: Reverse + - Middle: Off + 11344: + - Left: Forward + - Right: Reverse + - Middle: Off + 11353: + - Left: Forward + - Right: Reverse + - Middle: Off + 11350: + - Left: Forward + - Right: Reverse + - Middle: Off + 11347: + - Left: Forward + - Right: Reverse + - Middle: Off + 11356: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 12098 + components: + - type: Transform + pos: -52.5,-12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12097: + - Left: Forward + - Right: Reverse + - Middle: Off + 12096: + - Left: Forward + - Right: Reverse + - Middle: Off + 12095: + - Left: Forward + - Right: Reverse + - Middle: Off + 12094: + - Left: Forward + - Right: Reverse + - Middle: Off + 12092: + - Left: Forward + - Right: Reverse + - Middle: Off + 12093: + - Left: Forward + - Right: Reverse + - Middle: Off + 11660: + - Left: Forward + - Right: Reverse + - Middle: Off + 11659: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 23273 + components: + - type: Transform + pos: -56.5,-27.5 + parent: 2 + - uid: 23758 + components: + - type: Transform + pos: -56.5,-27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11571: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 9643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-49.5 + parent: 2 + - uid: 23586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-49.5 + parent: 2 +- proto: UniformPrinter + entities: + - uid: 3486 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 +- proto: UprightPianoInstrument + entities: + - uid: 20767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 1245 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 5645 + components: + - type: Transform + parent: 486 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5646 + components: + - type: Transform + parent: 486 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VendingBarDrobe + entities: + - uid: 478 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 9324 + components: + - type: Transform + pos: -26.5,39.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 452 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 11814 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 3482 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 1049 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 485 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 426 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 1669 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 1645 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 5342 + components: + - type: Transform + pos: 35.5,-60.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - uid: 18890 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 23018 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 21002 +- proto: VendingMachineClothing + entities: + - uid: 11836 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 11935 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 1328 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - uid: 24222 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 7868 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 3787 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 489 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 4291 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 6255 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 6717 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 8043 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 24189 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 21002 +- proto: VendingMachineGeneDrobe + entities: + - uid: 256 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 506 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 5643 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 3053 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 5840 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 1522 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 1521 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 3315 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 10175 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 10447 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 11815 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 9952 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 4280 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 4272 + components: + - type: Transform + pos: 30.5,-34.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 3314 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 21224 + components: + - type: Transform + pos: 12.5,3.5 + parent: 21002 +- proto: VendingMachineSnackOrange + entities: + - uid: 6256 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 21229 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 21002 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 23792 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 6153 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 2 + - uid: 23821 + components: + - type: Transform + pos: -27.5,12.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 2253 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 5751 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 1288 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-26.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-26.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 11934 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 5750 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 +- proto: WallAsteroidCobblebrick + entities: + - uid: 477 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 +- proto: WallmountTelescreen + entities: + - uid: 2668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,9.5 + parent: 2 + - uid: 23602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 2 +- proto: WallmountTelescreenFrame + entities: + - uid: 2379 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 3581 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-43.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 48.5,-34.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 9936 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 19457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,30.5 + parent: 2 + - uid: 20658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 2 +- proto: WallPlastic + entities: + - uid: 2169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-35.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-35.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-34.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-33.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-32.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-32.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-32.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-32.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-33.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-34.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-35.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,44.5 + parent: 2 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-10.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-18.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-10.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 293 + components: + - type: MetaData + name: closing time + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 2 + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-37.5 + parent: 2 + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 2 + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-3.5 + parent: 2 + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 2 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 2 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 2 + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 550 + components: + - type: MetaData + name: window shutters + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 2 + - uid: 558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-5.5 + parent: 2 + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-5.5 + parent: 2 + - uid: 560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-10.5 + parent: 2 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-15.5 + parent: 2 + - uid: 567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-20.5 + parent: 2 + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 2 + - uid: 579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-19.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-20.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-18.5 + parent: 2 + - uid: 582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-19.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-20.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-18.5 + parent: 2 + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 2 + - uid: 712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 2 + - uid: 720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,55.5 + parent: 2 + - uid: 736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,55.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 755 + components: + - type: MetaData + name: window shutters + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-13.5 + parent: 2 + - uid: 801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 2 + - uid: 811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 2 + - uid: 814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-14.5 + parent: 2 + - uid: 816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 2 + - uid: 817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-16.5 + parent: 2 + - uid: 819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 2 + - uid: 820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 2 + - uid: 823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-24.5 + parent: 2 + - uid: 824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-24.5 + parent: 2 + - uid: 825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 2 + - uid: 826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 2 + - uid: 827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 2 + - uid: 828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 2 + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-24.5 + parent: 2 + - uid: 830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-24.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-24.5 + parent: 2 + - uid: 832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-24.5 + parent: 2 + - uid: 833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-24.5 + parent: 2 + - uid: 834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-24.5 + parent: 2 + - uid: 835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-23.5 + parent: 2 + - uid: 836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-22.5 + parent: 2 + - uid: 837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-21.5 + parent: 2 + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 2 + - uid: 839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-19.5 + parent: 2 + - uid: 840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-18.5 + parent: 2 + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-31.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -26.5,12.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -25.5,17.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: -23.5,22.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,7.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,8.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,39.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-19.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-9.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-9.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-21.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-21.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-21.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-21.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-9.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-9.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-9.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-9.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-9.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-9.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-21.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-21.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-21.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-20.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-19.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-18.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-17.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-16.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-15.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-14.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-13.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-11.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-2.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-2.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-2.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-40.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-40.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-40.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-40.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-40.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-40.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-40.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-40.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-40.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-40.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-37.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-33.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-24.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-24.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-24.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-24.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-24.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-22.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-24.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-24.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-24.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-19.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-33.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-36.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-37.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-34.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-37.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-37.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-37.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-33.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-37.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-37.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-37.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-34.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-37.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-37.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-37.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-37.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-37.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-36.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-35.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-33.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-30.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,24.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-41.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-42.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-42.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-41.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-7.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-6.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-5.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: -39.5,-29.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,41.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-36.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-35.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-35.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-41.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-37.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-40.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-41.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-41.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-41.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-41.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-41.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-41.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-41.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-33.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-36.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-37.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-47.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-46.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-38.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-48.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-42.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-39.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-40.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-41.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-36.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-34.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-35.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-31.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-32.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-48.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-48.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-48.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-48.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-48.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-48.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-48.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-48.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-48.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-48.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-48.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-37.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,3.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,11.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,16.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,10.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,10.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,10.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,10.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,10.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,11.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,11.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,5.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,17.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,19.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,19.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,19.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,22.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,23.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,23.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,23.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,23.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,23.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,23.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,23.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,23.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,23.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,22.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,19.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,16.5 + parent: 2 + - uid: 2626 + components: + - type: MetaData + name: window shutters + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,11.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,10.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,10.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,12.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,14.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,16.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,17.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,17.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,16.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,20.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,22.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,11.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,17.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,48.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 45.5,22.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,36.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,27.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,27.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,18.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,19.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,20.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,21.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,22.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,27.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,26.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-22.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-2.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-3.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-1.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-3.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-1.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-7.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-3.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-7.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-9.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-10.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-5.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-4.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-2.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-12.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-13.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-14.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-15.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-16.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-17.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-20.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-17.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-18.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-20.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-21.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-22.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-19.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-31.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-20.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 57.5,-34.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-18.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-17.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 52.5,-34.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: 60.5,-34.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-20.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-19.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-20.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-21.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-19.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-20.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-21.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-19.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-20.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-21.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-22.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-22.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-22.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 59.5,-34.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-17.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-18.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-30.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-16.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-19.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-30.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-30.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-18.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-22.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-32.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-30.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-8.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-7.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-12.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-13.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-14.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-15.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-5.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-21.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-19.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: 58.5,-34.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-30.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-30.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-30.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-30.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-30.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-30.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-21.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-30.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-21.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-30.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-22.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-22.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-19.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-20.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-29.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-27.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-25.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-23.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-30.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-30.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-29.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-29.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-28.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-27.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-26.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-25.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-24.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: 51.5,-34.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: 50.5,-34.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: 48.5,-34.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-33.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: 56.5,-32.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-30.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: 61.5,-31.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: 61.5,-32.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 61.5,-33.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: 61.5,-34.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-16.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-15.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-14.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-13.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-31.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-32.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-33.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-34.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-22.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-21.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-20.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-19.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-18.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-17.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-35.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-35.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-21.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-27.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-27.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-27.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-18.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-19.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-19.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-19.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-20.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-21.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-22.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-24.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-27.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-26.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-27.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-24.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-29.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-29.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-29.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-29.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-35.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-35.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-35.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-35.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-39.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-39.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-40.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-40.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-40.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-40.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-41.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-42.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-35.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-38.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-39.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-33.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-31.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-36.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-37.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-38.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-41.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-37.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-42.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-42.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-42.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-42.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-42.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-42.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-41.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: 36.5,-38.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: 36.5,-42.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: 37.5,-42.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-22.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-35.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-42.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-42.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-42.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-42.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-42.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-42.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-42.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-42.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-43.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-43.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-44.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-44.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,28.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,26.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-45.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-46.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-46.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-46.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-47.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-47.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-49.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-51.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-53.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-53.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-55.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-58.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-60.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-61.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-61.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-60.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-58.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-55.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-53.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-53.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-51.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-49.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-47.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-47.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-46.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-46.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-46.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-46.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-45.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-45.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-44.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-44.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-45.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-45.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-45.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-46.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-46.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-46.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-47.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-47.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-47.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-47.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,29.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,29.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,29.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,29.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,20.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,21.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,22.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,23.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,25.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,27.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,24.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,24.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,27.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,27.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,26.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,29.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,29.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,29.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,29.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,30.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,31.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,33.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,29.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: -15.5,-59.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,30.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: -27.5,2.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-27.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-28.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: 47.5,7.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: 49.5,7.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,34.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,37.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,36.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,39.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,39.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,38.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,25.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,31.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,27.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,29.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,30.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,40.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,37.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,34.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,36.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,38.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,39.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: -38.5,42.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,41.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: 37.5,35.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: 37.5,37.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,39.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,41.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,41.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,41.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,41.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,41.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,40.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,39.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,36.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,41.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,41.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,41.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,35.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,41.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,41.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,41.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,41.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,35.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,35.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,35.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,35.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,41.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,35.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,35.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,35.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,35.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,34.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,33.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,33.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,32.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,31.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,27.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,28.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,28.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,29.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,31.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,32.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,33.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,35.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,36.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,38.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: 39.5,45.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,38.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,38.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,39.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,38.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,39.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,40.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,41.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,42.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,43.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,43.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,43.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,43.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,42.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,41.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,40.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,43.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,43.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,43.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,44.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: 38.5,44.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,44.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,45.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,45.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: 2.5,46.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 6.5,48.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: 2.5,48.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: 2.5,47.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 4.5,45.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: 6.5,47.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: 6.5,46.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: 22.5,44.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: 24.5,44.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: 26.5,44.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: 29.5,44.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: 30.5,44.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: 31.5,44.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: 32.5,44.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 33.5,44.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: 39.5,46.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: 39.5,47.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: 38.5,47.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: 37.5,47.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: 36.5,47.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: 32.5,49.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: 33.5,47.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 32.5,47.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: 32.5,53.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 32.5,55.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 37.5,48.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 37.5,50.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: 41.5,51.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: 41.5,48.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: 41.5,47.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: 41.5,50.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 27.5,46.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 27.5,47.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 27.5,48.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 27.5,49.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: 27.5,51.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: 24.5,51.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 24.5,52.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 24.5,53.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + pos: 24.5,54.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: 24.5,55.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: 32.5,54.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,47.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,47.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,51.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,51.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,4.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,62.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,45.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,45.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,45.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,45.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,45.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,45.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,45.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,46.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,47.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,48.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,49.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,50.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,50.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,50.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,50.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,50.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,50.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,50.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,51.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,52.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,53.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,54.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,49.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,51.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,52.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,53.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,52.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,51.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,47.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,52.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,51.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,47.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,50.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,48.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,48.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,50.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,47.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,47.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,55.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,56.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,57.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,58.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,59.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,63.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,64.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,65.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,66.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,67.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,68.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,69.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,69.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,69.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,69.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,69.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,69.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,69.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,69.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,69.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,69.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,69.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,69.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,68.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,67.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,66.5 + parent: 2 + - uid: 7126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,65.5 + parent: 2 + - uid: 7127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,64.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,63.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,62.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,61.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,60.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,59.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,58.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,57.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,55.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,59.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,62.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,51.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,70.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,70.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,57.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,56.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,54.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,54.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,62.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,70.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,70.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,57.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,55.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,51.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: -42.5,42.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,53.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,53.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,52.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,52.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,55.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,44.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,39.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,51.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,51.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,54.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,54.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,53.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,54.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,54.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,54.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,52.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,54.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,53.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,54.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,51.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,54.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,51.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,53.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,45.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,48.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,48.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,48.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,49.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,54.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,47.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,47.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,49.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,47.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,45.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,34.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -22.5,29.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: -22.5,30.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: -22.5,31.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: -22.5,34.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: -22.5,35.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: -22.5,36.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: -22.5,37.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: -22.5,38.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: -21.5,38.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: -20.5,38.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: -19.5,38.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,49.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,45.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,48.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,48.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,49.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,47.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,47.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,54.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,54.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,54.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,54.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,54.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,54.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,54.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,53.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,53.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,50.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,47.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,44.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,38.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,38.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,38.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,44.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,44.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,43.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,44.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,44.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,39.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,34.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,34.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,34.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,34.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,32.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,32.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,32.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,32.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,31.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,30.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,30.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,30.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,32.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,30.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,28.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,28.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,28.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,28.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,28.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,29.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,26.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,26.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,26.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,26.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,26.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,17.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,24.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,24.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,24.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,24.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,24.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,25.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,22.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,22.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,22.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,22.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,22.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,23.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,20.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,20.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,20.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,20.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,20.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,19.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,18.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,18.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,18.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,18.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,18.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,21.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,16.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,16.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,16.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,14.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,14.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,14.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,14.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,14.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,13.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,12.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,11.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,10.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,12.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,12.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,12.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,10.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,10.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,10.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,10.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,9.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,10.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,8.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,34.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,38.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,38.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,36.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,38.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: -34.5,38.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,7.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,5.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,5.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,5.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,5.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,7.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,2.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,3.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,4.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,5.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,6.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,6.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,6.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,6.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-48.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-52.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,39.5 + parent: 2 + - uid: 9481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-4.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-5.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-6.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 2 + - uid: 9487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 2 + - uid: 9490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 2 + - uid: 9491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-2.5 + parent: 2 + - uid: 9504 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 9509 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 + - uid: 9510 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 9516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: -41.5,-49.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-13.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: -44.5,-46.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + pos: -41.5,-50.5 + parent: 2 + - uid: 9524 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - uid: 9525 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + pos: -45.5,-46.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 9692 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 + - uid: 9698 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 2 + - uid: 9699 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 9737 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 9745 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 9808 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 9865 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-47.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-47.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-47.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-47.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-47.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-47.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-47.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-48.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-48.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-49.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-49.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-48.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-48.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-50.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-50.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-50.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - uid: 9985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-50.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-50.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-51.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,55.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 2 + - uid: 9998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-50.5 + parent: 2 + - uid: 9999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-50.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 + parent: 2 + - uid: 10001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-48.5 + parent: 2 + - uid: 10163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-47.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-47.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-47.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 2 + - uid: 10174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-45.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 2 + - uid: 10184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 2 + - uid: 10186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-13.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-9.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-9.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,28.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-45.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-45.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-45.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-51.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-51.5 + parent: 2 + - uid: 10253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-51.5 + parent: 2 + - uid: 10254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-51.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-51.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-51.5 + parent: 2 + - uid: 10259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-51.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-50.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-50.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-50.5 + parent: 2 + - uid: 10293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-49.5 + parent: 2 + - uid: 10294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-50.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: 24.5,-47.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + pos: -1.5,-55.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + pos: -3.5,-55.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: -6.5,-55.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: -8.5,-55.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-45.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 2 + - uid: 10484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 2 + - uid: 10485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-58.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-56.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-58.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + pos: -10.5,-63.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + pos: -7.5,-76.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + pos: 2.5,-74.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + pos: -7.5,-69.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: 2.5,-67.5 + parent: 2 + - uid: 10685 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-79.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + pos: -2.5,-63.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-79.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-83.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-83.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-79.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-79.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-83.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-83.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-79.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-79.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-77.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-77.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-73.5 + parent: 2 + - uid: 10751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-73.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-70.5 + parent: 2 + - uid: 10753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-70.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-66.5 + parent: 2 + - uid: 10755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-66.5 + parent: 2 + - uid: 10756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-66.5 + parent: 2 + - uid: 10757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-66.5 + parent: 2 + - uid: 10758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-70.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-70.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-73.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-73.5 + parent: 2 + - uid: 10762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-77.5 + parent: 2 + - uid: 10763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-77.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,4.5 + parent: 2 + - uid: 10796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,5.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,7.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,8.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,8.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,8.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,10.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,11.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,11.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,11.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,12.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,13.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,13.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,12.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,11.5 + parent: 2 + - uid: 10815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,11.5 + parent: 2 + - uid: 10816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,11.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,10.5 + parent: 2 + - uid: 10819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,8.5 + parent: 2 + - uid: 10820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,7.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,5.5 + parent: 2 + - uid: 10823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,4.5 + parent: 2 + - uid: 10824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,4.5 + parent: 2 + - uid: 10825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,3.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,0.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + pos: -58.5,-0.5 + parent: 2 + - uid: 10830 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + pos: -61.5,-6.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-10.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-20.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-21.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-22.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-23.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-24.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-26.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-28.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-30.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-31.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-31.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-32.5 + parent: 2 + - uid: 10864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-34.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-36.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-37.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-40.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-41.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-41.5 + parent: 2 + - uid: 10873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-41.5 + parent: 2 + - uid: 10874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-41.5 + parent: 2 + - uid: 10875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-42.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-44.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-45.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-45.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-45.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-45.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-46.5 + parent: 2 + - uid: 10884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-47.5 + parent: 2 + - uid: 10885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-48.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-48.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-49.5 + parent: 2 + - uid: 10889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-50.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-51.5 + parent: 2 + - uid: 10896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-54.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-54.5 + parent: 2 + - uid: 10898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-55.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-55.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-55.5 + parent: 2 + - uid: 10901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-55.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-55.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-55.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-55.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-55.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-55.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-55.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-55.5 + parent: 2 + - uid: 10912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-55.5 + parent: 2 + - uid: 10913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-55.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-55.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-55.5 + parent: 2 + - uid: 10919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-55.5 + parent: 2 + - uid: 10920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-55.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-55.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-56.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-57.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-57.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-57.5 + parent: 2 + - uid: 10928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-57.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-57.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,2.5 + parent: 2 + - uid: 10931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,3.5 + parent: 2 + - uid: 10932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,3.5 + parent: 2 + - uid: 10933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,4.5 + parent: 2 + - uid: 10934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 + - uid: 10935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,5.5 + parent: 2 + - uid: 10936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,5.5 + parent: 2 + - uid: 10937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,6.5 + parent: 2 + - uid: 10938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,6.5 + parent: 2 + - uid: 10939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,7.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,6.5 + parent: 2 + - uid: 10941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,8.5 + parent: 2 + - uid: 10943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,6.5 + parent: 2 + - uid: 10944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,6.5 + parent: 2 + - uid: 10948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,8.5 + parent: 2 + - uid: 10951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-6.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,8.5 + parent: 2 + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,8.5 + parent: 2 + - uid: 10955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,8.5 + parent: 2 + - uid: 10957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,9.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,9.5 + parent: 2 + - uid: 10959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,9.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,9.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,9.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,10.5 + parent: 2 + - uid: 10963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,10.5 + parent: 2 + - uid: 10964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,10.5 + parent: 2 + - uid: 10966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,10.5 + parent: 2 + - uid: 10967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,10.5 + parent: 2 + - uid: 10968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,10.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-13.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-5.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-5.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-6.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-5.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 + - uid: 11207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 2 + - uid: 11210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-12.5 + parent: 2 + - uid: 11212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-12.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-12.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 11218 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 11223 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: -52.5,-24.5 + parent: 2 + - uid: 11226 + components: + - type: Transform + pos: -54.5,-24.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: -57.5,-24.5 + parent: 2 + - uid: 11228 + components: + - type: Transform + pos: -56.5,-24.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + pos: -51.5,-19.5 + parent: 2 + - uid: 11230 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-5.5 + parent: 2 + - uid: 11232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 2 + - uid: 11233 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 11235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-13.5 + parent: 2 + - uid: 11236 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - uid: 11237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - uid: 11238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - uid: 11243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 2 + - uid: 11244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + pos: -55.5,-24.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-5.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-5.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-7.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 2 + - uid: 11257 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 2 + - uid: 11259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + - uid: 11260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-13.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-5.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-18.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-16.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-20.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 2 + - uid: 11397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-4.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 + - uid: 11399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 11405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 2 + - uid: 11406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-22.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: -44.5,-51.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: -49.5,-54.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 11430 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 11432 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - uid: 11433 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - uid: 11434 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: -46.5,-24.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + pos: -45.5,-24.5 + parent: 2 + - uid: 11437 + components: + - type: Transform + pos: -44.5,-24.5 + parent: 2 + - uid: 11438 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 2 + - uid: 11439 + components: + - type: Transform + pos: -43.5,-22.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-22.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-19.5 + parent: 2 + - uid: 11511 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,44.5 + parent: 2 + - uid: 11530 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-4.5 + parent: 2 + - uid: 11535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - uid: 11536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,1.5 + parent: 2 + - uid: 11566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-31.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-31.5 + parent: 2 + - uid: 11568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-31.5 + parent: 2 + - uid: 11569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-31.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-30.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-28.5 + parent: 2 + - uid: 11573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-27.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-26.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-25.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 11580 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + pos: -48.5,-54.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 11593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-25.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-26.5 + parent: 2 + - uid: 11597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-27.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-30.5 + parent: 2 + - uid: 12128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-28.5 + parent: 2 + - uid: 12129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-27.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-32.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-33.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-34.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-36.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-36.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-36.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-36.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-55.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-54.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-54.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-51.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-52.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-51.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-52.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-51.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-52.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-51.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-44.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-41.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-42.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-41.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-41.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-41.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-42.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-42.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,25.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,25.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,25.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,21.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + pos: 56.5,18.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,24.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,25.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,25.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,25.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 12757 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,23.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,25.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,20.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,22.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,23.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,23.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,23.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,23.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,23.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,23.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,23.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,23.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,23.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,22.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: 62.5,12.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-4.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-4.5 + parent: 2 + - uid: 13003 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,5.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-12.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,3.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,3.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,3.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,3.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,3.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-10.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-9.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-8.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-7.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-9.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,40.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-54.5 + parent: 2 + - uid: 16627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-4.5 + parent: 2 + - uid: 16628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-37.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-37.5 + parent: 2 + - uid: 17901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,3.5 + parent: 2 + - uid: 18052 + components: + - type: Transform + pos: 62.5,-7.5 + parent: 2 + - uid: 18089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,4.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,10.5 + parent: 2 + - uid: 18343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,16.5 + parent: 2 + - uid: 18344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,15.5 + parent: 2 + - uid: 18345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,14.5 + parent: 2 + - uid: 18346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,12.5 + parent: 2 + - uid: 18347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - uid: 18348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,10.5 + parent: 2 + - uid: 18350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - uid: 18351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,9.5 + parent: 2 + - uid: 18352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,9.5 + parent: 2 + - uid: 18353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 18354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - uid: 18631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-22.5 + parent: 2 + - uid: 18646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-18.5 + parent: 2 + - uid: 18723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-50.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 19094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-47.5 + parent: 2 + - uid: 19128 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 19129 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 19188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-47.5 + parent: 2 + - uid: 19190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-45.5 + parent: 2 + - uid: 19304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,44.5 + parent: 2 + - uid: 19377 + components: + - type: Transform + pos: -46.5,-54.5 + parent: 2 + - uid: 19378 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 + - uid: 19484 + components: + - type: Transform + pos: -50.5,-51.5 + parent: 2 + - uid: 19536 + components: + - type: Transform + pos: -50.5,-54.5 + parent: 2 + - uid: 19538 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 19539 + components: + - type: Transform + pos: -50.5,-50.5 + parent: 2 + - uid: 19547 + components: + - type: Transform + pos: -44.5,-53.5 + parent: 2 + - uid: 19548 + components: + - type: Transform + pos: -44.5,-52.5 + parent: 2 + - uid: 19551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-50.5 + parent: 2 + - uid: 19922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-49.5 + parent: 2 + - uid: 19957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-47.5 + parent: 2 + - uid: 19961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-49.5 + parent: 2 + - uid: 19962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-47.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,26.5 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: -27.5,7.5 + parent: 2 + - uid: 21004 + components: + - type: Transform + pos: -2.5,2.5 + parent: 21002 + - uid: 21005 + components: + - type: Transform + pos: -1.5,2.5 + parent: 21002 + - uid: 21006 + components: + - type: Transform + pos: -0.5,2.5 + parent: 21002 + - uid: 21007 + components: + - type: Transform + pos: -0.5,3.5 + parent: 21002 + - uid: 21008 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 21002 + - uid: 21009 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 21002 + - uid: 21010 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 21002 + - uid: 21011 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 21002 + - uid: 21012 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 21002 + - uid: 21019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 21002 + - uid: 21020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 21002 + - uid: 21021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 21002 + - uid: 21022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 21002 + - uid: 21023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 21002 + - uid: 21025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 21002 + - uid: 21026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 21002 + - uid: 21028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 21002 + - uid: 21029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 21002 + - uid: 21030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 21002 + - uid: 21031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 21002 + - uid: 21032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 21002 + - uid: 21033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 21002 + - uid: 21034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 21002 + - uid: 21035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 21002 + - uid: 21036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 21002 + - uid: 21037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 21002 + - uid: 21039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 21002 + - uid: 21048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 21002 + - uid: 21049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 21002 + - uid: 21054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 21002 + - uid: 21055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 21002 + - uid: 21078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 21002 + - uid: 21079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 21002 + - uid: 21086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 21002 + - uid: 21087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 21002 + - uid: 21088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 21002 + - uid: 21089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 21002 + - uid: 21090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 21002 + - uid: 21095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 21002 + - uid: 21097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 21002 + - uid: 21098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 21002 + - uid: 21099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 21002 + - uid: 21100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 21002 + - uid: 21101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 21002 + - uid: 21102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 21002 + - uid: 21103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 21002 + - uid: 21104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 21002 + - uid: 21105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 21002 + - uid: 21106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 21002 + - uid: 21107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 21002 + - uid: 21108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 21002 + - uid: 21109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 21002 + - uid: 21110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 21002 + - uid: 21111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 21002 + - uid: 21112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 21002 + - uid: 21113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 21002 + - uid: 21114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 21002 + - uid: 21115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 21002 + - uid: 21116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 21002 + - uid: 21117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 21002 + - uid: 21118 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 21002 + - uid: 21119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 21002 + - uid: 21120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 21002 + - uid: 21121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 21002 + - uid: 21122 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 21002 + - uid: 21123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 21002 + - uid: 21124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 21002 + - uid: 21125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 21002 + - uid: 21126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 21002 + - uid: 21127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 21002 + - uid: 21128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 21002 + - uid: 21129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 21002 + - uid: 21132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 21002 + - uid: 21133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 21002 + - uid: 21213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 21002 + - uid: 21214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 21002 + - uid: 21215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 21002 + - uid: 21222 + components: + - type: Transform + pos: 21.5,9.5 + parent: 21002 + - uid: 21225 + components: + - type: Transform + pos: 22.5,9.5 + parent: 21002 + - uid: 21228 + components: + - type: Transform + pos: 23.5,9.5 + parent: 21002 + - uid: 21231 + components: + - type: Transform + pos: 24.5,9.5 + parent: 21002 + - uid: 21234 + components: + - type: Transform + pos: 25.5,9.5 + parent: 21002 + - uid: 21248 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 21002 + - uid: 21280 + components: + - type: Transform + pos: 26.5,9.5 + parent: 21002 + - uid: 21285 + components: + - type: Transform + pos: 27.5,9.5 + parent: 21002 + - uid: 21286 + components: + - type: Transform + pos: 27.5,8.5 + parent: 21002 + - uid: 21287 + components: + - type: Transform + pos: 27.5,7.5 + parent: 21002 + - uid: 21288 + components: + - type: Transform + pos: 28.5,7.5 + parent: 21002 + - uid: 21334 + components: + - type: Transform + pos: 28.5,6.5 + parent: 21002 + - uid: 21347 + components: + - type: Transform + pos: 28.5,5.5 + parent: 21002 + - uid: 21352 + components: + - type: Transform + pos: 28.5,4.5 + parent: 21002 + - uid: 21398 + components: + - type: Transform + pos: 29.5,4.5 + parent: 21002 + - uid: 21399 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 21002 + - uid: 21404 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 21002 + - uid: 21405 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 21002 + - uid: 21458 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 21002 + - uid: 21459 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 21002 + - uid: 21462 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 21002 + - uid: 21464 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 21002 + - uid: 22168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 21002 + - uid: 22210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,28.5 + parent: 21002 + - uid: 22276 + components: + - type: Transform + pos: 17.5,10.5 + parent: 21002 + - uid: 22278 + components: + - type: Transform + pos: 14.5,10.5 + parent: 21002 + - uid: 22279 + components: + - type: Transform + pos: 13.5,10.5 + parent: 21002 + - uid: 22280 + components: + - type: Transform + pos: 12.5,10.5 + parent: 21002 + - uid: 22281 + components: + - type: Transform + pos: 11.5,10.5 + parent: 21002 + - uid: 22282 + components: + - type: Transform + pos: 10.5,10.5 + parent: 21002 + - uid: 22288 + components: + - type: Transform + pos: 9.5,10.5 + parent: 21002 + - uid: 22289 + components: + - type: Transform + pos: 8.5,10.5 + parent: 21002 + - uid: 22295 + components: + - type: Transform + pos: 16.5,10.5 + parent: 21002 + - uid: 22316 + components: + - type: Transform + pos: 15.5,10.5 + parent: 21002 + - uid: 22317 + components: + - type: Transform + pos: 17.5,9.5 + parent: 21002 + - uid: 22318 + components: + - type: Transform + pos: 19.5,9.5 + parent: 21002 + - uid: 22319 + components: + - type: Transform + pos: 18.5,9.5 + parent: 21002 + - uid: 22517 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 21002 + - uid: 22523 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 21002 + - uid: 22711 + components: + - type: Transform + pos: 45.5,38.5 + parent: 21002 + - uid: 22716 + components: + - type: Transform + pos: -5.5,28.5 + parent: 21002 + - uid: 22717 + components: + - type: Transform + pos: 40.5,38.5 + parent: 21002 + - uid: 22718 + components: + - type: Transform + pos: 41.5,39.5 + parent: 21002 + - uid: 22719 + components: + - type: Transform + pos: 42.5,56.5 + parent: 21002 + - uid: 22720 + components: + - type: Transform + pos: 42.5,54.5 + parent: 21002 + - uid: 22721 + components: + - type: Transform + pos: 42.5,52.5 + parent: 21002 + - uid: 22722 + components: + - type: Transform + pos: 42.5,50.5 + parent: 21002 + - uid: 22723 + components: + - type: Transform + pos: 42.5,48.5 + parent: 21002 + - uid: 22724 + components: + - type: Transform + pos: 42.5,46.5 + parent: 21002 + - uid: 22738 + components: + - type: Transform + pos: 42.5,44.5 + parent: 21002 + - uid: 22765 + components: + - type: Transform + pos: 42.5,42.5 + parent: 21002 + - uid: 22777 + components: + - type: Transform + pos: 42.5,40.5 + parent: 21002 + - uid: 22781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 21002 + - uid: 22852 + components: + - type: Transform + pos: 44.5,39.5 + parent: 21002 + - uid: 22853 + components: + - type: Transform + pos: 44.5,41.5 + parent: 21002 + - uid: 22854 + components: + - type: Transform + pos: 44.5,43.5 + parent: 21002 + - uid: 22855 + components: + - type: Transform + pos: 44.5,45.5 + parent: 21002 + - uid: 22856 + components: + - type: Transform + pos: 44.5,47.5 + parent: 21002 + - uid: 22857 + components: + - type: Transform + pos: 44.5,49.5 + parent: 21002 + - uid: 22858 + components: + - type: Transform + pos: 44.5,51.5 + parent: 21002 + - uid: 22859 + components: + - type: Transform + pos: 44.5,53.5 + parent: 21002 + - uid: 22860 + components: + - type: Transform + pos: 44.5,55.5 + parent: 21002 + - uid: 22861 + components: + - type: Transform + pos: -8.5,14.5 + parent: 21002 + - uid: 22864 + components: + - type: Transform + pos: -5.5,25.5 + parent: 21002 + - uid: 22865 + components: + - type: Transform + pos: -4.5,14.5 + parent: 21002 + - uid: 22867 + components: + - type: Transform + pos: 7.5,10.5 + parent: 21002 + - uid: 22869 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 21002 + - uid: 22915 + components: + - type: Transform + pos: 46.5,38.5 + parent: 21002 + - uid: 22916 + components: + - type: Transform + pos: 45.5,39.5 + parent: 21002 + - uid: 22917 + components: + - type: Transform + pos: 40.5,37.5 + parent: 21002 + - uid: 22930 + components: + - type: Transform + pos: 41.5,38.5 + parent: 21002 + - uid: 22931 + components: + - type: Transform + pos: -3.5,18.5 + parent: 21002 + - uid: 22935 + components: + - type: Transform + pos: 42.5,55.5 + parent: 21002 + - uid: 22950 + components: + - type: Transform + pos: 42.5,53.5 + parent: 21002 + - uid: 22951 + components: + - type: Transform + pos: 42.5,51.5 + parent: 21002 + - uid: 22952 + components: + - type: Transform + pos: 42.5,49.5 + parent: 21002 + - uid: 22953 + components: + - type: Transform + pos: 42.5,47.5 + parent: 21002 + - uid: 22954 + components: + - type: Transform + pos: 42.5,45.5 + parent: 21002 + - uid: 22955 + components: + - type: Transform + pos: 42.5,43.5 + parent: 21002 + - uid: 22956 + components: + - type: Transform + pos: 42.5,41.5 + parent: 21002 + - uid: 22957 + components: + - type: Transform + pos: 42.5,39.5 + parent: 21002 + - uid: 22958 + components: + - type: Transform + pos: 44.5,40.5 + parent: 21002 + - uid: 22959 + components: + - type: Transform + pos: 44.5,42.5 + parent: 21002 + - uid: 22960 + components: + - type: Transform + pos: 44.5,44.5 + parent: 21002 + - uid: 22961 + components: + - type: Transform + pos: 44.5,46.5 + parent: 21002 + - uid: 22962 + components: + - type: Transform + pos: 44.5,48.5 + parent: 21002 + - uid: 22963 + components: + - type: Transform + pos: 44.5,50.5 + parent: 21002 + - uid: 22964 + components: + - type: Transform + pos: 44.5,52.5 + parent: 21002 + - uid: 22965 + components: + - type: Transform + pos: 44.5,54.5 + parent: 21002 + - uid: 22966 + components: + - type: Transform + pos: 44.5,56.5 + parent: 21002 + - uid: 22967 + components: + - type: Transform + pos: -4.5,15.5 + parent: 21002 + - uid: 22968 + components: + - type: Transform + pos: -3.5,15.5 + parent: 21002 + - uid: 22971 + components: + - type: Transform + pos: 20.5,9.5 + parent: 21002 + - uid: 22973 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 21002 + - uid: 22974 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 21002 + - uid: 23425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-13.5 + parent: 2 + - uid: 23630 + components: + - type: Transform + pos: 10.5,38.5 + parent: 2 + - uid: 23631 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 23632 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 23635 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 23636 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 23637 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 23638 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 23639 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 23659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,47.5 + parent: 2 + - uid: 23660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,46.5 + parent: 2 + - uid: 23661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,45.5 + parent: 2 + - uid: 23662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,44.5 + parent: 2 + - uid: 23663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,43.5 + parent: 2 + - uid: 23810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-8.5 + parent: 2 + - uid: 23811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-9.5 + parent: 2 + - uid: 23812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-10.5 + parent: 2 + - uid: 23847 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 24127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-1.5 + parent: 2 + - uid: 24309 + components: + - type: Transform + pos: 46.5,37.5 + parent: 21002 + - uid: 24310 + components: + - type: Transform + pos: 46.5,36.5 + parent: 21002 + - uid: 24311 + components: + - type: Transform + pos: 46.5,35.5 + parent: 21002 + - uid: 24312 + components: + - type: Transform + pos: -7.5,25.5 + parent: 21002 + - uid: 24313 + components: + - type: Transform + pos: -7.5,28.5 + parent: 21002 + - uid: 24314 + components: + - type: Transform + pos: -7.5,27.5 + parent: 21002 + - uid: 24315 + components: + - type: Transform + pos: -7.5,26.5 + parent: 21002 + - uid: 24316 + components: + - type: Transform + pos: -5.5,24.5 + parent: 21002 + - uid: 24317 + components: + - type: Transform + pos: -8.5,15.5 + parent: 21002 + - uid: 24318 + components: + - type: Transform + pos: -9.5,15.5 + parent: 21002 + - uid: 24319 + components: + - type: Transform + pos: -9.5,18.5 + parent: 21002 + - uid: 24321 + components: + - type: Transform + pos: -8.5,19.5 + parent: 21002 + - uid: 24323 + components: + - type: Transform + pos: -7.5,19.5 + parent: 21002 + - uid: 24324 + components: + - type: Transform + pos: -4.5,19.5 + parent: 21002 + - uid: 24325 + components: + - type: Transform + pos: -5.5,19.5 + parent: 21002 + - uid: 24326 + components: + - type: Transform + pos: -8.5,18.5 + parent: 21002 + - uid: 24327 + components: + - type: Transform + pos: -4.5,18.5 + parent: 21002 + - uid: 24328 + components: + - type: Transform + pos: 96.5,29.5 + parent: 21002 + - uid: 24329 + components: + - type: Transform + pos: 96.5,28.5 + parent: 21002 + - uid: 24330 + components: + - type: Transform + pos: 96.5,27.5 + parent: 21002 + - uid: 24331 + components: + - type: Transform + pos: 96.5,26.5 + parent: 21002 + - uid: 24332 + components: + - type: Transform + pos: 96.5,25.5 + parent: 21002 + - uid: 24333 + components: + - type: Transform + pos: 94.5,29.5 + parent: 21002 + - uid: 24334 + components: + - type: Transform + pos: 94.5,28.5 + parent: 21002 + - uid: 24335 + components: + - type: Transform + pos: 94.5,26.5 + parent: 21002 + - uid: 24336 + components: + - type: Transform + pos: 94.5,25.5 + parent: 21002 + - uid: 24337 + components: + - type: Transform + pos: 93.5,28.5 + parent: 21002 + - uid: 24338 + components: + - type: Transform + pos: 92.5,28.5 + parent: 21002 + - uid: 24339 + components: + - type: Transform + pos: 91.5,28.5 + parent: 21002 + - uid: 24340 + components: + - type: Transform + pos: 90.5,28.5 + parent: 21002 + - uid: 24341 + components: + - type: Transform + pos: 89.5,28.5 + parent: 21002 + - uid: 24342 + components: + - type: Transform + pos: 88.5,28.5 + parent: 21002 + - uid: 24343 + components: + - type: Transform + pos: 87.5,28.5 + parent: 21002 + - uid: 24344 + components: + - type: Transform + pos: 86.5,28.5 + parent: 21002 + - uid: 24345 + components: + - type: Transform + pos: 85.5,28.5 + parent: 21002 + - uid: 24346 + components: + - type: Transform + pos: 84.5,28.5 + parent: 21002 + - uid: 24347 + components: + - type: Transform + pos: 83.5,28.5 + parent: 21002 + - uid: 24348 + components: + - type: Transform + pos: 82.5,28.5 + parent: 21002 + - uid: 24349 + components: + - type: Transform + pos: 81.5,28.5 + parent: 21002 + - uid: 24350 + components: + - type: Transform + pos: 80.5,28.5 + parent: 21002 + - uid: 24351 + components: + - type: Transform + pos: 79.5,28.5 + parent: 21002 + - uid: 24352 + components: + - type: Transform + pos: 78.5,28.5 + parent: 21002 + - uid: 24353 + components: + - type: Transform + pos: 77.5,28.5 + parent: 21002 + - uid: 24354 + components: + - type: Transform + pos: 77.5,29.5 + parent: 21002 + - uid: 24355 + components: + - type: Transform + pos: 76.5,29.5 + parent: 21002 + - uid: 24356 + components: + - type: Transform + pos: 76.5,30.5 + parent: 21002 + - uid: 24357 + components: + - type: Transform + pos: 75.5,30.5 + parent: 21002 + - uid: 24358 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 21002 + - uid: 24359 + components: + - type: Transform + pos: 75.5,24.5 + parent: 21002 + - uid: 24360 + components: + - type: Transform + pos: 76.5,24.5 + parent: 21002 + - uid: 24361 + components: + - type: Transform + pos: 76.5,25.5 + parent: 21002 + - uid: 24362 + components: + - type: Transform + pos: 77.5,25.5 + parent: 21002 + - uid: 24363 + components: + - type: Transform + pos: 77.5,26.5 + parent: 21002 + - uid: 24364 + components: + - type: Transform + pos: 78.5,26.5 + parent: 21002 + - uid: 24365 + components: + - type: Transform + pos: 79.5,26.5 + parent: 21002 + - uid: 24366 + components: + - type: Transform + pos: 80.5,26.5 + parent: 21002 + - uid: 24367 + components: + - type: Transform + pos: 81.5,26.5 + parent: 21002 + - uid: 24368 + components: + - type: Transform + pos: 82.5,26.5 + parent: 21002 + - uid: 24369 + components: + - type: Transform + pos: 83.5,26.5 + parent: 21002 + - uid: 24370 + components: + - type: Transform + pos: 84.5,26.5 + parent: 21002 + - uid: 24371 + components: + - type: Transform + pos: 85.5,26.5 + parent: 21002 + - uid: 24372 + components: + - type: Transform + pos: 86.5,26.5 + parent: 21002 + - uid: 24373 + components: + - type: Transform + pos: 87.5,26.5 + parent: 21002 + - uid: 24374 + components: + - type: Transform + pos: 88.5,26.5 + parent: 21002 + - uid: 24375 + components: + - type: Transform + pos: 89.5,26.5 + parent: 21002 + - uid: 24376 + components: + - type: Transform + pos: 90.5,26.5 + parent: 21002 + - uid: 24377 + components: + - type: Transform + pos: 91.5,26.5 + parent: 21002 + - uid: 24378 + components: + - type: Transform + pos: 92.5,26.5 + parent: 21002 + - uid: 24379 + components: + - type: Transform + pos: 93.5,26.5 + parent: 21002 + - uid: 24380 + components: + - type: Transform + pos: 96.5,-2.5 + parent: 21002 + - uid: 24381 + components: + - type: Transform + pos: 96.5,-3.5 + parent: 21002 + - uid: 24382 + components: + - type: Transform + pos: 96.5,-4.5 + parent: 21002 + - uid: 24383 + components: + - type: Transform + pos: 96.5,-5.5 + parent: 21002 + - uid: 24384 + components: + - type: Transform + pos: 96.5,-6.5 + parent: 21002 + - uid: 24385 + components: + - type: Transform + pos: 94.5,-2.5 + parent: 21002 + - uid: 24386 + components: + - type: Transform + pos: 93.5,-2.5 + parent: 21002 + - uid: 24387 + components: + - type: Transform + pos: 94.5,-3.5 + parent: 21002 + - uid: 24388 + components: + - type: Transform + pos: 93.5,-6.5 + parent: 21002 + - uid: 24389 + components: + - type: Transform + pos: 94.5,-6.5 + parent: 21002 + - uid: 24390 + components: + - type: Transform + pos: 94.5,-5.5 + parent: 21002 + - uid: 24391 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 21002 + - uid: 24392 + components: + - type: Transform + pos: 48.5,-43.5 + parent: 21002 + - uid: 24393 + components: + - type: Transform + pos: 46.5,-43.5 + parent: 21002 + - uid: 24394 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 21002 + - uid: 24395 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 21002 + - uid: 24396 + components: + - type: Transform + pos: 46.5,-45.5 + parent: 21002 + - uid: 24397 + components: + - type: Transform + pos: 47.5,-45.5 + parent: 21002 + - uid: 24398 + components: + - type: Transform + pos: 48.5,-45.5 + parent: 21002 + - uid: 24399 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 21002 + - uid: 24400 + components: + - type: Transform + pos: 48.5,-42.5 + parent: 21002 + - uid: 24401 + components: + - type: Transform + pos: 48.5,-41.5 + parent: 21002 + - uid: 24402 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 21002 + - uid: 24403 + components: + - type: Transform + pos: 48.5,-39.5 + parent: 21002 + - uid: 24404 + components: + - type: Transform + pos: 48.5,-38.5 + parent: 21002 + - uid: 24405 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 21002 + - uid: 24406 + components: + - type: Transform + pos: 48.5,-36.5 + parent: 21002 + - uid: 24407 + components: + - type: Transform + pos: 48.5,-35.5 + parent: 21002 + - uid: 24408 + components: + - type: Transform + pos: 48.5,-34.5 + parent: 21002 + - uid: 24409 + components: + - type: Transform + pos: 48.5,-33.5 + parent: 21002 + - uid: 24410 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 21002 + - uid: 24411 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 21002 + - uid: 24412 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 21002 + - uid: 24413 + components: + - type: Transform + pos: 48.5,-29.5 + parent: 21002 + - uid: 24414 + components: + - type: Transform + pos: 48.5,-28.5 + parent: 21002 + - uid: 24415 + components: + - type: Transform + pos: 48.5,-27.5 + parent: 21002 + - uid: 24416 + components: + - type: Transform + pos: 48.5,-26.5 + parent: 21002 + - uid: 24417 + components: + - type: Transform + pos: 49.5,-26.5 + parent: 21002 + - uid: 24418 + components: + - type: Transform + pos: 49.5,-25.5 + parent: 21002 + - uid: 24419 + components: + - type: Transform + pos: 45.5,-25.5 + parent: 21002 + - uid: 24420 + components: + - type: Transform + pos: 45.5,-26.5 + parent: 21002 + - uid: 24421 + components: + - type: Transform + pos: 46.5,-26.5 + parent: 21002 + - uid: 24422 + components: + - type: Transform + pos: 46.5,-27.5 + parent: 21002 + - uid: 24423 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 21002 + - uid: 24424 + components: + - type: Transform + pos: 46.5,-29.5 + parent: 21002 + - uid: 24425 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 21002 + - uid: 24426 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 21002 + - uid: 24427 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 21002 + - uid: 24428 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 21002 + - uid: 24429 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 21002 + - uid: 24430 + components: + - type: Transform + pos: 46.5,-35.5 + parent: 21002 + - uid: 24431 + components: + - type: Transform + pos: 46.5,-36.5 + parent: 21002 + - uid: 24432 + components: + - type: Transform + pos: 46.5,-37.5 + parent: 21002 + - uid: 24433 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 21002 + - uid: 24434 + components: + - type: Transform + pos: 46.5,-39.5 + parent: 21002 + - uid: 24435 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 21002 + - uid: 24436 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 21002 + - uid: 24437 + components: + - type: Transform + pos: 46.5,-42.5 + parent: 21002 + - uid: 24438 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 21002 + - uid: 24439 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 21002 + - uid: 24440 + components: + - type: Transform + pos: 20.5,-47.5 + parent: 21002 + - uid: 24443 + components: + - type: Transform + pos: 17.5,-47.5 + parent: 21002 + - uid: 24444 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 21002 + - uid: 24445 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 21002 + - uid: 24446 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 21002 + - uid: 24450 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 21002 + - uid: 24451 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 21002 + - uid: 24454 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 21002 + - uid: 24455 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 21002 + - uid: 24456 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 21002 + - uid: 24457 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 21002 + - uid: 24458 + components: + - type: Transform + pos: -7.5,24.5 + parent: 21002 + - uid: 24459 + components: + - type: Transform + pos: -5.5,27.5 + parent: 21002 + - uid: 24460 + components: + - type: Transform + pos: -4.5,27.5 + parent: 21002 + - uid: 24461 + components: + - type: Transform + pos: -3.5,27.5 + parent: 21002 + - uid: 24462 + components: + - type: Transform + pos: -2.5,27.5 + parent: 21002 + - uid: 24463 + components: + - type: Transform + pos: -1.5,27.5 + parent: 21002 + - uid: 24464 + components: + - type: Transform + pos: -1.5,28.5 + parent: 21002 + - uid: 24465 + components: + - type: Transform + pos: -0.5,28.5 + parent: 21002 + - uid: 24466 + components: + - type: Transform + pos: -0.5,24.5 + parent: 21002 + - uid: 24467 + components: + - type: Transform + pos: -1.5,24.5 + parent: 21002 + - uid: 24468 + components: + - type: Transform + pos: -1.5,25.5 + parent: 21002 + - uid: 24469 + components: + - type: Transform + pos: -2.5,25.5 + parent: 21002 + - uid: 24470 + components: + - type: Transform + pos: -3.5,25.5 + parent: 21002 + - uid: 24471 + components: + - type: Transform + pos: -4.5,25.5 + parent: 21002 + - uid: 24472 + components: + - type: Transform + pos: 41.5,67.5 + parent: 21002 + - uid: 24473 + components: + - type: Transform + pos: 42.5,67.5 + parent: 21002 + - uid: 24474 + components: + - type: Transform + pos: 43.5,67.5 + parent: 21002 + - uid: 24475 + components: + - type: Transform + pos: 44.5,67.5 + parent: 21002 + - uid: 24476 + components: + - type: Transform + pos: 45.5,67.5 + parent: 21002 + - uid: 24477 + components: + - type: Transform + pos: 45.5,65.5 + parent: 21002 + - uid: 24478 + components: + - type: Transform + pos: 44.5,65.5 + parent: 21002 + - uid: 24479 + components: + - type: Transform + pos: 44.5,64.5 + parent: 21002 + - uid: 24480 + components: + - type: Transform + pos: 44.5,63.5 + parent: 21002 + - uid: 24481 + components: + - type: Transform + pos: 44.5,62.5 + parent: 21002 + - uid: 24482 + components: + - type: Transform + pos: 44.5,61.5 + parent: 21002 + - uid: 24483 + components: + - type: Transform + pos: 44.5,60.5 + parent: 21002 + - uid: 24484 + components: + - type: Transform + pos: 44.5,59.5 + parent: 21002 + - uid: 24485 + components: + - type: Transform + pos: 44.5,58.5 + parent: 21002 + - uid: 24486 + components: + - type: Transform + pos: 44.5,57.5 + parent: 21002 + - uid: 24487 + components: + - type: Transform + pos: 42.5,57.5 + parent: 21002 + - uid: 24488 + components: + - type: Transform + pos: 42.5,58.5 + parent: 21002 + - uid: 24489 + components: + - type: Transform + pos: 42.5,59.5 + parent: 21002 + - uid: 24490 + components: + - type: Transform + pos: 42.5,60.5 + parent: 21002 + - uid: 24491 + components: + - type: Transform + pos: 42.5,61.5 + parent: 21002 + - uid: 24492 + components: + - type: Transform + pos: 42.5,62.5 + parent: 21002 + - uid: 24493 + components: + - type: Transform + pos: 42.5,63.5 + parent: 21002 + - uid: 24494 + components: + - type: Transform + pos: 42.5,64.5 + parent: 21002 + - uid: 24495 + components: + - type: Transform + pos: 42.5,65.5 + parent: 21002 + - uid: 24496 + components: + - type: Transform + pos: 41.5,65.5 + parent: 21002 + - uid: 24498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,66.5 + parent: 21002 + - uid: 24505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,64.5 + parent: 21002 + - uid: 24594 + components: + - type: Transform + pos: -7.5,23.5 + parent: 21002 + - uid: 24595 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 21002 + - uid: 24596 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 21002 + - uid: 24597 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 21002 + - uid: 24598 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 21002 + - uid: 24602 + components: + - type: Transform + pos: -5.5,20.5 + parent: 21002 + - uid: 24603 + components: + - type: Transform + pos: -5.5,21.5 + parent: 21002 + - uid: 24604 + components: + - type: Transform + pos: -7.5,20.5 + parent: 21002 + - uid: 24605 + components: + - type: Transform + pos: -7.5,21.5 + parent: 21002 + - uid: 24607 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 21002 + - uid: 24608 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 21002 + - uid: 24610 + components: + - type: Transform + pos: -7.5,22.5 + parent: 21002 + - uid: 24611 + components: + - type: Transform + pos: -5.5,23.5 + parent: 21002 + - uid: 24612 + components: + - type: Transform + pos: -5.5,22.5 + parent: 21002 + - uid: 24625 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 21002 + - uid: 24626 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 21002 + - uid: 24627 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 21002 + - uid: 24628 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 21002 + - uid: 24629 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 21002 + - uid: 24632 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 21002 + - uid: 24633 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 21002 + - uid: 24634 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 21002 + - uid: 24635 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 21002 + - uid: 24636 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 21002 + - uid: 24637 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 21002 + - uid: 24638 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 21002 + - uid: 24639 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 21002 + - uid: 24640 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 21002 + - uid: 24641 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 21002 + - uid: 24676 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 21002 + - uid: 24677 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 21002 + - uid: 24679 + components: + - type: Transform + pos: 44.5,-25.5 + parent: 21002 + - uid: 24680 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 21002 + - uid: 25280 + components: + - type: Transform + pos: 55.5,-44.5 + parent: 21002 + - uid: 25529 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 21002 + - uid: 25531 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 21002 + - uid: 26691 + components: + - type: Transform + pos: 28.5,0.5 + parent: 21002 + - uid: 26699 + components: + - type: Transform + pos: 29.5,0.5 + parent: 21002 + - uid: 26715 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 21002 + - uid: 26719 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 21002 + - uid: 26720 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 21002 + - uid: 26721 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 21002 + - uid: 26724 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 21002 + - uid: 26725 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 21002 + - uid: 26726 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 21002 + - uid: 26727 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 21002 + - uid: 26728 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 21002 + - uid: 28082 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 21002 + - uid: 28089 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 21002 + - uid: 28102 + components: + - type: Transform + pos: 88.5,-27.5 + parent: 21002 + - uid: 28108 + components: + - type: Transform + pos: 92.5,-19.5 + parent: 21002 + - uid: 28113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,-11.5 + parent: 21002 + - uid: 28155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.5,53.5 + parent: 21002 + - uid: 28220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,13.5 + parent: 21002 + - uid: 28226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,3.5 + parent: 21002 + - uid: 28229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 95.5,18.5 + parent: 21002 + - uid: 28238 + components: + - type: Transform + pos: 39.5,-44.5 + parent: 21002 + - uid: 28240 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 21002 + - uid: 28242 + components: + - type: Transform + pos: 94.5,34.5 + parent: 21002 + - uid: 28244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.5,44.5 + parent: 21002 + - uid: 28245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,60.5 + parent: 21002 + - uid: 28246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,64.5 + parent: 21002 + - uid: 28247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,66.5 + parent: 21002 + - uid: 28248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,66.5 + parent: 21002 + - uid: 28249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,60.5 + parent: 21002 + - uid: 28250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,57.5 + parent: 21002 + - uid: 28251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,50.5 + parent: 21002 + - uid: 28252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,42.5 + parent: 21002 + - uid: 28253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 21002 +- proto: WallSolid + entities: + - uid: 387 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 2 + - uid: 663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-14.5 + parent: 2 + - uid: 664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - uid: 726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 2 + - uid: 754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,39.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,39.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,39.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,34.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,38.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-25.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-26.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-30.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-30.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-25.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-26.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-29.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-46.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-46.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-46.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-46.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-44.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-45.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-46.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-36.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-36.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-39.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-37.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-39.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-45.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-38.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-47.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-44.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-44.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-42.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-42.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-43.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-43.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-44.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-44.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,39.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-14.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-16.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-13.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-16.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-15.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-13.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: -27.5,4.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,39.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,39.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,33.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,39.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,39.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,35.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,36.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,39.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,39.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,39.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-43.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-43.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,31.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,34.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,35.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,36.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: -19.5,31.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-43.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-43.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-43.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-31.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-31.5 + parent: 2 + - uid: 9366 + components: + - type: Transform + pos: 11.5,36.5 + parent: 2 + - uid: 9693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 2 + - uid: 9695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-39.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 2 + - uid: 9697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-41.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 + parent: 2 + - uid: 10225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-45.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-45.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-45.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-45.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-46.5 + parent: 2 + - uid: 10233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 2 + - uid: 10235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-49.5 + parent: 2 + - uid: 10236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-50.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-45.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-45.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-45.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-47.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-49.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-50.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-50.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-50.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-50.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-50.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 10893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-17.5 + parent: 2 + - uid: 10894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-17.5 + parent: 2 + - uid: 10895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 2 + - uid: 10952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 11492 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 11503 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-22.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-22.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-25.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-25.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-24.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-27.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-26.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-25.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-55.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-54.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-52.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-52.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-52.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: 11.5,37.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-52.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-52.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 15427 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-52.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-52.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-52.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 18078 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 19311 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - uid: 20657 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 20660 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 20664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-41.5 + parent: 2 + - uid: 20665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-37.5 + parent: 2 + - uid: 20667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-38.5 + parent: 2 + - uid: 20668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 + - uid: 20669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 2 + - uid: 24643 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 21002 + - uid: 24644 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 21002 + - uid: 24646 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 21002 + - uid: 24653 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 21002 + - uid: 24654 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 21002 + - uid: 24655 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 21002 + - uid: 24656 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 21002 + - uid: 24661 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 21002 + - uid: 24663 + components: + - type: Transform + pos: 37.5,-22.5 + parent: 21002 + - uid: 24664 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 21002 + - uid: 24665 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 21002 + - uid: 24672 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 21002 + - uid: 24673 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 21002 + - uid: 24674 + components: + - type: Transform + pos: 47.5,-21.5 + parent: 21002 + - uid: 24675 + components: + - type: Transform + pos: 48.5,-21.5 + parent: 21002 + - uid: 24678 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 21002 + - uid: 24681 + components: + - type: Transform + pos: 43.5,-23.5 + parent: 21002 + - uid: 24683 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 21002 + - uid: 24685 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 21002 + - uid: 24689 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 21002 + - uid: 24690 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 21002 + - uid: 24693 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 21002 + - uid: 24694 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 21002 + - uid: 24695 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 21002 + - uid: 24697 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 21002 + - uid: 24698 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 21002 + - uid: 24700 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 21002 + - uid: 24702 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 21002 + - uid: 25355 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 21002 + - uid: 25417 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 21002 +- proto: WallSolidRust + entities: + - uid: 24642 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 21002 + - uid: 24645 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 21002 + - uid: 24647 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 21002 + - uid: 24648 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 21002 + - uid: 24649 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 21002 + - uid: 24650 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 21002 + - uid: 24651 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 21002 + - uid: 24652 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 21002 + - uid: 24657 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 21002 + - uid: 24658 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 21002 + - uid: 24659 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 21002 + - uid: 24660 + components: + - type: Transform + pos: 36.5,-22.5 + parent: 21002 + - uid: 24662 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 21002 + - uid: 24666 + components: + - type: Transform + pos: 40.5,-20.5 + parent: 21002 + - uid: 24667 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 21002 + - uid: 24668 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 21002 + - uid: 24670 + components: + - type: Transform + pos: 41.5,-19.5 + parent: 21002 + - uid: 24671 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 21002 + - uid: 24682 + components: + - type: Transform + pos: 42.5,-23.5 + parent: 21002 + - uid: 24684 + components: + - type: Transform + pos: 41.5,-23.5 + parent: 21002 + - uid: 24686 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 21002 + - uid: 24687 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 21002 + - uid: 24688 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 21002 + - uid: 24691 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 21002 + - uid: 24692 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 21002 + - uid: 24696 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 21002 + - uid: 24699 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 21002 + - uid: 24701 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 21002 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 4151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-39.5 + parent: 2 +- proto: WallWood + entities: + - uid: 21249 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 21002 + - uid: 21250 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 21002 + - uid: 21251 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 21002 + - uid: 21252 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 21002 + - uid: 21253 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 21002 + - uid: 21254 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 21002 + - uid: 21255 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 21002 + - uid: 21256 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 21002 + - uid: 21257 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 21002 + - uid: 21258 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 21002 + - uid: 21259 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 21002 + - uid: 21260 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 21002 + - uid: 21261 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 21002 + - uid: 21262 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 21002 + - uid: 21263 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 21002 + - uid: 21264 + components: + - type: Transform + pos: 11.5,8.5 + parent: 21002 + - uid: 21265 + components: + - type: Transform + pos: 12.5,8.5 + parent: 21002 + - uid: 21266 + components: + - type: Transform + pos: 13.5,8.5 + parent: 21002 + - uid: 21267 + components: + - type: Transform + pos: 14.5,8.5 + parent: 21002 + - uid: 21268 + components: + - type: Transform + pos: 15.5,8.5 + parent: 21002 + - uid: 21269 + components: + - type: Transform + pos: 11.5,7.5 + parent: 21002 + - uid: 21270 + components: + - type: Transform + pos: 11.5,6.5 + parent: 21002 + - uid: 21271 + components: + - type: Transform + pos: 11.5,5.5 + parent: 21002 + - uid: 21272 + components: + - type: Transform + pos: 11.5,4.5 + parent: 21002 + - uid: 21273 + components: + - type: Transform + pos: 15.5,7.5 + parent: 21002 + - uid: 21274 + components: + - type: Transform + pos: 15.5,6.5 + parent: 21002 + - uid: 21275 + components: + - type: Transform + pos: 15.5,5.5 + parent: 21002 + - uid: 21276 + components: + - type: Transform + pos: 15.5,4.5 + parent: 21002 + - uid: 21277 + components: + - type: Transform + pos: 12.5,4.5 + parent: 21002 + - uid: 21278 + components: + - type: Transform + pos: 14.5,4.5 + parent: 21002 + - uid: 21281 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 21002 + - uid: 21282 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 21002 + - uid: 21380 + components: + - type: Transform + pos: 27.5,5.5 + parent: 21002 + - uid: 21392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,10.5 + parent: 21002 + - uid: 21407 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 21002 + - uid: 21494 + components: + - type: Transform + pos: 25.5,5.5 + parent: 21002 + - uid: 21500 + components: + - type: Transform + pos: 24.5,3.5 + parent: 21002 + - uid: 21501 + components: + - type: Transform + pos: 24.5,1.5 + parent: 21002 + - uid: 21685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 21002 + - uid: 21690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,10.5 + parent: 21002 + - uid: 21704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,10.5 + parent: 21002 + - uid: 22324 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 21002 + - uid: 22325 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 21002 + - uid: 22328 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 21002 + - uid: 22359 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 21002 + - uid: 22367 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 21002 + - uid: 22372 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 21002 + - uid: 22373 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 21002 + - uid: 22374 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 21002 + - uid: 22375 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 21002 + - uid: 22376 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 21002 + - uid: 22377 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 21002 + - uid: 22381 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 21002 + - uid: 22431 + components: + - type: Transform + pos: 17.5,6.5 + parent: 21002 + - uid: 22432 + components: + - type: Transform + pos: 19.5,7.5 + parent: 21002 + - uid: 22433 + components: + - type: Transform + pos: 17.5,7.5 + parent: 21002 + - uid: 22434 + components: + - type: Transform + pos: 19.5,5.5 + parent: 21002 + - uid: 22437 + components: + - type: Transform + pos: 17.5,5.5 + parent: 21002 + - uid: 22438 + components: + - type: Transform + pos: 19.5,6.5 + parent: 21002 + - uid: 22439 + components: + - type: Transform + pos: 18.5,7.5 + parent: 21002 + - uid: 22705 + components: + - type: Transform + pos: 24.5,5.5 + parent: 21002 + - uid: 22744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 21002 + - uid: 22778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 21002 + - uid: 22885 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 21002 + - uid: 22914 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 21002 + - uid: 25545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 21002 + - uid: 25570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,5.5 + parent: 21002 + - uid: 26577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 21002 + - uid: 26588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 21002 + - uid: 26595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 21002 + - uid: 26700 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 21002 + - uid: 28018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,11.5 + parent: 21002 + - uid: 28020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,7.5 + parent: 21002 + - uid: 28024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,9.5 + parent: 21002 + - uid: 28026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,7.5 + parent: 21002 + - uid: 28044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,10.5 + parent: 21002 +- proto: WardrobeBlackFilled + entities: + - uid: 11963 + components: + - type: Transform + pos: -10.5,-80.5 + parent: 2 +- proto: WardrobeBlueFilled + entities: + - uid: 11940 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 1048 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8958 + - 8959 + - 8960 + - 8961 + - 8962 + - 8963 + - 8964 + - 8965 + - 8966 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeGreenFilled + entities: + - uid: 11961 + components: + - type: Transform + pos: -10.5,-75.5 + parent: 2 +- proto: WardrobeGreyFilled + entities: + - uid: 11962 + components: + - type: Transform + pos: 5.5,-80.5 + parent: 2 +- proto: WardrobeMixedFilled + entities: + - uid: 11968 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 +- proto: WardrobePinkFilled + entities: + - uid: 11970 + components: + - type: Transform + pos: 5.5,-68.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 4233 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: 48.5,-21.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 +- proto: WardrobeWhiteFilled + entities: + - uid: 11969 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 2 +- proto: WardrobeYellow + entities: + - uid: 5862 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5863 + - 5864 + - 5865 + - 5866 + - 5867 + - 5868 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeYellowFilled + entities: + - uid: 11939 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 8916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,31.5 + parent: 2 + - uid: 28304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 21002 +- proto: WarningCO2 + entities: + - uid: 8912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 8913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,10.5 + parent: 2 + - uid: 28302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 21002 +- proto: WarningN2O + entities: + - uid: 8914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 8915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,12.5 + parent: 2 + - uid: 28303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 21002 +- proto: WarningPlasma + entities: + - uid: 6196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,16.5 + parent: 2 +- proto: WarningTritium + entities: + - uid: 8920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,24.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 8917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,34.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,28.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,18.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,5.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 1616 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: -57.5,-22.5 + parent: 2 + - uid: 18596 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 21432 + components: + - type: Transform + pos: 30.5,-34.5 + parent: 21002 + - uid: 23999 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 +- proto: WatermelonSeeds + entities: + - uid: 19123 + components: + - type: Transform + pos: -52.45189,-42.387215 + parent: 2 + - uid: 19124 + components: + - type: Transform + pos: -52.155014,-42.62159 + parent: 2 + - uid: 19150 + components: + - type: Transform + pos: 43.48993,42.442574 + parent: 2 + - uid: 19151 + components: + - type: Transform + pos: 43.48993,42.442574 + parent: 2 + - uid: 19152 + components: + - type: Transform + pos: 43.48993,42.442574 + parent: 2 + - uid: 22763 + components: + - type: Transform + pos: 8.4822235,7.484104 + parent: 21002 + - uid: 22764 + components: + - type: Transform + pos: 8.7790985,7.171604 + parent: 21002 +- proto: WaterTankFull + entities: + - uid: 9480 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 18900 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 18901 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 18902 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 2 + - uid: 18903 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 2 + - uid: 18904 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 2 + - uid: 18905 + components: + - type: Transform + pos: -27.5,-51.5 + parent: 2 + - uid: 18925 + components: + - type: Transform + pos: 38.5,37.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 3323 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 8863 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4281 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 19030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 +- proto: WeaponDisablerPractice + entities: + - uid: 4152 + components: + - type: Transform + pos: 48.49695,-38.404537 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 48.66992,-38.664413 + parent: 2 +- proto: WeaponLaserCarbine + entities: + - uid: 4191 + components: + - type: Transform + pos: 35.374237,-26.450434 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 35.374237,-26.669184 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 34.733612,-26.684809 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: 34.733612,-26.450434 + parent: 2 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 4155 + components: + - type: Transform + pos: 45.517193,-35.503773 + parent: 2 +- proto: WeaponPistolMk58Nonlethal + entities: + - uid: 22247 + components: + - type: Transform + parent: 22574 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponPistolN1984 + entities: + - uid: 4204 + components: + - type: Transform + pos: 32.46886,-20.362041 + parent: 2 +- proto: WeaponProtoKineticAccelerator + entities: + - uid: 21983 + components: + - type: Transform + parent: 21982 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunDoubleBarreledRubber + entities: + - uid: 4196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.393879,-3.4822903 + parent: 2 +- proto: WeaponShotgunEnforcer + entities: + - uid: 4189 + components: + - type: Transform + pos: 32.609486,-26.362041 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: 32.609486,-26.580791 + parent: 2 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 4430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.421173,-41.240723 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 12786 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 4298 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 18355 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 18895 + components: + - type: Transform + pos: 28.5,-45.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 18899 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 18906 + components: + - type: Transform + pos: -25.5,-51.5 + parent: 2 + - uid: 18926 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 25718 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 21002 +- proto: WetFloorSign + entities: + - uid: 9675 + components: + - type: Transform + pos: 22.803389,-2.1261864 + parent: 2 + - uid: 9676 + components: + - type: Transform + pos: 22.303389,-2.1366029 + parent: 2 +- proto: Windoor + entities: + - uid: 1463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-26.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-26.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-36.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-37.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 3318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 3434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-3.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 593 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-26.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 9016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,2.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 11541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 2 + - uid: 23513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 1632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 28359 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 12796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 6236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,33.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,49.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 3412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 1395 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 9918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-40.5 + parent: 2 + - uid: 9937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-45.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 3812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-9.5 + parent: 2 + - uid: 24203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 1549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-18.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-14.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-18.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-11.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-10.5 + parent: 2 + - uid: 19007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 2 + - uid: 20733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-10.5 + parent: 2 + - uid: 21069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 21002 + - uid: 21070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 21002 +- proto: WindoorServiceLocked + entities: + - uid: 633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 +- proto: Window + entities: + - uid: 1443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-24.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-25.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-25.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-24.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 1352 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-26.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-26.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-26.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-26.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-26.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-11.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-8.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-7.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-3.5 + parent: 2 + - uid: 15547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-1.5 + parent: 2 + - uid: 18862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 2 + - uid: 18863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 + - uid: 18864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,1.5 + parent: 2 + - uid: 18865 + components: + - type: Transform + pos: 58.5,2.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 2 + - uid: 18867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 + - uid: 18868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 2 + - uid: 18869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 2 + - uid: 18876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-2.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-11.5 + parent: 2 + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + - uid: 629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 2 + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 2 + - uid: 634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 2 + - uid: 644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 2 + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 2 + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 2 + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 2 + - uid: 656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,8.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-27.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-7.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-7.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-7.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-14.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-14.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-14.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-14.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-12.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-11.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-41.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-26.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,4.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,4.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,6.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,6.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,50.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-37.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-39.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 2 + - uid: 9916 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 2 + - uid: 21056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 21002 + - uid: 21057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 21002 + - uid: 21058 + components: + - type: Transform + pos: 6.5,2.5 + parent: 21002 + - uid: 21059 + components: + - type: Transform + pos: 7.5,2.5 + parent: 21002 + - uid: 21060 + components: + - type: Transform + pos: 2.5,4.5 + parent: 21002 + - uid: 21061 + components: + - type: Transform + pos: 3.5,4.5 + parent: 21002 + - uid: 22734 + components: + - type: Transform + pos: 4.5,4.5 + parent: 21002 + - uid: 22735 + components: + - type: Transform + pos: 8.5,2.5 + parent: 21002 + - uid: 22736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 21002 + - uid: 22737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 21002 + - uid: 25887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 21002 + - uid: 26611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,5.5 + parent: 21002 +- proto: Wirecutter + entities: + - uid: 23787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.1499417,47.52007 + parent: 2 +- proto: WoodblockInstrument + entities: + - uid: 7645 + components: + - type: Transform + parent: 2095 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WoodDoor + entities: + - uid: 804 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 22329 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 21002 + - uid: 22402 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 21002 + - uid: 22403 + components: + - type: Transform + pos: 13.5,4.5 + parent: 21002 + - uid: 22773 + components: + - type: Transform + pos: 18.5,4.5 + parent: 21002 + - uid: 26797 + components: + - type: Transform + pos: 24.5,2.5 + parent: 21002 + - type: Door + secondsUntilStateChange: -47203.098 + state: Opening +- proto: WoodenBench + entities: + - uid: 4172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 + - uid: 9944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 2 + - uid: 10205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,13.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 2 + - uid: 10946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,13.5 + parent: 2 + - uid: 10947 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 10949 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 +- proto: WoodenSignRight + entities: + - uid: 21502 + components: + - type: Transform + pos: 36.48445,5.4555283 + parent: 21002 +- proto: WoodenSupport + entities: + - uid: 21545 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 21002 + - uid: 27268 + components: + - type: Transform + pos: 54.5,16.5 + parent: 21002 + - uid: 27281 + components: + - type: Transform + pos: 64.5,4.5 + parent: 21002 +- proto: WoodenSupportWall + entities: + - uid: 21624 + components: + - type: Transform + pos: 31.5,0.5 + parent: 21002 + - uid: 26560 + components: + - type: Transform + pos: 41.5,13.5 + parent: 21002 + - uid: 26651 + components: + - type: Transform + pos: 42.5,13.5 + parent: 21002 + - uid: 27267 + components: + - type: Transform + pos: 59.5,9.5 + parent: 21002 + - uid: 27280 + components: + - type: Transform + pos: 36.5,6.5 + parent: 21002 + - uid: 27283 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 21002 + - uid: 27298 + components: + - type: Transform + pos: 35.5,5.5 + parent: 21002 + - uid: 28031 + components: + - type: Transform + pos: 31.5,4.5 + parent: 21002 + - uid: 28035 + components: + - type: Transform + pos: 30.5,4.5 + parent: 21002 + - uid: 28043 + components: + - type: Transform + pos: 30.5,0.5 + parent: 21002 + - uid: 28047 + components: + - type: Transform + pos: 52.5,7.5 + parent: 21002 + - uid: 28071 + components: + - type: Transform + pos: 49.5,7.5 + parent: 21002 + - uid: 28075 + components: + - type: Transform + pos: 48.5,7.5 + parent: 21002 +- proto: WoodenSupportWallBroken + entities: + - uid: 26803 + components: + - type: Transform + pos: 52.5,17.5 + parent: 21002 + - uid: 27282 + components: + - type: Transform + pos: 40.5,16.5 + parent: 21002 + - uid: 28038 + components: + - type: Transform + pos: 32.5,0.5 + parent: 21002 + - uid: 28054 + components: + - type: Transform + pos: 51.5,7.5 + parent: 21002 +- proto: Wrench + entities: + - uid: 6774 + components: + - type: Transform + pos: 23.372974,34.66112 + parent: 2 + - uid: 9262 + components: + - type: Transform + pos: -23.502628,23.552471 + parent: 2 + - uid: 9448 + components: + - type: Transform + pos: -29.483091,31.519936 + parent: 2 + - uid: 9789 + components: + - type: Transform + pos: 3.4908397,-35.36204 + parent: 2 + - uid: 19045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.967564,-51.48298 + parent: 2 + - uid: 21207 + components: + - type: Transform + pos: -12.415708,-25.400034 + parent: 2 + - uid: 21208 + components: + - type: Transform + pos: 13.518675,-36.352715 + parent: 2 + - uid: 21209 + components: + - type: Transform + pos: 30.430393,-10.961374 + parent: 2 + - uid: 21210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.482754,-3.0238078 + parent: 2 + - uid: 27822 + components: + - type: Transform + pos: 25.439621,-31.560535 + parent: 21002 +... diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index f688e2131a..22b08b60b6 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -115,11 +115,11 @@ entities: version: 6 2,0: ind: 2,0 - tiles: WQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAATAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATAAAAAAATAAAAAAATAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADTAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAATAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATAAAAAAATAAAAAAATAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADTAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 3,0: ind: 3,0 - tiles: HQAAAAADWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAADWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAADWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -183,7 +183,7 @@ entities: version: 6 3,1: ind: 3,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -431,9 +431,9 @@ entities: 3,4: 0: 65535 3,5: - 0: 65535 - 3,6: 0: 32767 + 3,6: + 0: 30583 -8,0: 0: 65535 -8,1: @@ -557,7 +557,7 @@ entities: -3,5: 0: 65535 -3,6: - 0: 65535 + 0: 49151 -2,4: 0: 65535 -2,5: @@ -579,15 +579,15 @@ entities: -5,6: 0: 65535 -1,8: - 0: 53247 + 0: 36847 4,4: 0: 65535 0,8: - 0: 36863 + 0: 4095 1,8: 0: 40959 2,8: - 0: 4407 + 0: 55 8,0: 0: 65535 8,1: @@ -617,17 +617,21 @@ entities: 11,1: 0: 65535 11,2: - 0: 65535 + 0: 16383 + 2: 49152 11,3: - 0: 65535 + 0: 65331 + 2: 204 12,0: 0: 65535 12,1: 0: 65535 12,2: - 0: 65535 + 0: 4095 + 2: 61440 12,3: - 0: 65535 + 2: 255 + 0: 65280 8,-3: 0: 65535 8,-2: @@ -645,11 +649,11 @@ entities: 10,-1: 0: 65535 10,-4: - 0: 65529 + 0: 65521 10,-3: 0: 65535 11,-4: - 0: 65527 + 0: 63472 11,-3: 0: 65535 11,-2: @@ -765,7 +769,7 @@ entities: -9,-4: 0: 65519 12,-4: - 0: 65523 + 0: 62705 12,-3: 0: 65535 12,-2: @@ -773,7 +777,7 @@ entities: 12,-1: 0: 65535 13,-4: - 0: 65535 + 0: 63720 13,-3: 0: 65535 13,-2: @@ -781,21 +785,21 @@ entities: 13,-1: 0: 65535 10,-8: - 0: 64861 + 0: 34816 10,-7: 0: 65535 10,-6: - 0: 65535 + 0: 36863 10,-5: - 0: 36701 + 0: 8 11,-8: - 0: 65535 + 0: 65532 11,-7: 0: 65535 11,-6: 0: 65535 11,-5: - 0: 57343 + 0: 36095 12,-8: 0: 65535 12,-7: @@ -805,37 +809,29 @@ entities: 12,-5: 0: 65535 13,-8: - 0: 65407 + 0: 65393 13,-7: 0: 65535 13,-6: 0: 65535 13,-5: - 0: 57343 + 0: 35327 14,-8: - 0: 30037 + 0: 17476 14,-7: 0: 30581 14,-6: - 0: 30071 + 0: 17783 14,-5: - 0: 18261 - 12,-9: - 0: 65327 - 13,-9: - 0: 12047 + 0: 17476 14,-9: - 0: 18255 - 10,-9: - 0: 7951 - 11,-9: - 0: 44815 + 0: 17476 6,-7: 0: 65535 6,-6: 0: 65535 7,-7: - 0: 48127 + 0: 48063 7,-6: 0: 65467 -7,4: @@ -879,7 +875,7 @@ entities: 3,-9: 0: 62836 4,-9: - 0: 65262 + 0: 64716 6,4: 0: 65535 7,4: @@ -887,86 +883,79 @@ entities: 7,5: 0: 65535 7,6: - 0: 61422 + 0: 53196 8,4: 0: 65535 8,5: 0: 48063 - 2: 17472 + 3: 17472 8,6: - 0: 65535 + 0: 65359 9,4: 0: 65535 9,5: 0: 43695 - 3: 4368 - 4: 17472 + 4: 4368 + 2: 17472 9,6: - 0: 8191 + 0: 7951 10,4: 0: 65535 10,5: 0: 43695 - 4: 4368 + 2: 4368 5: 17472 11,4: 0: 65535 11,5: 0: 43695 - 4: 21840 + 2: 21840 12,4: 0: 65535 12,5: 0: 13183 13,4: - 0: 65399 - 4: 136 + 0: 65535 13,5: - 0: 7 + 0: 1 -8,7: 0: 242 8,-8: - 0: 17477 + 0: 1 8,-7: 0: 65535 8,-10: - 0: 12528 - 8,-9: - 0: 17486 + 0: 240 -10,4: 0: 65535 -10,7: 0: 192 -9,7: 0: 240 - 4,-10: - 0: 27696 5,-10: - 0: 17904 + 0: 17648 5,-9: 0: 65535 6,-10: - 0: 17648 + 0: 240 6,-9: 0: 65535 7,-10: - 0: 50416 + 0: 240 7,-9: 0: 13107 - 9,7: - 0: 1 10,6: - 0: 4095 + 0: 3855 11,6: - 0: 4095 + 0: 3871 12,6: - 0: 31 + 0: 15 6,5: 0: 57343 14,-4: - 0: 30207 + 0: 29711 14,-3: - 0: 63479 + 0: 30711 14,-2: 0: 65527 5,4: @@ -974,37 +963,27 @@ entities: 5,5: 0: 65535 5,7: - 0: 3823 + 0: 15 5,6: 0: 65535 6,7: - 0: 273 + 0: 1 6,6: 0: 39417 2,-9: 0: 63479 15,-4: - 0: 13107 - 15,-8: - 0: 4369 - 15,-7: - 0: 4369 - 15,-6: - 0: 4369 + 0: 8739 15,-5: - 0: 13073 - 15,-9: - 0: 4369 - 9,-9: - 0: 15 + 0: 8704 3,7: 0: 3 -4,7: - 0: 35057 + 0: 2289 -3,7: - 0: 61436 + 0: 11000 -2,7: - 0: 65535 + 0: 4095 -7,7: 0: 16 -6,7: @@ -1014,9 +993,9 @@ entities: -1,9: 0: 142 0,9: - 0: 3247 + 0: 15 1,9: - 0: 303 + 0: 15 13,0: 0: 65535 13,1: @@ -1024,8 +1003,7 @@ entities: 13,2: 0: 65535 13,3: - 0: 32767 - 4: 32768 + 0: 65535 14,0: 0: 65535 14,2: @@ -1033,21 +1011,21 @@ entities: 14,1: 0: 65535 14,3: - 0: 30719 + 0: 255 -8,-5: 0: 65535 -5,-8: 0: 65535 -11,3: - 0: 61102 + 0: 58030 -10,3: 0: 65535 14,-1: 0: 65535 15,-3: - 0: 13171 + 0: 12914 -11,4: - 0: 52430 + 0: 70 0,-9: 0: 65519 1,-9: @@ -1057,7 +1035,7 @@ entities: 14,6: 0: 7 14,4: - 0: 30583 + 0: 28672 14,5: 0: 17476 -1,-9: @@ -1099,11 +1077,11 @@ entities: 2,-10: 0: 65535 3,-10: - 0: 18417 + 0: 18241 -2,-10: - 0: 65535 + 0: 32767 -2,-9: - 0: 65455 + 0: 65327 -1,-10: 0: 40959 16,-2: @@ -1146,18 +1124,10 @@ entities: 0: 18244 19,2: 0: 61556 - 12,-10: - 0: 8944 - 13,-10: - 0: 240 14,-10: 0: 17520 9,-10: - 0: 240 - 10,-10: - 0: 224 - 11,-10: - 0: 176 + 0: 16 -8,-8: 0: 4479 -8,-7: @@ -1179,13 +1149,13 @@ entities: -10,-7: 0: 61166 -10,-6: - 0: 60158 + 0: 58094 -9,-8: 0: 65535 -9,-7: 0: 65535 -9,-6: - 0: 63487 + 0: 62719 -9,-10: 0: 63728 -9,-9: @@ -1197,7 +1167,7 @@ entities: -8,-6: 0: 62960 -6,-9: - 0: 65518 + 0: 65450 -5,-9: 0: 65535 -7,-6: @@ -1215,19 +1185,17 @@ entities: -11,-1: 0: 65279 -11,-4: - 0: 65528 + 0: 61440 -11,-3: 0: 65535 -11,-2: 0: 65535 -10,-4: - 0: 65432 + 0: 65160 0,-10: - 0: 53247 + 0: 20479 1,-10: 0: 65535 - -11,-5: - 0: 34816 -5,-10: 0: 65486 -7,-8: @@ -1239,37 +1207,33 @@ entities: -7,-9: 0: 52224 7,7: - 0: 34956 + 0: 12 8,7: - 0: 65535 + 0: 61167 8,8: - 0: 65535 + 0: 65534 8,9: - 0: 4095 - 7,8: - 0: 34952 - 7,9: - 0: 2184 + 0: 3839 4,6: 0: 52428 4,7: 0: 12 -3,8: - 0: 3326 + 0: 3086 -2,8: - 0: 24575 + 0: 7967 -11,5: - 0: 36044 + 0: 35916 -11,6: 0: 2184 -12,-4: - 0: 63488 + 0: 61440 -12,-3: 0: 65535 -12,-2: 0: 136 -10,-5: - 0: 32810 + 0: 32776 -9,-5: 0: 65484 0,-12: @@ -1297,9 +1261,9 @@ entities: -3,-10: 0: 65535 -2,-12: - 0: 37120 + 0: 32768 -2,-11: - 0: 65535 + 0: 65532 -1,-12: 0: 64591 -1,-11: @@ -1314,12 +1278,6 @@ entities: 0: 4368 9,9: 0: 17 - -4,8: - 0: 136 - -3,9: - 0: 14 - -2,9: - 0: 7 2,9: 0: 1 -14,-3: @@ -1383,21 +1341,6 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - 0 - 0 - 0 @@ -1413,6 +1356,21 @@ entities: temperature: 293.15 moles: - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 - 0 - 0 - 0 @@ -1447,23 +1405,12 @@ entities: chunkCollection: version: 2 nodes: - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 531: 34,17 - 532: 36,17 - 533: 38,17 - 534: 40,17 - 535: 42,17 - 536: 44,17 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 587: -12,-30 + 581: -12,-30 - node: color: '#FFFFFFFF' id: Arrows @@ -1471,7 +1418,7 @@ entities: 507: 20,17 522: 20,17 526: 20,27 - 588: -12,-29 + 582: -12,-29 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1479,26 +1426,25 @@ entities: decals: 523: 22,17 527: 22,27 - 795: 46,17 - node: color: '#FFFFFFFF' id: Bot decals: 501: -35,6 502: -30,11 - 538: -3,-31 - 808: 31,8 - 809: 31,9 + 532: -3,-31 + 789: 31,8 + 790: 31,9 - node: zIndex: 1 color: '#FFFFFFFF' id: Bot decals: - 642: 20,7 - 643: 21,7 - 644: 22,7 - 716: -7,-26 - 717: -6,-26 + 636: 20,7 + 637: 21,7 + 638: 22,7 + 710: -7,-26 + 711: -6,-26 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1516,597 +1462,597 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 592: 52,-22 + 586: 52,-22 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 645: 32,-24 - 646: 33,-25 - 647: 34,-26 + 639: 32,-24 + 640: 33,-25 + 641: 34,-26 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 722: -9,-28 + 716: -9,-28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 590: 46,-22 + 584: 46,-22 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 723: -10,-28 + 717: -10,-28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 589: 52,-28 + 583: 52,-28 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 721: -9,-30 + 715: -9,-30 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 591: 46,-28 + 585: 46,-28 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 720: -10,-30 + 714: -10,-30 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 606: 51,-22 - 607: 52,-23 + 600: 51,-22 + 601: 52,-23 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 648: 33,-26 - 649: 32,-25 + 642: 33,-26 + 643: 32,-25 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 601: 47,-22 - 608: 46,-23 + 595: 47,-22 + 602: 46,-23 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 602: 51,-28 - 603: 52,-27 - 794: -11,20 + 596: 51,-28 + 597: 52,-27 + 788: -11,20 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 654: 6,17 + 648: 6,17 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 604: 47,-28 - 605: 46,-27 + 598: 47,-28 + 599: 46,-27 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 595: 53,-26 - 596: 53,-24 - 696: 0,-25 + 589: 53,-26 + 590: 53,-24 + 690: 0,-25 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 724: -9,-29 + 718: -9,-29 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 593: 48,-21 - 594: 50,-21 - 691: -6,-23 - 692: -5,-23 - 693: -4,-23 + 587: 48,-21 + 588: 50,-21 + 685: -6,-23 + 686: -5,-23 + 687: -4,-23 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 731: 12,-14 - 732: 13,-14 - 733: 14,-14 - 734: 15,-14 + 725: 12,-14 + 726: 13,-14 + 727: 14,-14 + 728: 15,-14 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 597: 50,-29 - 598: 48,-29 - 791: -8,20 - 792: -9,20 - 793: -10,20 + 591: 50,-29 + 592: 48,-29 + 785: -8,20 + 786: -9,20 + 787: -10,20 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 650: 10,17 - 651: 9,17 - 652: 8,17 - 653: 7,17 + 644: 10,17 + 645: 9,17 + 646: 8,17 + 647: 7,17 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 735: 12,-18 - 736: 13,-18 - 737: 14,-18 - 738: 15,-18 + 729: 12,-18 + 730: 13,-18 + 731: 14,-18 + 732: 15,-18 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 599: 45,-26 - 600: 45,-24 - 697: -2,-25 + 593: 45,-26 + 594: 45,-24 + 691: -2,-25 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 725: -10,-29 + 719: -10,-29 - node: zIndex: 2 color: '#D381C9FF' id: BrickTileSteelCornerNe decals: - 719: -6,-26 + 713: -6,-26 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw decals: - 705: -4,-26 + 699: -4,-26 - node: color: '#D381C9FF' id: BrickTileSteelCornerSe decals: - 711: -8,-24 + 705: -8,-24 - node: color: '#D381C9E5' id: BrickTileSteelCornerSw decals: - 567: -12,-32 + 561: -12,-32 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 820: 25,19 + 801: 25,19 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 629: -36,-11 - 630: -41,-11 - 631: -47,-11 + 623: -36,-11 + 624: -41,-11 + 625: -47,-11 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 626: -50,-11 - 627: -43,-11 - 628: -38,-11 + 620: -50,-11 + 621: -43,-11 + 622: -38,-11 - node: color: '#D381C9E5' id: BrickTileSteelInnerNe decals: - 571: -10,-26 + 565: -10,-26 - node: color: '#D381C9FF' id: BrickTileSteelInnerNe decals: - 695: -6,-27 - 710: 0,-29 - 715: -13,-19 + 689: -6,-27 + 704: 0,-29 + 709: -13,-19 - node: color: '#D381C9FF' id: BrickTileSteelInnerNw decals: - 704: -4,-27 - 706: -3,-26 + 698: -4,-27 + 700: -3,-26 - node: color: '#D381C9E5' id: BrickTileSteelInnerSe decals: - 561: -18,-28 - 564: -7,-33 + 555: -18,-28 + 558: -7,-33 - node: color: '#D381C9FF' id: BrickTileSteelInnerSe decals: - 707: 0,-26 - 712: -8,-23 + 701: 0,-26 + 706: -8,-23 - node: color: '#D381C9E5' id: BrickTileSteelInnerSw decals: - 543: -12,-20 - 568: -12,-31 + 537: -12,-20 + 562: -12,-31 - node: color: '#D381C9FF' id: BrickTileSteelLineE decals: - 708: 0,-27 - 709: 0,-28 + 702: 0,-27 + 703: 0,-28 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 640: -36,-9 + 634: -36,-9 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 766: -7,12 - 767: -7,14 - 768: -7,16 + 760: -7,12 + 761: -7,14 + 762: -7,16 - node: color: '#D381C9E5' id: BrickTileSteelLineN decals: - 545: -8,-19 - 546: -9,-19 - 547: -10,-19 - 548: -11,-19 - 570: -9,-26 + 539: -8,-19 + 540: -9,-19 + 541: -10,-19 + 542: -11,-19 + 564: -9,-26 - node: color: '#D381C9FF' id: BrickTileSteelLineN decals: - 694: -8,-26 - 714: -12,-19 + 688: -8,-26 + 708: -12,-19 - node: zIndex: 2 color: '#D381C9FF' id: BrickTileSteelLineN decals: - 718: -7,-26 + 712: -7,-26 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 539: -11,-24 + 533: -11,-24 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 632: -49,-11 - 633: -48,-11 - 634: -42,-11 - 635: -37,-11 + 626: -49,-11 + 627: -48,-11 + 628: -42,-11 + 629: -37,-11 - node: color: '#D381C9E5' id: BrickTileSteelLineS decals: - 544: -13,-20 - 557: -17,-28 - 558: -16,-28 - 559: -15,-28 - 560: -14,-28 - 562: -5,-33 - 563: -6,-33 - 566: -11,-32 - 569: -13,-31 + 538: -13,-20 + 551: -17,-28 + 552: -16,-28 + 553: -15,-28 + 554: -14,-28 + 556: -5,-33 + 557: -6,-33 + 560: -11,-32 + 563: -13,-31 - node: color: '#D381C9FF' id: BrickTileSteelLineS decals: - 713: -9,-24 + 707: -9,-24 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 664: 57,5 - 665: 56,5 - 817: 26,19 - 818: 27,19 - 819: 28,19 + 658: 57,5 + 659: 56,5 + 798: 26,19 + 799: 27,19 + 800: 28,19 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 636: -48,-11 - 637: -49,-11 - 638: -42,-11 - 639: -37,-11 + 630: -48,-11 + 631: -49,-11 + 632: -42,-11 + 633: -37,-11 - node: color: '#D381C9E5' id: BrickTileSteelLineW decals: - 540: -12,-23 - 541: -12,-22 - 542: -12,-21 + 534: -12,-23 + 535: -12,-22 + 536: -12,-21 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 821: 25,20 - 822: 25,21 + 802: 25,20 + 803: 25,21 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 641: -38,-9 + 635: -38,-9 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 763: -9,12 - 764: -9,14 - 765: -9,16 + 757: -9,12 + 758: -9,14 + 759: -9,16 - node: zIndex: 2 color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 771: -8,7 + 765: -8,7 - node: zIndex: 2 color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 761: 7,-18 + 755: 7,-18 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 827: 18,15 + 808: 18,15 - node: zIndex: 2 color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 772: -14,7 + 766: -14,7 - node: color: '#52B4E996' id: BrickTileWhiteEndE decals: - 678: 49,-12 + 672: 49,-12 - node: color: '#9FED5896' id: BrickTileWhiteEndE decals: - 674: 52,-10 + 668: 52,-10 - node: color: '#A4610696' id: BrickTileWhiteEndE decals: - 681: 52,-8 + 675: 52,-8 - node: color: '#D381C996' id: BrickTileWhiteEndE decals: - 677: 52,-12 + 671: 52,-12 - node: color: '#D4D4D496' id: BrickTileWhiteEndE decals: - 673: 49,-10 + 667: 49,-10 - node: color: '#EFB34196' id: BrickTileWhiteEndE decals: - 666: 49,-8 + 660: 49,-8 - node: color: '#334E6DC8' id: BrickTileWhiteEndN decals: - 668: 57,-8 + 662: 57,-8 - node: color: '#DE3A3A96' id: BrickTileWhiteEndN decals: - 671: 57,-11 + 665: 57,-11 - node: color: '#334E6DC8' id: BrickTileWhiteEndS decals: - 669: 57,-9 + 663: 57,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteEndS decals: - 670: 57,-12 + 664: 57,-12 - node: color: '#52B4E996' id: BrickTileWhiteEndW decals: - 679: 48,-12 + 673: 48,-12 - node: color: '#9FED5896' id: BrickTileWhiteEndW decals: - 675: 51,-10 + 669: 51,-10 - node: color: '#A4610696' id: BrickTileWhiteEndW decals: - 680: 51,-8 + 674: 51,-8 - node: color: '#D381C996' id: BrickTileWhiteEndW decals: - 676: 51,-12 + 670: 51,-12 - node: color: '#D4D4D496' id: BrickTileWhiteEndW decals: - 672: 48,-10 + 666: 48,-10 - node: color: '#EFB34196' id: BrickTileWhiteEndW decals: - 667: 48,-8 + 661: 48,-8 - node: zIndex: 2 color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 747: 19,-13 + 741: 19,-13 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 825: 22,15 + 806: 22,15 - node: zIndex: 2 color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 746: 17,-13 + 740: 17,-13 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 826: 19,15 + 807: 19,15 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 742: 20,-18 + 736: 20,-18 - node: zIndex: 2 color: '#52B4E996' id: BrickTileWhiteLineE decals: - 744: 19,-14 + 738: 19,-14 - node: zIndex: 2 color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 751: 0,12 - 752: 0,13 - 753: 0,14 - 754: 0,11 + 745: 0,12 + 746: 0,13 + 747: 0,14 + 748: 0,11 - node: zIndex: 2 color: '#EFB34196' id: BrickTileWhiteLineE decals: - 773: -8,8 + 767: -8,8 - node: zIndex: 2 color: '#9FED5896' id: BrickTileWhiteLineN decals: - 775: -20,-11 - 776: -19,-11 - 777: -18,-11 + 769: -20,-11 + 770: -19,-11 + 771: -18,-11 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 813: 26,10 - 814: 27,10 + 794: 26,10 + 795: 27,10 - node: zIndex: 2 color: '#52B4E996' id: BrickTileWhiteLineS decals: - 755: 8,-18 - 756: 9,-18 - 762: 10,-18 + 749: 8,-18 + 750: 9,-18 + 756: 10,-18 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 815: 26,8 - 816: 27,8 - 823: 24,15 - 824: 23,15 - 830: 26,15 - 831: 27,15 - 832: 28,15 + 796: 26,8 + 797: 27,8 + 804: 24,15 + 805: 23,15 + 811: 26,15 + 812: 27,15 + 813: 28,15 - node: zIndex: 2 color: '#EFB34196' id: BrickTileWhiteLineS decals: - 769: -9,7 - 770: -13,7 + 763: -9,7 + 764: -13,7 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 739: 17,-18 - 740: 18,-18 - 741: 19,-18 + 733: 17,-18 + 734: 18,-18 + 735: 19,-18 - node: zIndex: 2 color: '#52B4E996' id: BrickTileWhiteLineW decals: - 745: 17,-14 - 757: 7,-17 - 758: 7,-16 - 759: 7,-15 - 760: 7,-14 + 739: 17,-14 + 751: 7,-17 + 752: 7,-16 + 753: 7,-15 + 754: 7,-14 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 828: 18,16 - 829: 18,17 + 809: 18,16 + 810: 18,17 - node: zIndex: 2 color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 748: -1,12 - 749: -1,13 - 750: -1,14 + 742: -1,12 + 743: -1,13 + 744: -1,14 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 837: 48,-6 - 838: 48,-5 - 839: 48,-4 - 840: 48,-3 + 818: 48,-6 + 819: 48,-5 + 820: 48,-4 + 821: 48,-3 - node: zIndex: 2 color: '#EFB34196' id: BrickTileWhiteLineW decals: - 774: -14,8 + 768: -14,8 - node: color: '#FFFFFFFF' id: Bushf1 @@ -2174,7 +2120,7 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 690: 58,-5 + 684: 58,-5 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2230,8 +2176,8 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 565: -8,-33 - 699: -1,-31 + 559: -8,-33 + 693: -1,-31 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2250,16 +2196,16 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 779: -20,10 - 783: -20,9 - 784: -18,9 + 773: -20,10 + 777: -20,9 + 778: -18,9 - node: cleanable: True zIndex: 2 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 782: -20,8 + 776: -20,8 - node: color: '#FFFFFFFF' id: DirtLight @@ -2326,7 +2272,7 @@ entities: color: '#FFFFFFFF' id: DirtLight decals: - 780: -19,9 + 774: -19,9 - node: color: '#FFFFFFFF' id: DirtMedium @@ -2352,8 +2298,8 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 778: -19,10 - 781: -19,8 + 772: -19,10 + 775: -19,8 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -2397,11 +2343,11 @@ entities: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 726: 9,-3 - 727: 9,-2 - 728: 10,-2 - 729: 8,-2 - 730: 9,-1 + 720: 9,-3 + 721: 9,-2 + 722: 10,-2 + 723: 8,-2 + 724: 9,-1 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale @@ -2608,8 +2554,8 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 572: -17,-19 - 573: -16,-19 + 566: -17,-19 + 567: -16,-19 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -2684,11 +2630,11 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 577: 2,-31 - 578: 2,-30 - 579: 2,-29 - 580: 2,-28 - 581: 2,-27 + 571: 2,-31 + 572: 2,-30 + 573: 2,-29 + 574: 2,-28 + 575: 2,-27 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -2725,7 +2671,7 @@ entities: 238: 37,6 254: 42,8 255: 42,7 - 663: 55,2 + 657: 55,2 - node: color: '#FFD886FF' id: HalfTileOverlayGreyscale270 @@ -2764,7 +2710,7 @@ entities: 148: 12,1 431: 12,-9 432: 12,-10 - 849: 12,-11 + 830: 12,-11 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -2821,70 +2767,70 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 537: -16,-25 + 531: -16,-25 - node: color: '#D381C9E5' id: MiniTileSteelCornerSe decals: - 549: -14,-23 + 543: -14,-23 - node: color: '#D381C9E5' id: MiniTileSteelCornerSw decals: - 555: -18,-24 + 549: -18,-24 - node: color: '#D381C9E5' id: MiniTileSteelInnerSe decals: - 550: -15,-23 + 544: -15,-23 - node: color: '#D381C9E5' id: MiniTileSteelInnerSw decals: - 556: -17,-24 + 550: -17,-24 - node: color: '#D381C9E5' id: MiniTileSteelLineE decals: - 551: -14,-22 + 545: -14,-22 - node: color: '#D381C9E5' id: MiniTileSteelLineW decals: - 552: -18,-21 - 553: -18,-22 - 554: -18,-23 + 546: -18,-21 + 547: -18,-22 + 548: -18,-23 - node: color: '#3AB3DA99' id: MiniTileWhiteInnerSe decals: - 618: -51,-12 - 619: -44,-12 + 612: -51,-12 + 613: -44,-12 - node: color: '#3AB3DA99' id: MiniTileWhiteInnerSw decals: - 617: -46,-12 - 620: -53,-12 - 623: -39,-12 + 611: -46,-12 + 614: -53,-12 + 617: -39,-12 - node: color: '#3AB3DA99' id: MiniTileWhiteLineS decals: - 609: -50,-12 - 610: -49,-12 - 611: -48,-12 - 612: -47,-12 - 613: -43,-12 - 614: -42,-12 - 615: -41,-12 - 616: -40,-12 + 603: -50,-12 + 604: -49,-12 + 605: -48,-12 + 606: -47,-12 + 607: -43,-12 + 608: -42,-12 + 609: -41,-12 + 610: -40,-12 - node: color: '#3AB3DA99' id: MiniTileWhiteLineW decals: - 621: -54,-11 - 622: -54,-10 + 615: -54,-11 + 616: -54,-10 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -2923,7 +2869,7 @@ entities: 240: 50,5 251: 44,9 256: 42,6 - 662: 55,1 + 656: 55,1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -2977,9 +2923,9 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 575: -18,-18 - 576: -15,-19 - 582: 2,-26 + 569: -18,-18 + 570: -15,-19 + 576: 2,-26 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -2993,7 +2939,7 @@ entities: decals: 168: 35,-5 253: 42,9 - 661: 55,3 + 655: 55,3 - node: color: '#FFD886FF' id: QuarterTileOverlayGreyscale270 @@ -3050,9 +2996,9 @@ entities: id: StandClear decals: 520: 21,24 - 624: -52,-12 - 625: -45,-12 - 698: 1,-30 + 618: -52,-12 + 619: -45,-12 + 692: 1,-30 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3073,7 +3019,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 574: -18,-19 + 568: -18,-19 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 @@ -3088,62 +3034,64 @@ entities: color: '#FFFFFFFF' id: WarnCornerNE decals: - 841: -41,-6 + 822: -41,-6 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 842: -43,-6 + 823: -43,-6 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 843: -41,-4 + 824: -41,-4 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 844: -43,-4 + 825: -43,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 807: 36,13 + 840: 37,12 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 806: 40,13 + 839: 39,12 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 805: 36,15 + 842: 37,16 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 804: 40,15 + 841: 39,16 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 848: 12,-12 + 829: 12,-12 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 847: 11,-12 + 828: 11,-12 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 583: -15,-30 - 584: -15,-31 - 682: 54,-4 - 683: 54,-5 - 684: 54,-6 - 803: 36,14 + 577: -15,-30 + 578: -15,-31 + 676: 54,-4 + 677: 54,-5 + 678: 54,-6 + 831: 37,14 + 832: 37,13 + 833: 37,15 - node: color: '#FFFFFFFF' id: WarnLineN @@ -3151,30 +3099,30 @@ entities: 528: 20,26 529: 21,26 530: 22,26 - 685: 56,-4 - 686: 57,-4 - 687: 58,-4 - 688: 59,-4 - 689: 60,-4 - 700: -3,-29 - 701: -2,-29 - 702: -1,-29 - 703: 0,-29 - 796: 39,15 - 797: 38,15 - 798: 37,15 - 845: -42,-4 + 679: 56,-4 + 680: 57,-4 + 681: 58,-4 + 682: 59,-4 + 683: 60,-4 + 694: -3,-29 + 695: -2,-29 + 696: -1,-29 + 697: 0,-29 + 826: -42,-4 + 834: 38,16 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 585: -17,-31 - 586: -17,-30 - 787: -15,18 - 788: -15,19 - 789: -15,20 - 790: -15,21 - 802: 40,14 + 579: -17,-31 + 580: -17,-30 + 781: -15,18 + 782: -15,19 + 783: -15,20 + 784: -15,21 + 836: 39,13 + 837: 39,14 + 838: 39,15 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3182,10 +3130,8 @@ entities: 518: 21,24 519: 22,24 521: 20,24 - 799: 37,13 - 800: 38,13 - 801: 39,13 - 846: -42,-6 + 827: -42,-6 + 835: 38,12 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3270,57 +3216,58 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 660: -4,-6 + 654: -4,-6 - node: zIndex: 2 color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 785: -37,19 + 779: -37,19 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 659: -4,-7 - 810: 27,10 - 811: 27,9 - 812: 27,8 + 653: -4,-7 + 791: 27,10 + 792: 27,9 + 793: 27,8 - node: zIndex: 2 color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 743: 20,-12 + 737: 20,-12 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 655: -8,-6 - 656: -7,-6 - 657: -6,-6 - 658: -5,-6 + 649: -8,-6 + 650: -7,-6 + 651: -6,-6 + 652: -5,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 833: 37,0 - 834: 38,0 - 835: 39,0 - 836: 40,0 + 814: 37,0 + 815: 38,0 + 816: 39,0 + 817: 40,0 - node: zIndex: 2 color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 786: -36,19 + 780: -36,19 - type: OccluderTree - type: SpreaderGrid - type: Shuttle - type: GridPathfinding - type: GasTileOverlay - type: RadiationGridResistance + - type: NavMap - uid: 658 components: - type: MetaData @@ -3380,8 +3327,15 @@ entities: - 10909 - 10960 - 8384 - - type: AtmosDevice - joinedGrid: 31 + - uid: 6582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,10.5 + parent: 31 + - type: DeviceList + devices: + - 6492 - uid: 7104 components: - type: Transform @@ -3396,8 +3350,6 @@ entities: - 4267 - 9965 - 9966 - - type: AtmosDevice - joinedGrid: 31 - uid: 7345 components: - type: Transform @@ -3414,8 +3366,6 @@ entities: - 1481 - 7335 - 8438 - - type: AtmosDevice - joinedGrid: 31 - uid: 7904 components: - type: Transform @@ -3430,8 +3380,6 @@ entities: - 10375 - 4921 - 3724 - - type: AtmosDevice - joinedGrid: 31 - uid: 8476 components: - type: Transform @@ -3448,8 +3396,6 @@ entities: - 337 - 6080 - 6071 - - type: AtmosDevice - joinedGrid: 31 - uid: 9042 components: - type: Transform @@ -3472,8 +3418,6 @@ entities: - 6120 - 6117 - 6118 - - type: AtmosDevice - joinedGrid: 31 - uid: 9164 components: - type: Transform @@ -3484,11 +3428,8 @@ entities: devices: - 7099 - 6552 - - 7382 - 11092 - 9961 - - type: AtmosDevice - joinedGrid: 31 - uid: 9975 components: - type: Transform @@ -3501,13 +3442,10 @@ entities: - 6197 - 3274 - 6413 - - 6533 - 10008 - 9958 - 9959 - 9960 - - type: AtmosDevice - joinedGrid: 31 - uid: 9976 components: - type: Transform @@ -3523,8 +3461,6 @@ entities: - 4480 - 4603 - 4481 - - type: AtmosDevice - joinedGrid: 31 - uid: 9977 components: - type: Transform @@ -3544,8 +3480,6 @@ entities: - 9959 - 9960 - 9961 - - type: AtmosDevice - joinedGrid: 31 - uid: 9978 components: - type: Transform @@ -3565,8 +3499,6 @@ entities: - 5474 - 8876 - 8875 - - type: AtmosDevice - joinedGrid: 31 - uid: 9979 components: - type: Transform @@ -3601,8 +3533,6 @@ entities: - 5543 - 5544 - 7460 - - type: AtmosDevice - joinedGrid: 31 - uid: 9983 components: - type: Transform @@ -3614,8 +3544,6 @@ entities: - 5704 - 4783 - 5698 - - type: AtmosDevice - joinedGrid: 31 - uid: 9991 components: - type: Transform @@ -3631,8 +3559,6 @@ entities: - 100 - 5365 - 5332 - - type: AtmosDevice - joinedGrid: 31 - uid: 9996 components: - type: Transform @@ -3650,8 +3576,6 @@ entities: - 7745 - 7746 - 6169 - - type: AtmosDevice - joinedGrid: 31 - uid: 9998 components: - type: Transform @@ -3669,8 +3593,6 @@ entities: - 4185 - 10000 - 9999 - - type: AtmosDevice - joinedGrid: 31 - uid: 10001 components: - type: Transform @@ -3692,8 +3614,6 @@ entities: - 5869 - 5864 - 716 - - type: AtmosDevice - joinedGrid: 31 - uid: 10003 components: - type: Transform @@ -3711,8 +3631,6 @@ entities: - 5883 - 1230 - 8417 - - type: AtmosDevice - joinedGrid: 31 - uid: 10005 components: - type: Transform @@ -3728,8 +3646,6 @@ entities: - 3116 - 3118 - 1505 - - type: AtmosDevice - joinedGrid: 31 - uid: 10015 components: - type: Transform @@ -3747,8 +3663,6 @@ entities: - 24 - 1185 - 10099 - - type: AtmosDevice - joinedGrid: 31 - uid: 10016 components: - type: Transform @@ -3763,8 +3677,6 @@ entities: - 5597 - 5104 - 10017 - - type: AtmosDevice - joinedGrid: 31 - uid: 10018 components: - type: Transform @@ -3786,8 +3698,6 @@ entities: - 5495 - 5606 - 5607 - - type: AtmosDevice - joinedGrid: 31 - uid: 10021 components: - type: Transform @@ -3804,17 +3714,14 @@ entities: - 4529 - 4528 - 4525 - - 10022 - - type: AtmosDevice - joinedGrid: 31 + - 7041 + - 7040 - uid: 10031 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 10238 components: - type: Transform @@ -3832,8 +3739,6 @@ entities: - 10240 - 10241 - 10242 - - type: AtmosDevice - joinedGrid: 31 - uid: 10371 components: - type: Transform @@ -3850,8 +3755,6 @@ entities: - 3857 - 3724 - 3428 - - type: AtmosDevice - joinedGrid: 31 - uid: 10373 components: - type: Transform @@ -3864,8 +3767,6 @@ entities: - 4718 - 10427 - 10426 - - type: AtmosDevice - joinedGrid: 31 - uid: 10408 components: - type: Transform @@ -3880,8 +3781,6 @@ entities: - 10313 - 10314 - 10315 - - type: AtmosDevice - joinedGrid: 31 - uid: 11002 components: - type: Transform @@ -3899,19 +3798,6 @@ entities: - 11000 - 673 - 8940 - - type: AtmosDevice - joinedGrid: 31 - - uid: 11098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,14.5 - parent: 31 - - type: DeviceList - devices: - - 11097 - - type: AtmosDevice - joinedGrid: 31 - proto: AirCanister entities: - uid: 1279 @@ -3919,22 +3805,11 @@ entities: - type: Transform pos: -2.5,-8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 6582 - components: - - type: Transform - pos: 36.5,8.5 - parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 10112 components: - type: Transform pos: 35.5,8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: Airlock entities: - uid: 4082 @@ -3972,6 +3847,12 @@ entities: - type: Transform pos: 33.5,7.5 parent: 31 + - uid: 11098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,10.5 + parent: 31 - proto: AirlockBarLocked entities: - uid: 2272 @@ -5313,6 +5194,11 @@ entities: - type: Transform pos: -11.5,-20.5 parent: 31 + - uid: 1137 + components: + - type: Transform + pos: 48.5,12.5 + parent: 31 - uid: 1481 components: - type: Transform @@ -5324,17 +5210,19 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-26.5 parent: 31 + - uid: 6492 + components: + - type: Transform + pos: 48.5,12.5 + parent: 31 + - type: DeviceNetwork + deviceLists: + - 6582 - uid: 6910 components: - type: Transform pos: 27.5,20.5 parent: 31 - - uid: 7382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,12.5 - parent: 31 - uid: 10022 components: - type: Transform @@ -5401,11 +5289,6 @@ entities: - type: Transform pos: 11.5,-8.5 parent: 31 - - uid: 11097 - components: - - type: Transform - pos: 55.5,15.5 - parent: 31 - proto: AltarDruid entities: - uid: 4586 @@ -5422,31 +5305,11 @@ entities: parent: 31 - proto: AmeController entities: - - uid: 6636 + - uid: 1537 components: - type: Transform - pos: 50.5,7.5 + pos: 47.5,7.5 parent: 31 -- proto: AmePart - entities: - - uid: 3475 - components: - - type: Transform - parent: 6603 - - type: Physics - canCollide: False - - uid: 3476 - components: - - type: Transform - parent: 6603 - - type: Physics - canCollide: False - - uid: 7777 - components: - - type: Transform - parent: 6603 - - type: Physics - canCollide: False - proto: AnomalyScanner entities: - uid: 3425 @@ -5956,30 +5819,105 @@ entities: - type: Transform pos: 46.5,22.5 parent: 31 + - uid: 4265 + components: + - type: Transform + pos: 47.5,11.5 + parent: 31 + - uid: 4276 + components: + - type: Transform + pos: 47.5,12.5 + parent: 31 + - uid: 4287 + components: + - type: Transform + pos: 48.5,13.5 + parent: 31 - uid: 4886 components: - type: Transform - pos: 55.5,16.5 + pos: 46.5,12.5 + parent: 31 + - uid: 5124 + components: + - type: Transform + pos: 46.5,11.5 parent: 31 - uid: 5140 components: - type: Transform pos: 46.5,23.5 parent: 31 + - uid: 5745 + components: + - type: Transform + pos: 49.5,12.5 + parent: 31 + - uid: 5916 + components: + - type: Transform + pos: 49.5,13.5 + parent: 31 + - uid: 6180 + components: + - type: Transform + pos: 48.5,12.5 + parent: 31 + - uid: 6241 + components: + - type: Transform + pos: 48.5,11.5 + parent: 31 + - uid: 6479 + components: + - type: Transform + pos: 51.5,13.5 + parent: 31 + - uid: 6483 + components: + - type: Transform + pos: 50.5,13.5 + parent: 31 + - uid: 6535 + components: + - type: Transform + pos: 51.5,12.5 + parent: 31 + - uid: 6584 + components: + - type: Transform + pos: 51.5,11.5 + parent: 31 + - uid: 6602 + components: + - type: Transform + pos: 49.5,11.5 + parent: 31 + - uid: 6639 + components: + - type: Transform + pos: 46.5,13.5 + parent: 31 + - uid: 6745 + components: + - type: Transform + pos: 50.5,12.5 + parent: 31 - uid: 8210 components: - type: Transform pos: 46.5,21.5 parent: 31 - - uid: 11077 + - uid: 11084 components: - type: Transform - pos: 55.5,17.5 + pos: 47.5,13.5 parent: 31 - - uid: 11096 + - uid: 11288 components: - type: Transform - pos: 55.5,15.5 + pos: 50.5,11.5 parent: 31 - proto: AtmosFixFreezerMarker entities: @@ -6163,8 +6101,6 @@ entities: - type: Transform pos: 32.5,17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: Beaker entities: - uid: 2276 @@ -6176,7 +6112,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -6184,6 +6119,8 @@ entities: - data: null ReagentId: Leporazine Quantity: 40 + - type: MixableSolution + solution: beaker - uid: 10800 components: - type: Transform @@ -6469,14 +6406,30 @@ entities: - type: DeviceLinkSink links: - 1084 - - uid: 6557 + - uid: 6345 components: - type: Transform - pos: 55.5,14.5 + pos: 51.5,12.5 parent: 31 - type: DeviceLinkSink links: - - 10449 + - 11053 + - uid: 6348 + components: + - type: Transform + pos: 51.5,11.5 + parent: 31 + - type: DeviceLinkSink + links: + - 11053 + - uid: 6635 + components: + - type: Transform + pos: 51.5,13.5 + parent: 31 + - type: DeviceLinkSink + links: + - 11053 - uid: 7588 components: - type: Transform @@ -6533,6 +6486,8 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,10.5 parent: 31 + - type: SpamEmitSound + enabled: False - proto: Bloodpack entities: - uid: 4705 @@ -7012,6 +6967,28 @@ entities: - type: Transform pos: 41.43901,-13.360281 parent: 31 +- proto: ButtonFrameCaution + entities: + - uid: 6533 + components: + - type: Transform + pos: 44.5,14.5 + parent: 31 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 6462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,10.5 + parent: 31 +- proto: ButtonFrameExit + entities: + - uid: 6626 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 31 - proto: CableApcExtension entities: - uid: 8 @@ -11054,6 +11031,11 @@ entities: - type: Transform pos: 15.5,-14.5 parent: 31 + - uid: 3476 + components: + - type: Transform + pos: 43.5,11.5 + parent: 31 - uid: 3536 components: - type: Transform @@ -11384,6 +11366,11 @@ entities: - type: Transform pos: 17.5,-10.5 parent: 31 + - uid: 4274 + components: + - type: Transform + pos: 48.5,8.5 + parent: 31 - uid: 4280 components: - type: Transform @@ -12099,11 +12086,6 @@ entities: - type: Transform pos: 44.5,15.5 parent: 31 - - uid: 6337 - components: - - type: Transform - pos: 44.5,14.5 - parent: 31 - uid: 6338 components: - type: Transform @@ -12134,11 +12116,6 @@ entities: - type: Transform pos: 49.5,15.5 parent: 31 - - uid: 6345 - components: - - type: Transform - pos: 47.5,11.5 - parent: 31 - uid: 6346 components: - type: Transform @@ -12189,21 +12166,11 @@ entities: - type: Transform pos: 49.5,0.5 parent: 31 - - uid: 6378 - components: - - type: Transform - pos: 47.5,9.5 - parent: 31 - uid: 6379 components: - type: Transform pos: 49.5,1.5 parent: 31 - - uid: 6386 - components: - - type: Transform - pos: 44.5,12.5 - parent: 31 - uid: 6396 components: - type: Transform @@ -12229,11 +12196,6 @@ entities: - type: Transform pos: 33.5,8.5 parent: 31 - - uid: 6402 - components: - - type: Transform - pos: 49.5,12.5 - parent: 31 - uid: 6403 components: - type: Transform @@ -12244,11 +12206,6 @@ entities: - type: Transform pos: 25.5,16.5 parent: 31 - - uid: 6408 - components: - - type: Transform - pos: 49.5,10.5 - parent: 31 - uid: 6418 components: - type: Transform @@ -12314,21 +12271,6 @@ entities: - type: Transform pos: 36.5,10.5 parent: 31 - - uid: 6437 - components: - - type: Transform - pos: 49.5,9.5 - parent: 31 - - uid: 6442 - components: - - type: Transform - pos: 49.5,13.5 - parent: 31 - - uid: 6443 - components: - - type: Transform - pos: 49.5,11.5 - parent: 31 - uid: 6457 components: - type: Transform @@ -12479,16 +12421,6 @@ entities: - type: Transform pos: 44.5,8.5 parent: 31 - - uid: 6605 - components: - - type: Transform - pos: 47.5,12.5 - parent: 31 - - uid: 6606 - components: - - type: Transform - pos: 47.5,13.5 - parent: 31 - uid: 6611 components: - type: Transform @@ -12544,16 +12476,16 @@ entities: - type: Transform pos: 41.5,9.5 parent: 31 - - uid: 6723 - components: - - type: Transform - pos: 44.5,13.5 - parent: 31 - uid: 6724 components: - type: Transform pos: 39.5,11.5 parent: 31 + - uid: 6746 + components: + - type: Transform + pos: 45.5,11.5 + parent: 31 - uid: 6816 components: - type: Transform @@ -12584,16 +12516,16 @@ entities: - type: Transform pos: 53.5,2.5 parent: 31 - - uid: 6844 - components: - - type: Transform - pos: 47.5,10.5 - parent: 31 - uid: 6848 components: - type: Transform pos: 51.5,2.5 parent: 31 + - uid: 6875 + components: + - type: Transform + pos: 54.5,16.5 + parent: 31 - uid: 6880 components: - type: Transform @@ -12602,7 +12534,7 @@ entities: - uid: 6887 components: - type: Transform - pos: 48.5,13.5 + pos: 54.5,17.5 parent: 31 - uid: 6891 components: @@ -15134,6 +15066,21 @@ entities: - type: Transform pos: 49.5,-2.5 parent: 31 + - uid: 11024 + components: + - type: Transform + pos: 54.5,15.5 + parent: 31 + - uid: 11046 + components: + - type: Transform + pos: 45.5,13.5 + parent: 31 + - uid: 11048 + components: + - type: Transform + pos: 45.5,12.5 + parent: 31 - uid: 11195 components: - type: Transform @@ -15394,6 +15341,11 @@ entities: - type: Transform pos: 60.5,11.5 parent: 31 + - uid: 11445 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 31 - proto: CableApcStack entities: - uid: 94 @@ -17909,11 +17861,6 @@ entities: - type: Transform pos: 64.5,-1.5 parent: 31 - - uid: 6410 - components: - - type: Transform - pos: 48.5,11.5 - parent: 31 - uid: 6439 components: - type: Transform @@ -17934,11 +17881,6 @@ entities: - type: Transform pos: 69.5,-4.5 parent: 31 - - uid: 6530 - components: - - type: Transform - pos: 48.5,12.5 - parent: 31 - uid: 6571 components: - type: Transform @@ -17959,11 +17901,6 @@ entities: - type: Transform pos: 64.5,-0.5 parent: 31 - - uid: 6635 - components: - - type: Transform - pos: 48.5,10.5 - parent: 31 - uid: 6642 components: - type: Transform @@ -17989,11 +17926,6 @@ entities: - type: Transform pos: 50.5,5.5 parent: 31 - - uid: 6820 - components: - - type: Transform - pos: 48.5,9.5 - parent: 31 - uid: 6821 components: - type: Transform @@ -18014,11 +17946,6 @@ entities: - type: Transform pos: 44.5,7.5 parent: 31 - - uid: 6834 - components: - - type: Transform - pos: 48.5,8.5 - parent: 31 - uid: 6835 components: - type: Transform @@ -20808,6 +20735,21 @@ entities: - type: Transform pos: 43.5,7.5 parent: 31 + - uid: 6530 + components: + - type: Transform + pos: 48.5,10.5 + parent: 31 + - uid: 6531 + components: + - type: Transform + pos: 47.5,10.5 + parent: 31 + - uid: 6536 + components: + - type: Transform + pos: 50.5,10.5 + parent: 31 - uid: 6554 components: - type: Transform @@ -20868,6 +20810,11 @@ entities: - type: Transform pos: 43.5,9.5 parent: 31 + - uid: 6643 + components: + - type: Transform + pos: 49.5,10.5 + parent: 31 - uid: 6687 components: - type: Transform @@ -20883,6 +20830,11 @@ entities: - type: Transform pos: 9.5,14.5 parent: 31 + - uid: 6743 + components: + - type: Transform + pos: 46.5,10.5 + parent: 31 - uid: 6750 components: - type: Transform @@ -21611,92 +21563,7 @@ entities: - uid: 11287 components: - type: Transform - pos: 47.5,8.5 - parent: 31 - - uid: 11288 - components: - - type: Transform - pos: 47.5,9.5 - parent: 31 - - uid: 11289 - components: - - type: Transform - pos: 47.5,10.5 - parent: 31 - - uid: 11290 - components: - - type: Transform - pos: 47.5,11.5 - parent: 31 - - uid: 11291 - components: - - type: Transform - pos: 47.5,12.5 - parent: 31 - - uid: 11292 - components: - - type: Transform - pos: 47.5,13.5 - parent: 31 - - uid: 11293 - components: - - type: Transform - pos: 48.5,13.5 - parent: 31 - - uid: 11294 - components: - - type: Transform - pos: 49.5,13.5 - parent: 31 - - uid: 11295 - components: - - type: Transform - pos: 50.5,12.5 - parent: 31 - - uid: 11296 - components: - - type: Transform - pos: 50.5,9.5 - parent: 31 - - uid: 11297 - components: - - type: Transform - pos: 51.5,12.5 - parent: 31 - - uid: 11298 - components: - - type: Transform - pos: 51.5,11.5 - parent: 31 - - uid: 11299 - components: - - type: Transform - pos: 51.5,10.5 - parent: 31 - - uid: 11300 - components: - - type: Transform - pos: 51.5,9.5 - parent: 31 - - uid: 11301 - components: - - type: Transform - pos: 49.5,12.5 - parent: 31 - - uid: 11302 - components: - - type: Transform - pos: 49.5,9.5 - parent: 31 - - uid: 11303 - components: - - type: Transform - pos: 49.5,8.5 - parent: 31 - - uid: 11304 - components: - - type: Transform - pos: 49.5,7.5 + pos: 46.5,9.5 parent: 31 - uid: 11327 components: @@ -21877,15 +21744,11 @@ entities: - type: Transform pos: 40.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 10010 components: - type: Transform pos: 36.5,12.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: Carpet entities: - uid: 1275 @@ -22976,6 +22839,12 @@ entities: - type: Transform pos: -3.5,-10.5 parent: 31 + - uid: 1483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,7.5 + parent: 31 - uid: 1492 components: - type: Transform @@ -23264,6 +23133,12 @@ entities: - type: Transform pos: 24.5,-27.5 parent: 31 + - uid: 5311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,7.5 + parent: 31 - uid: 5940 components: - type: Transform @@ -23280,36 +23155,22 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,2.5 parent: 31 - - uid: 6348 - components: - - type: Transform - pos: 48.5,8.5 - parent: 31 - - uid: 6356 - components: - - type: Transform - pos: 48.5,10.5 - parent: 31 - uid: 6370 components: - type: Transform pos: 15.5,-28.5 parent: 31 - - uid: 6382 + - uid: 6386 components: - type: Transform - pos: 48.5,11.5 + rot: 1.5707963267948966 rad + pos: 47.5,7.5 parent: 31 - uid: 6412 components: - type: Transform pos: 15.5,-29.5 parent: 31 - - uid: 6456 - components: - - type: Transform - pos: 48.5,12.5 - parent: 31 - uid: 6523 components: - type: Transform @@ -23321,11 +23182,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,3.5 parent: 31 - - uid: 6545 - components: - - type: Transform - pos: 48.5,9.5 - parent: 31 - uid: 6609 components: - type: Transform @@ -23978,6 +23834,12 @@ entities: - type: Transform pos: -33.5,-2.5 parent: 31 + - uid: 7582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,15.5 + parent: 31 - uid: 7609 components: - type: Transform @@ -24139,6 +24001,12 @@ entities: - type: Transform pos: -18.5,24.5 parent: 31 + - uid: 7706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,17.5 + parent: 31 - uid: 7779 components: - type: Transform @@ -24419,6 +24287,12 @@ entities: - type: Transform pos: 78.5,-7.5 parent: 31 + - uid: 8076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,14.5 + parent: 31 - uid: 8089 components: - type: Transform @@ -25109,26 +24983,11 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,21.5 parent: 31 - - uid: 11079 - components: - - type: Transform - pos: 53.5,18.5 - parent: 31 - - uid: 11080 - components: - - type: Transform - pos: 53.5,14.5 - parent: 31 - uid: 11081 components: - type: Transform pos: 53.5,19.5 parent: 31 - - uid: 11082 - components: - - type: Transform - pos: 52.5,19.5 - parent: 31 - uid: 11083 components: - type: Transform @@ -26478,6 +26337,28 @@ entities: - type: Transform pos: -53.5,-9.5 parent: 31 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 11448 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 31 + - uid: 11449 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 31 + - uid: 11450 + components: + - type: Transform + pos: -20.5,12.5 + parent: 31 + - uid: 11451 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 31 - proto: ClosetFireFilled entities: - uid: 221 @@ -26862,11 +26743,6 @@ entities: parent: 31 - proto: ClothingEyesGlassesMeson entities: - - uid: 7582 - components: - - type: Transform - pos: 43.506165,13.466041 - parent: 31 - uid: 8213 components: - type: Transform @@ -26879,13 +26755,6 @@ entities: - type: Transform pos: -10.276402,-6.3744125 parent: 31 -- proto: ClothingEyesGlassesThermal - entities: - - uid: 1730 - components: - - type: Transform - pos: 43.658943,13.563262 - parent: 31 - proto: ClothingEyesHudDiagnostic entities: - uid: 7580 @@ -26926,10 +26795,10 @@ entities: parent: 31 - proto: ClothingHandsGlovesCombat entities: - - uid: 8315 + - uid: 6427 components: - type: Transform - pos: 43.576782,13.655371 + pos: 51.410316,17.602825 parent: 31 - proto: ClothingHandsGlovesLatex entities: @@ -27026,25 +26895,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHatFlowerCrown +- proto: ClothingHeadHatFlowerWreath entities: - uid: 3235 components: - type: Transform pos: 49.449142,-25.427004 parent: 31 -- proto: ClothingHeadHatHairflower - entities: - - uid: 4196 - components: - - type: Transform - pos: -3.75686,18.190365 - parent: 31 - - uid: 9762 - components: - - type: Transform - pos: -16.049828,-39.578854 - parent: 31 - proto: ClothingHeadHatHardhatOrange entities: - uid: 10803 @@ -27092,11 +26949,6 @@ entities: - type: Transform pos: -1.6376766,-24.290537 parent: 31 - - uid: 8845 - components: - - type: Transform - pos: 43.484886,13.560756 - parent: 31 - proto: ClothingHeadsetGrey entities: - uid: 10480 @@ -28065,16 +27917,6 @@ entities: - type: Transform pos: 75.5,6.5 parent: 31 - - uid: 6469 - components: - - type: Transform - pos: 40.5,8.5 - parent: 31 - - uid: 6639 - components: - - type: Transform - pos: 39.5,8.5 - parent: 31 - proto: ConveyorBelt entities: - uid: 1771 @@ -28355,6 +28197,13 @@ entities: - type: DeviceLinkSink links: - 10218 +- proto: CrateArtifactContainer + entities: + - uid: 99 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 31 - proto: CrateCoffin entities: - uid: 9634 @@ -28399,39 +28248,18 @@ entities: parent: 31 - proto: CrateEngineeringAMEJar entities: - - uid: 6626 + - uid: 8315 components: - type: Transform - pos: 50.5,8.5 + pos: 46.5,9.5 parent: 31 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - proto: CrateEngineeringAMEShielding entities: - - uid: 6603 + - uid: 8990 components: - type: Transform - pos: 50.5,9.5 + pos: 48.5,7.5 parent: 31 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7777 - - 3475 - - 3476 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateEngineeringCableHV entities: - uid: 11208 @@ -28479,6 +28307,25 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 6437 + components: + - type: Transform + pos: 39.5,8.5 + parent: 31 + - uid: 6442 + components: + - type: Transform + pos: 40.5,8.5 + parent: 31 +- proto: CrateEngineeringSingularityGenerator + entities: + - uid: 11051 + components: + - type: Transform + pos: 38.5,8.5 + parent: 31 - proto: CrateEngineeringTeslaCoil entities: - uid: 11373 @@ -28657,6 +28504,9 @@ entities: - type: Transform pos: 57.5,-9.5 parent: 31 + - type: SingletonDeviceNetServer + active: False + available: False - proto: CrowbarRed entities: - uid: 2093 @@ -28706,8 +28556,6 @@ entities: - type: Transform pos: 7.5,-15.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: CryoxadoneBeakerSmall entities: - uid: 6015 @@ -28935,6 +28783,13 @@ entities: - type: Transform pos: 33.5,4.5 parent: 31 + - uid: 11056 + components: + - type: Transform + pos: 57.5,10.5 + parent: 31 + - type: NavMapBeacon + text: Tesla Storage - proto: DefaultStationBeaconEVAStorage entities: - uid: 7640 @@ -32641,8 +32496,6 @@ entities: - 2872 - 2891 - 7379 - - type: AtmosDevice - joinedGrid: 31 - uid: 9041 components: - type: Transform @@ -32657,8 +32510,6 @@ entities: - 995 - 179 - 337 - - type: AtmosDevice - joinedGrid: 31 - uid: 9985 components: - type: Transform @@ -32670,8 +32521,6 @@ entities: - 9988 - 9989 - 9990 - - type: AtmosDevice - joinedGrid: 31 - uid: 9992 components: - type: Transform @@ -32701,8 +32550,6 @@ entities: - 1330 - 1167 - 7460 - - type: AtmosDevice - joinedGrid: 31 - uid: 9993 components: - type: Transform @@ -32721,8 +32568,6 @@ entities: - 9970 - 9994 - 9995 - - type: AtmosDevice - joinedGrid: 31 - uid: 9997 components: - type: Transform @@ -32734,8 +32579,6 @@ entities: - 3977 - 3976 - 3975 - - type: AtmosDevice - joinedGrid: 31 - uid: 10002 components: - type: Transform @@ -32750,8 +32593,6 @@ entities: - 8814 - 8815 - 9969 - - type: AtmosDevice - joinedGrid: 31 - uid: 10004 components: - type: Transform @@ -32764,8 +32605,6 @@ entities: - 8883 - 8884 - 5115 - - type: AtmosDevice - joinedGrid: 31 - uid: 10006 components: - type: Transform @@ -32779,8 +32618,6 @@ entities: - 8856 - 8858 - 8857 - - type: AtmosDevice - joinedGrid: 31 - uid: 10023 components: - type: Transform @@ -32798,8 +32635,6 @@ entities: - 4525 - 4528 - 4529 - - type: AtmosDevice - joinedGrid: 31 - uid: 10243 components: - type: Transform @@ -32814,8 +32649,6 @@ entities: - 10240 - 10241 - 10242 - - type: AtmosDevice - joinedGrid: 31 - uid: 10409 components: - type: Transform @@ -32826,8 +32659,6 @@ entities: - 10313 - 10314 - 10315 - - type: AtmosDevice - joinedGrid: 31 - uid: 10410 components: - type: Transform @@ -32838,8 +32669,6 @@ entities: - 10316 - 10317 - 10318 - - type: AtmosDevice - joinedGrid: 31 - uid: 10419 components: - type: Transform @@ -32851,8 +32680,6 @@ entities: - 3866 - 3428 - 3724 - - type: AtmosDevice - joinedGrid: 31 - uid: 11003 components: - type: Transform @@ -32866,8 +32693,6 @@ entities: - 3988 - 8940 - 673 - - type: AtmosDevice - joinedGrid: 31 - proto: FireAxeCabinetFilled entities: - uid: 4031 @@ -32875,17 +32700,10 @@ entities: - type: Transform pos: -1.5,32.5 parent: 31 - - uid: 6579 + - uid: 11444 components: - type: Transform - pos: 42.5,14.5 - parent: 31 -- proto: FireExtinguisher - entities: - - uid: 1537 - components: - - type: Transform - pos: 43.520054,13.493817 + pos: 52.5,18.5 parent: 31 - proto: Firelock entities: @@ -33025,7 +32843,7 @@ entities: pos: 38.5,-5.5 parent: 31 - type: Door - secondsUntilStateChange: -7493.9014 + secondsUntilStateChange: -9978.97 state: Closing - uid: 4019 components: @@ -33141,11 +32959,17 @@ entities: - type: Transform pos: -18.5,3.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 10021 - uid: 7041 components: - type: Transform pos: -19.5,3.5 parent: 31 + - type: DeviceNetwork + deviceLists: + - 10021 - uid: 7042 components: - type: Transform @@ -33282,6 +33106,9 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 31 + - type: Door + secondsUntilStateChange: -80.957985 + state: Closing - uid: 3944 components: - type: Transform @@ -34167,6 +33994,18 @@ entities: - type: Transform pos: -35.517406,-25.152033 parent: 31 +- proto: FoodPoppy + entities: + - uid: 4196 + components: + - type: Transform + pos: -3.75686,18.190365 + parent: 31 + - uid: 9762 + components: + - type: Transform + pos: -16.049828,-39.578854 + parent: 31 - proto: FoodShakerSalt entities: - uid: 9577 @@ -34265,16 +34104,6 @@ entities: - type: Transform pos: -11.359732,-27.422089 parent: 31 - - uid: 6417 - components: - - type: Transform - pos: 43.492275,13.452083 - parent: 31 - - uid: 6569 - components: - - type: Transform - pos: 43.492275,13.452151 - parent: 31 - proto: GasFilter entities: - uid: 7125 @@ -34285,8 +34114,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-16.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - proto: GasMinerCarbonDioxide @@ -34296,8 +34123,6 @@ entities: - type: Transform pos: 40.5,22.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: GasMinerNitrogen entities: - uid: 4888 @@ -34305,8 +34130,6 @@ entities: - type: Transform pos: 34.5,22.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: GasMinerOxygen entities: - uid: 4830 @@ -34314,8 +34137,6 @@ entities: - type: Transform pos: 36.5,22.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: GasMinerWaterVapor entities: - uid: 6836 @@ -34323,8 +34144,6 @@ entities: - type: Transform pos: 46.5,22.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: GasOutletInjector entities: - uid: 672 @@ -34332,50 +34151,42 @@ entities: - type: Transform pos: 42.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 2177 components: - type: Transform pos: 34.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 2668 components: - type: Transform pos: 40.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 3461 components: - type: Transform pos: 38.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 4034 components: - type: Transform pos: 36.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 + - uid: 11045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,12.5 + parent: 31 - uid: 11062 components: - type: Transform pos: 46.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 11069 components: - type: Transform pos: 44.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: GasPassiveVent entities: - uid: 7 @@ -34384,104 +34195,59 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 49 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 52 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 127 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 3124 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 3477 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 5547 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 5752 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-29.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 6211 components: - type: Transform pos: 33.5,19.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 6243 - components: - - type: Transform - pos: 50.5,20.5 - parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,16.5 - parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 6903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,17.5 - parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 11025 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: GasPipeBend entities: - uid: 1 @@ -34502,6 +34268,12 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,11.5 + parent: 31 - uid: 667 components: - type: Transform @@ -34911,14 +34683,18 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6361 + - uid: 6402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,7.5 + rot: 3.141592653589793 rad + pos: 36.5,11.5 + parent: 31 + - uid: 6511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,16.5 parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6540 components: - type: Transform @@ -34927,27 +34703,31 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6558 + - uid: 6545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,15.5 + rot: 3.141592653589793 rad + pos: 36.5,15.5 parent: 31 - - uid: 6559 - components: - - type: Transform - pos: 49.5,24.5 - parent: 31 - - uid: 6565 - components: - - type: Transform - pos: 56.5,18.5 - parent: 31 - - uid: 6633 + - uid: 6578 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,24.5 + pos: 44.5,8.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 31 + - uid: 6886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,12.5 parent: 31 - uid: 7091 components: @@ -34972,18 +34752,6 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,17.5 - parent: 31 - - uid: 7228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,18.5 - parent: 31 - uid: 7426 components: - type: Transform @@ -35077,6 +34845,105 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11050 + components: + - type: Transform + pos: 50.5,13.5 + parent: 31 + - uid: 11301 + components: + - type: Transform + pos: 52.5,23.5 + parent: 31 + - uid: 11302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,23.5 + parent: 31 + - uid: 11303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,19.5 + parent: 31 + - uid: 11304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,19.5 + parent: 31 +- proto: GasPipeBroken + entities: + - uid: 1352 + components: + - type: Transform + pos: 34.5,14.5 + parent: 31 + - uid: 1914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,13.5 + parent: 31 + - uid: 6469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,15.5 + parent: 31 + - uid: 6470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,15.5 + parent: 31 + - uid: 6538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,13.5 + parent: 31 + - uid: 6599 + components: + - type: Transform + pos: 34.5,12.5 + parent: 31 + - uid: 6603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,16.5 + parent: 31 + - uid: 8991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,15.5 + parent: 31 + - uid: 9206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,14.5 + parent: 31 + - uid: 10412 + components: + - type: Transform + pos: 35.5,16.5 + parent: 31 + - uid: 10423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,14.5 + parent: 31 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 31 - proto: GasPipeFourway entities: - uid: 583 @@ -35184,11 +35051,6 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6483 - components: - - type: Transform - pos: 50.5,17.5 - parent: 31 - uid: 7414 components: - type: Transform @@ -35390,12 +35252,6 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,16.5 - parent: 31 - uid: 1165 components: - type: Transform @@ -35542,6 +35398,12 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,11.5 + parent: 31 - uid: 1739 components: - type: Transform @@ -35733,6 +35595,12 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,11.5 + parent: 31 - uid: 3238 components: - type: Transform @@ -35749,6 +35617,12 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,13.5 + parent: 31 - uid: 3590 components: - type: Transform @@ -36148,20 +36022,7 @@ entities: - uid: 5309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,15.5 - parent: 31 - - uid: 5310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,17.5 - parent: 31 - - uid: 5311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 + pos: 36.5,12.5 parent: 31 - uid: 5323 components: @@ -38184,12 +38045,6 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 5745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 31 - uid: 5762 components: - type: Transform @@ -39023,13 +38878,6 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5916 - components: - - type: Transform - pos: 50.5,18.5 - parent: 31 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5918 components: - type: Transform @@ -40592,11 +40440,11 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6241 + - uid: 6247 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,16.5 + pos: 47.5,12.5 parent: 31 - uid: 6254 components: @@ -40683,12 +40531,6 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,15.5 - parent: 31 - uid: 6363 components: - type: Transform @@ -40701,22 +40543,6 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,7.5 - parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,7.5 - parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6411 components: - type: Transform @@ -40725,18 +40551,6 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,15.5 - parent: 31 - - uid: 6478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,17.5 - parent: 31 - uid: 6534 components: - type: Transform @@ -40745,27 +40559,40 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 6538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,7.5 - parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,7.5 - parent: 31 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6549 components: - type: Transform pos: 46.5,18.5 parent: 31 + - uid: 6558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,16.5 + parent: 31 + - uid: 6559 + components: + - type: Transform + pos: 44.5,7.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,8.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,8.5 + parent: 31 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6572 components: - type: Transform @@ -40787,15 +40614,47 @@ entities: - type: Transform pos: 37.5,22.5 parent: 31 + - uid: 6579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 31 + - uid: 6580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,15.5 + parent: 31 + - uid: 6633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 31 + - uid: 6647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,11.5 + parent: 31 - uid: 6727 components: - type: Transform - pos: 49.5,17.5 + rot: -1.5707963267948966 rad + pos: 45.5,12.5 parent: 31 - - uid: 6743 + - uid: 6820 components: - type: Transform - pos: 48.5,17.5 + rot: -1.5707963267948966 rad + pos: 38.5,14.5 + parent: 31 + - uid: 6834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,14.5 parent: 31 - uid: 6895 components: @@ -41033,6 +40892,12 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' + - uid: 7382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 31 - uid: 7413 components: - type: Transform @@ -41326,6 +41191,18 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 31 + - uid: 9152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,13.5 + parent: 31 - uid: 9176 components: - type: Transform @@ -41439,6 +41316,12 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' + - uid: 10122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,15.5 + parent: 31 - uid: 10247 components: - type: Transform @@ -41643,11 +41526,11 @@ entities: parent: 31 - type: AtmosPipeColor color: '#990000FF' - - uid: 10412 + - uid: 10414 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,17.5 + pos: 43.5,16.5 parent: 31 - uid: 10432 components: @@ -42189,16 +42072,11 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11051 + - uid: 11049 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,15.5 - parent: 31 - - uid: 11057 - components: - - type: Transform - pos: 49.5,19.5 + pos: 38.5,11.5 parent: 31 - uid: 11058 components: @@ -42235,6 +42113,42 @@ entities: - type: Transform pos: 46.5,19.5 parent: 31 + - uid: 11079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,11.5 + parent: 31 + - uid: 11082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 31 + - uid: 11093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,11.5 + parent: 31 + - uid: 11289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 31 + - uid: 11292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,12.5 + parent: 31 + - uid: 11293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,11.5 + parent: 31 - uid: 11401 components: - type: Transform @@ -42275,6 +42189,18 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,19.5 + parent: 31 + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,19.5 + parent: 31 - proto: GasPipeTJunction entities: - uid: 53 @@ -43065,10 +42991,22 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6906 + - uid: 6410 components: - type: Transform - pos: 55.5,18.5 + rot: 1.5707963267948966 rad + pos: 48.5,21.5 + parent: 31 + - uid: 6564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,14.5 + parent: 31 + - uid: 6644 + components: + - type: Transform + pos: 36.5,13.5 parent: 31 - uid: 6943 components: @@ -43270,6 +43208,36 @@ entities: parent: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 31 + - uid: 11440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,22.5 + parent: 31 + - uid: 11441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,21.5 + parent: 31 + - uid: 11442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,20.5 + parent: 31 + - uid: 11443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,20.5 + parent: 31 - proto: GasPort entities: - uid: 188 @@ -43277,24 +43245,18 @@ entities: - type: Transform pos: -11.5,-28.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 1329 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,16.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 6502 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6893 @@ -43303,8 +43265,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - proto: GasPressurePump @@ -43319,16 +43279,12 @@ entities: parent: 31 - type: GasPressurePump targetPressure: 1 - - type: AtmosDevice - joinedGrid: 31 - uid: 842 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-29.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 905 components: - type: MetaData @@ -43337,8 +43293,6 @@ entities: - type: Transform pos: 37.5,17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 1513 components: - type: MetaData @@ -43349,8 +43303,6 @@ entities: parent: 31 - type: GasPressurePump targetPressure: 1 - - type: AtmosDevice - joinedGrid: 31 - uid: 1517 components: - type: MetaData @@ -43359,8 +43311,6 @@ entities: - type: Transform pos: 35.5,17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 1570 components: - type: MetaData @@ -43371,8 +43321,6 @@ entities: parent: 31 - type: GasPressurePump targetPressure: 1 - - type: AtmosDevice - joinedGrid: 31 - uid: 1573 components: - type: MetaData @@ -43383,24 +43331,18 @@ entities: parent: 31 - type: GasPressurePump targetPressure: 1 - - type: AtmosDevice - joinedGrid: 31 - uid: 3765 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 4388 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 4389 @@ -43408,8 +43350,6 @@ entities: - type: Transform pos: 34.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6351 @@ -43420,54 +43360,101 @@ entities: - type: Transform pos: 47.5,17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 6357 + - uid: 6356 components: - - type: MetaData - desc: Pulls product from mixer. - name: mixer product pump - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,15.5 + pos: 37.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 6425 + - type: GasPressurePump + targetPressure: 4500 + - uid: 6636 components: - - type: MetaData - desc: Sends mix line to waste. - name: mix to waste - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,17.5 + pos: 39.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6584 + - type: GasPressurePump + targetPressure: 4500 + - uid: 6903 components: - - type: MetaData - desc: pumps mix line into mixer. - name: mixer input pump - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,16.5 + rot: -1.5707963267948966 rad + pos: 49.5,20.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 + - type: GasPressurePump + targetPressure: 4500 + - uid: 7121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,21.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 + - uid: 7220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,22.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 + - uid: 7225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,23.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 - uid: 7663 components: - type: Transform pos: 9.5,-15.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 + - uid: 11026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 + - uid: 11080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 + - uid: 11294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,12.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 + - uid: 11447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 31 + - type: GasPressurePump + targetPressure: 4500 - proto: GasThermoMachineFreezer entities: - uid: 5552 @@ -43476,15 +43463,11 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-5.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 8860 components: - type: Transform pos: 38.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: GasThermoMachineFreezerEnabled entities: - uid: 2215 @@ -43493,8 +43476,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: GasThermoMachineHeater entities: - uid: 8861 @@ -43502,19 +43483,6 @@ entities: - type: Transform pos: 39.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 -- proto: GasValve - entities: - - uid: 6479 - components: - - type: Transform - pos: 50.5,19.5 - parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - type: AtmosPipeColor - color: '#FF1212FF' - proto: GasVentPump entities: - uid: 65 @@ -43522,8 +43490,6 @@ entities: - type: Transform pos: 15.5,-7.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 100 @@ -43532,8 +43498,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 716 @@ -43541,8 +43505,6 @@ entities: - type: Transform pos: 7.5,26.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 977 @@ -43550,8 +43512,6 @@ entities: - type: Transform pos: 10.5,26.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1094 @@ -43560,8 +43520,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1230 @@ -43570,8 +43528,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,20.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1305 @@ -43580,8 +43536,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-12.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1688 @@ -43589,8 +43543,6 @@ entities: - type: Transform pos: -36.5,18.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2213 @@ -43599,8 +43551,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-14.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3116 @@ -43609,8 +43559,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3368 @@ -43618,8 +43566,6 @@ entities: - type: Transform pos: -5.5,16.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3419 @@ -43627,8 +43573,6 @@ entities: - type: Transform pos: 12.5,26.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3835 @@ -43637,8 +43581,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4013 @@ -43647,8 +43589,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-22.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4185 @@ -43656,8 +43596,6 @@ entities: - type: Transform pos: -7.5,20.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4266 @@ -43666,8 +43604,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,15.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4267 @@ -43676,8 +43612,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4303 @@ -43686,8 +43620,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-15.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4468 @@ -43696,8 +43628,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4484 @@ -43706,8 +43636,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5365 @@ -43716,8 +43644,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-5.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5472 @@ -43725,8 +43651,6 @@ entities: - type: Transform pos: 3.5,6.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5476 @@ -43735,8 +43659,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5479 @@ -43744,8 +43666,6 @@ entities: - type: Transform pos: 14.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5495 @@ -43753,8 +43673,6 @@ entities: - type: Transform pos: 8.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5542 @@ -43762,8 +43680,6 @@ entities: - type: Transform pos: -12.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5543 @@ -43771,8 +43687,6 @@ entities: - type: Transform pos: -1.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5546 @@ -43781,8 +43695,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-1.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5605 @@ -43790,8 +43702,6 @@ entities: - type: Transform pos: 16.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5606 @@ -43800,8 +43710,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5638 @@ -43810,8 +43718,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-16.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5666 @@ -43820,8 +43726,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-5.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5698 @@ -43830,8 +43734,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5700 @@ -43840,8 +43742,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-3.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5848 @@ -43850,8 +43750,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,19.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5868 @@ -43860,8 +43758,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5869 @@ -43870,8 +43766,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,25.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5870 @@ -43879,8 +43773,6 @@ entities: - type: Transform pos: 4.5,30.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5929 @@ -43889,8 +43781,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5941 @@ -43899,8 +43789,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,14.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5950 @@ -43909,8 +43797,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6018 @@ -43919,8 +43805,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,15.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6033 @@ -43928,8 +43812,6 @@ entities: - type: Transform pos: -12.5,19.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6041 @@ -43938,8 +43820,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6043 @@ -43948,8 +43828,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6071 @@ -43958,8 +43836,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6118 @@ -43968,8 +43844,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6119 @@ -43978,8 +43852,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6138 @@ -43988,8 +43860,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6151 @@ -43998,8 +43868,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,5.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6169 @@ -44008,8 +43876,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-6.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6184 @@ -44018,8 +43884,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6197 @@ -44028,8 +43892,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6262 @@ -44038,8 +43900,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6268 @@ -44048,8 +43908,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6275 @@ -44058,8 +43916,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-2.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6294 @@ -44067,18 +43923,14 @@ entities: - type: Transform pos: 51.5,-4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6533 + - uid: 6478 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,7.5 + pos: 47.5,8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7099 @@ -44086,8 +43938,6 @@ entities: - type: Transform pos: 32.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7185 @@ -44096,8 +43946,6 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,1.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7335 @@ -44106,8 +43954,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7746 @@ -44115,8 +43961,6 @@ entities: - type: Transform pos: -35.5,14.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8384 @@ -44125,8 +43969,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8417 @@ -44135,8 +43977,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8794 @@ -44145,8 +43985,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8873 @@ -44155,8 +43993,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8875 @@ -44165,8 +44001,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8880 @@ -44174,8 +44008,6 @@ entities: - type: Transform pos: 46.5,3.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8944 @@ -44184,8 +44016,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10376 @@ -44194,8 +44024,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-30.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10377 @@ -44204,8 +44032,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-30.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10386 @@ -44214,8 +44040,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-3.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10407 @@ -44224,8 +44048,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-14.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10424 @@ -44234,8 +44056,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-30.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10427 @@ -44244,8 +44064,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10929 @@ -44254,8 +44072,6 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10930 @@ -44264,8 +44080,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-5.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11399 @@ -44273,8 +44087,6 @@ entities: - type: Transform pos: -40.5,-3.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -44285,8 +44097,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 753 @@ -44295,8 +44105,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 867 @@ -44305,8 +44113,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 1029 @@ -44315,8 +44121,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 1032 @@ -44325,8 +44129,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 1140 @@ -44335,8 +44137,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 1542 @@ -44344,8 +44144,6 @@ entities: - type: Transform pos: 35.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 2208 @@ -44353,8 +44151,6 @@ entities: - type: Transform pos: -38.5,18.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 3117 @@ -44362,8 +44158,6 @@ entities: - type: Transform pos: 21.5,12.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 3118 @@ -44372,8 +44166,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,10.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 3274 @@ -44381,8 +44173,6 @@ entities: - type: Transform pos: 41.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 3840 @@ -44391,8 +44181,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 4279 @@ -44401,8 +44189,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 4436 @@ -44411,8 +44197,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 4486 @@ -44421,8 +44205,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 4701 @@ -44431,8 +44213,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 4783 @@ -44441,8 +44221,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5332 @@ -44451,8 +44229,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5473 @@ -44461,8 +44237,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5474 @@ -44470,8 +44244,6 @@ entities: - type: Transform pos: 7.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5477 @@ -44479,8 +44251,6 @@ entities: - type: Transform pos: 21.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5478 @@ -44489,8 +44259,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,10.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5496 @@ -44499,8 +44267,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5541 @@ -44509,8 +44275,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5544 @@ -44519,8 +44283,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5545 @@ -44529,8 +44291,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5597 @@ -44538,8 +44298,6 @@ entities: - type: Transform pos: 17.5,-1.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5607 @@ -44548,8 +44306,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5637 @@ -44558,8 +44314,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-14.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5665 @@ -44568,8 +44322,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-6.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5704 @@ -44578,8 +44330,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-28.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5765 @@ -44588,8 +44338,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5849 @@ -44598,8 +44346,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,18.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5864 @@ -44608,8 +44354,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,24.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5865 @@ -44618,8 +44362,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5871 @@ -44627,8 +44369,6 @@ entities: - type: Transform pos: 2.5,30.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5883 @@ -44637,8 +44377,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,17.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 5951 @@ -44646,8 +44384,6 @@ entities: - type: Transform pos: 9.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6024 @@ -44656,8 +44392,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,14.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6032 @@ -44666,8 +44400,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,20.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6042 @@ -44676,8 +44408,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6044 @@ -44685,8 +44415,6 @@ entities: - type: Transform pos: -1.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6080 @@ -44694,8 +44422,6 @@ entities: - type: Transform pos: -14.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6117 @@ -44703,8 +44429,6 @@ entities: - type: Transform pos: -27.5,10.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6120 @@ -44712,8 +44436,6 @@ entities: - type: Transform pos: -22.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6137 @@ -44721,8 +44443,6 @@ entities: - type: Transform pos: -30.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6152 @@ -44730,8 +44450,6 @@ entities: - type: Transform pos: -36.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6168 @@ -44740,8 +44458,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6267 @@ -44750,8 +44466,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-0.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6276 @@ -44760,8 +44474,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-1.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6413 @@ -44770,8 +44482,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6552 @@ -44780,8 +44490,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 6581 @@ -44790,8 +44498,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,15.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 7211 @@ -44800,8 +44506,6 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,3.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 7673 @@ -44810,8 +44514,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 7745 @@ -44819,8 +44521,6 @@ entities: - type: Transform pos: -37.5,14.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 8416 @@ -44828,8 +44528,6 @@ entities: - type: Transform pos: 7.5,19.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 8438 @@ -44838,8 +44536,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-19.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 8795 @@ -44848,8 +44544,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,10.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 8874 @@ -44858,8 +44552,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 8876 @@ -44867,8 +44559,6 @@ entities: - type: Transform pos: 26.5,4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 8879 @@ -44877,8 +44567,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,2.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10252 @@ -44887,8 +44575,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-5.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10375 @@ -44897,8 +44583,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10385 @@ -44907,8 +44591,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-3.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10406 @@ -44917,8 +44599,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10420 @@ -44927,8 +44607,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-19.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10425 @@ -44937,8 +44615,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-27.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10426 @@ -44947,8 +44623,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-26.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10495 @@ -44957,8 +44631,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-14.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10906 @@ -44967,8 +44639,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10907 @@ -44977,8 +44647,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-4.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10908 @@ -44987,8 +44655,6 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-7.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 10909 @@ -44997,8 +44663,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' - uid: 11400 @@ -45007,10 +44671,48 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-5.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - type: AtmosPipeColor color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 6600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,20.5 + parent: 31 + - type: GasVolumePump + transferRate: 50 + - uid: 11296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,17.5 + parent: 31 + - uid: 11297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,21.5 + parent: 31 + - type: GasVolumePump + transferRate: 50 + - uid: 11298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,22.5 + parent: 31 + - type: GasVolumePump + transferRate: 50 + - uid: 11300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,23.5 + parent: 31 + - type: GasVolumePump + transferRate: 50 - proto: Gauze entities: - uid: 1407 @@ -46136,11 +45838,26 @@ entities: - type: Transform pos: 37.5,18.5 parent: 31 + - uid: 6390 + components: + - type: Transform + pos: 50.5,10.5 + parent: 31 - uid: 6391 components: - type: Transform pos: 35.5,18.5 parent: 31 + - uid: 6393 + components: + - type: Transform + pos: 49.5,10.5 + parent: 31 + - uid: 6394 + components: + - type: Transform + pos: 48.5,10.5 + parent: 31 - uid: 6401 components: - type: Transform @@ -46154,7 +45871,8 @@ entities: - uid: 6415 components: - type: Transform - pos: 56.5,15.5 + rot: 3.141592653589793 rad + pos: 54.5,17.5 parent: 31 - uid: 6440 components: @@ -46169,25 +45887,25 @@ entities: - uid: 6453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,11.5 + rot: 3.141592653589793 rad + pos: 54.5,15.5 parent: 31 - uid: 6455 components: - type: Transform pos: 33.5,18.5 parent: 31 + - uid: 6456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,16.5 + parent: 31 - uid: 6458 components: - type: Transform pos: 45.5,7.5 parent: 31 - - uid: 6462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,10.5 - parent: 31 - uid: 6464 components: - type: Transform @@ -46198,6 +45916,12 @@ entities: - type: Transform pos: 47.5,18.5 parent: 31 + - uid: 6481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,24.5 + parent: 31 - uid: 6503 components: - type: Transform @@ -46212,30 +45936,38 @@ entities: - uid: 6505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,12.5 + rot: 3.141592653589793 rad + pos: 49.5,24.5 parent: 31 - uid: 6508 components: - type: Transform pos: 46.5,18.5 parent: 31 + - uid: 6539 + components: + - type: Transform + pos: 47.5,10.5 + parent: 31 - uid: 6551 components: - type: Transform pos: 48.5,18.5 parent: 31 - - uid: 6578 + - uid: 6565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 + pos: 46.5,14.5 parent: 31 - - uid: 6600 + - uid: 6605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,9.5 + pos: 47.5,14.5 + parent: 31 + - uid: 6606 + components: + - type: Transform + pos: 48.5,14.5 parent: 31 - uid: 6613 components: @@ -46247,36 +45979,12 @@ entities: - type: Transform pos: -41.5,-8.5 parent: 31 - - uid: 6643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,16.5 - parent: 31 - - uid: 6644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,17.5 - parent: 31 - uid: 6645 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,23.5 parent: 31 - - uid: 6646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,19.5 - parent: 31 - - uid: 6647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 - parent: 31 - uid: 6690 components: - type: Transform @@ -46323,6 +46031,11 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,24.5 parent: 31 + - uid: 6742 + components: + - type: Transform + pos: 46.5,10.5 + parent: 31 - uid: 6812 components: - type: Transform @@ -46334,6 +46047,22 @@ entities: - type: Transform pos: 41.5,18.5 parent: 31 + - uid: 6841 + components: + - type: Transform + pos: 50.5,14.5 + parent: 31 + - uid: 6844 + components: + - type: Transform + pos: 49.5,14.5 + parent: 31 + - uid: 6847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,24.5 + parent: 31 - uid: 6863 components: - type: Transform @@ -46344,10 +46073,11 @@ entities: - type: Transform pos: 59.5,11.5 parent: 31 - - uid: 6875 + - uid: 6874 components: - type: Transform - pos: 54.5,15.5 + rot: 3.141592653589793 rad + pos: 50.5,24.5 parent: 31 - uid: 6933 components: @@ -46516,22 +46246,11 @@ entities: - type: Transform pos: -5.5,34.5 parent: 31 - - uid: 7220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,17.5 - parent: 31 - uid: 7221 components: - type: Transform pos: 34.5,20.5 parent: 31 - - uid: 7225 - components: - - type: Transform - pos: 55.5,18.5 - parent: 31 - uid: 7226 components: - type: Transform @@ -46682,6 +46401,11 @@ entities: - type: Transform pos: 49.5,-31.5 parent: 31 + - uid: 7777 + components: + - type: Transform + pos: 45.5,12.5 + parent: 31 - uid: 7798 components: - type: Transform @@ -46802,6 +46526,11 @@ entities: - type: Transform pos: 33.5,26.5 parent: 31 + - uid: 8074 + components: + - type: Transform + pos: 45.5,11.5 + parent: 31 - uid: 8084 components: - type: Transform @@ -47609,12 +47338,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,14.5 parent: 31 - - uid: 10414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,15.5 - parent: 31 - uid: 10438 components: - type: Transform @@ -47655,33 +47378,16 @@ entities: - type: Transform pos: -45.5,-8.5 parent: 31 - - uid: 11049 - components: - - type: Transform - pos: 56.5,17.5 - parent: 31 - - uid: 11050 - components: - - type: Transform - pos: 56.5,16.5 - parent: 31 - - uid: 11052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 31 - - uid: 11053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,17.5 - parent: 31 - uid: 11071 components: - type: Transform pos: 46.5,20.5 parent: 31 + - uid: 11077 + components: + - type: Transform + pos: 45.5,13.5 + parent: 31 - uid: 11090 components: - type: Transform @@ -47794,41 +47500,18 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,24.5 parent: 31 - - uid: 6742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,24.5 - parent: 31 - uid: 6744 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,21.5 parent: 31 - - uid: 6745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 - parent: 31 - - uid: 6746 - components: - - type: Transform - pos: 58.5,20.5 - parent: 31 - uid: 6747 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,24.5 parent: 31 - - uid: 6841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,15.5 - parent: 31 - uid: 7080 components: - type: Transform @@ -48312,62 +47995,84 @@ entities: parent: 31 - proto: HeatExchanger entities: - - uid: 6580 + - uid: 3508 components: - type: Transform - pos: 49.5,23.5 + rot: -1.5707963267948966 rad + pos: 47.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 7706 + - uid: 3675 components: - type: Transform - pos: 48.5,23.5 + rot: 1.5707963267948966 rad + pos: 47.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 11054 + - uid: 3888 components: - type: Transform - pos: 49.5,22.5 + rot: 1.5707963267948966 rad + pos: 48.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 11055 + - uid: 4275 components: - type: Transform - pos: 49.5,21.5 + rot: 1.5707963267948966 rad + pos: 46.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 11056 + - uid: 4289 components: - type: Transform - pos: 49.5,20.5 + rot: -1.5707963267948966 rad + pos: 46.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 11059 + - uid: 4292 components: - type: Transform - pos: 48.5,20.5 + rot: -1.5707963267948966 rad + pos: 48.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 11060 + - uid: 4469 components: - type: Transform - pos: 48.5,21.5 + rot: 3.141592653589793 rad + pos: 50.5,12.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 11061 + - uid: 4470 components: - type: Transform - pos: 48.5,22.5 + rot: -1.5707963267948966 rad + pos: 49.5,13.5 + parent: 31 + - uid: 6906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,23.5 + parent: 31 + - uid: 7227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,20.5 + parent: 31 + - uid: 7228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,21.5 + parent: 31 + - uid: 7352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,22.5 + parent: 31 + - uid: 11047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: HighSecCommandLocked entities: - uid: 1052 @@ -48570,14 +48275,14 @@ entities: parent: 31 - proto: Igniter entities: - - uid: 4470 + - uid: 6548 components: - type: Transform - pos: 55.552643,16.227009 + pos: 48.339073,12.198484 parent: 31 - type: DeviceLinkSink links: - - 4469 + - 11052 - proto: InflatableDoorStack entities: - uid: 3907 @@ -48585,11 +48290,6 @@ entities: - type: Transform pos: 45.490303,5.6922693 parent: 31 - - uid: 8991 - components: - - type: Transform - pos: 43.533943,13.507707 - parent: 31 - proto: InflatableWallStack entities: - uid: 3679 @@ -48597,11 +48297,6 @@ entities: - type: Transform pos: 45.490303,5.574275 parent: 31 - - uid: 8992 - components: - - type: Transform - pos: 43.533943,13.493817 - parent: 31 - proto: IngotGold entities: - uid: 1555 @@ -48907,6 +48602,13 @@ entities: - type: Transform pos: -11.571391,18.68531 parent: 31 +- proto: Jukebox + entities: + - uid: 5090 + components: + - type: Transform + pos: -2.5,1.5 + parent: 31 - proto: KalimbaInstrument entities: - uid: 10631 @@ -49122,17 +48824,46 @@ entities: - type: Transform pos: -16.29771,-39.00967 parent: 31 -- proto: LockerAtmosphericsFilled +- proto: LockableButtonAtmospherics entities: - - uid: 6562 + - uid: 11052 + components: + - type: MetaData + name: igniter button + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,10.5 + parent: 31 + - type: DeviceLinkSource + linkedPorts: + 6548: + - Pressed: Trigger + - uid: 11053 + components: + - type: MetaData + name: blast doors button + - type: Transform + pos: 44.5,14.5 + parent: 31 + - type: DeviceLinkSource + linkedPorts: + 6635: + - Pressed: Toggle + 6345: + - Pressed: Toggle + 6348: + - Pressed: Toggle +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 6408 components: - type: Transform - pos: 44.5,12.5 + pos: 53.5,17.5 parent: 31 - uid: 6563 components: - type: Transform - pos: 44.5,11.5 + pos: 53.5,16.5 parent: 31 - proto: LockerBoozeFilled entities: @@ -49989,64 +49720,46 @@ entities: - type: Transform pos: 35.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 3869 components: - type: Transform pos: -3.5,-8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 6865 components: - type: Transform pos: 34.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 7282 components: - type: Transform pos: 52.5,5.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 7780 components: - type: Transform pos: -29.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 7983 components: - type: Transform pos: 27.5,-3.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 9799 components: - type: Transform pos: 6.5,-39.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 11271 components: - type: Transform pos: 32.5,21.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 11272 components: - type: Transform pos: -26.5,-19.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: NitrogenTankFilled entities: - uid: 10652 @@ -50061,8 +49774,6 @@ entities: - type: Transform pos: 35.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: NitrousOxideTankFilled entities: - uid: 10028 @@ -50121,92 +49832,66 @@ entities: - type: Transform pos: 52.5,6.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 1194 components: - type: Transform pos: -4.5,-8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 1738 components: - type: Transform pos: 35.5,10.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 3576 components: - type: Transform pos: 6.5,7.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 4157 components: - type: Transform pos: 30.5,22.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 5770 components: - type: Transform pos: 60.5,6.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 6585 components: - type: Transform pos: 6.5,8.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 7496 components: - type: Transform pos: 14.5,-31.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 7781 components: - type: Transform pos: -28.5,13.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 9054 components: - type: Transform pos: 36.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 9448 components: - type: Transform pos: -23.5,-31.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 9798 components: - type: Transform pos: 4.5,-39.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 11273 components: - type: Transform pos: -25.5,-19.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: OxygenTankFilled entities: - uid: 4626 @@ -50608,10 +50293,10 @@ entities: parent: 31 - proto: PlaqueAtmos entities: - - uid: 6564 + - uid: 11290 components: - type: Transform - pos: 43.5,14.5 + pos: 51.5,18.5 parent: 31 - proto: PlasmaCanister entities: @@ -50620,27 +50305,18 @@ entities: - type: Transform pos: 36.5,11.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 + - uid: 11054 + components: + - type: Transform + pos: 36.5,10.5 + parent: 31 - uid: 11072 components: - type: Transform pos: 42.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: PlasmaTankFilled entities: - - uid: 1137 - components: - - type: Transform - pos: 41.74788,13.772052 - parent: 31 - - uid: 6874 - components: - - type: Transform - pos: 41.718365,13.536064 - parent: 31 - uid: 6878 components: - type: Transform @@ -52269,13 +51945,6 @@ entities: parent: 31 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6511 - components: - - type: Transform - pos: 43.5,13.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6527 components: - type: Transform @@ -52422,28 +52091,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-11.5 parent: 31 - - uid: 8074 - components: - - type: Transform - pos: 46.5,13.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8075 - components: - - type: Transform - pos: 50.5,13.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,7.5 - parent: 31 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8085 components: - type: Transform @@ -52575,6 +52222,12 @@ entities: parent: 31 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 31 - uid: 9094 components: - type: Transform @@ -52634,12 +52287,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-9.5 parent: 31 - - uid: 10423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,18.5 - parent: 31 - uid: 10767 components: - type: Transform @@ -52675,11 +52322,11 @@ entities: - type: Transform pos: 47.5,19.5 parent: 31 - - uid: 11084 + - uid: 11095 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,14.5 + pos: 43.5,14.5 parent: 31 - uid: 11133 components: @@ -53168,6 +52815,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-28.5 parent: 31 + - uid: 11295 + components: + - type: Transform + pos: 52.5,17.5 + parent: 31 - uid: 11419 components: - type: Transform @@ -53229,11 +52881,6 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-3.5 parent: 31 - - uid: 1352 - components: - - type: Transform - pos: 43.5,13.5 - parent: 31 - uid: 2133 components: - type: Transform @@ -53259,12 +52906,6 @@ entities: - type: Transform pos: -17.5,-20.5 parent: 31 - - uid: 3508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,13.5 - parent: 31 - uid: 3742 components: - type: Transform @@ -53282,6 +52923,11 @@ entities: - type: Transform pos: 59.5,6.5 parent: 31 + - uid: 6417 + components: + - type: Transform + pos: 51.5,17.5 + parent: 31 - uid: 6853 components: - type: Transform @@ -53639,6 +53285,11 @@ entities: parent: 31 - proto: RandomArtifactSpawner entities: + - uid: 60 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 31 - uid: 3735 components: - type: Transform @@ -54132,11 +53783,6 @@ entities: - type: Transform pos: 40.557358,0.6694789 parent: 31 - - uid: 11015 - components: - - type: Transform - pos: 42.653347,13.463804 - parent: 31 - proto: RCDAmmo entities: - uid: 593 @@ -54182,16 +53828,55 @@ entities: - type: Transform pos: 42.5,20.5 parent: 31 - - uid: 3888 + - uid: 5310 components: - type: Transform - pos: 54.5,15.5 + pos: 50.5,10.5 parent: 31 - - uid: 6548 + - uid: 6248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,17.5 + pos: 46.5,14.5 + parent: 31 + - uid: 6337 + components: + - type: Transform + pos: 48.5,14.5 + parent: 31 + - uid: 6341 + components: + - type: Transform + pos: 49.5,14.5 + parent: 31 + - uid: 6357 + components: + - type: Transform + pos: 47.5,14.5 + parent: 31 + - uid: 6361 + components: + - type: Transform + pos: 50.5,14.5 + parent: 31 + - uid: 6378 + components: + - type: Transform + pos: 46.5,10.5 + parent: 31 + - uid: 6382 + components: + - type: Transform + pos: 47.5,10.5 + parent: 31 + - uid: 6443 + components: + - type: Transform + pos: 48.5,10.5 + parent: 31 + - uid: 6628 + components: + - type: Transform + pos: 49.5,10.5 parent: 31 - uid: 7222 components: @@ -54213,31 +53898,20 @@ entities: - type: Transform pos: 46.5,20.5 parent: 31 - - uid: 10122 + - uid: 11094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 + pos: 45.5,12.5 parent: 31 - - uid: 11045 + - uid: 11096 components: - type: Transform - pos: 56.5,16.5 + pos: 45.5,13.5 parent: 31 - - uid: 11046 + - uid: 11097 components: - type: Transform - pos: 56.5,15.5 - parent: 31 - - uid: 11047 - components: - - type: Transform - pos: 55.5,18.5 - parent: 31 - - uid: 11095 - components: - - type: Transform - pos: 56.5,17.5 + pos: 45.5,11.5 parent: 31 - proto: ReinforcedWindow entities: @@ -54742,35 +54416,11 @@ entities: - type: Transform pos: -3.5,6.5 parent: 31 - - uid: 4274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,11.5 - parent: 31 - - uid: 4275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,9.5 - parent: 31 - uid: 4282 components: - type: Transform pos: 48.5,18.5 parent: 31 - - uid: 4287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,12.5 - parent: 31 - - uid: 4289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,10.5 - parent: 31 - uid: 4311 components: - type: Transform @@ -54963,12 +54613,6 @@ entities: - type: Transform pos: -2.5,6.5 parent: 31 - - uid: 5124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 31 - uid: 5229 components: - type: Transform @@ -55006,12 +54650,6 @@ entities: - type: Transform pos: 17.5,21.5 parent: 31 - - uid: 6247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,17.5 - parent: 31 - uid: 6335 components: - type: Transform @@ -55027,12 +54665,6 @@ entities: - type: Transform pos: 45.5,7.5 parent: 31 - - uid: 6446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,15.5 - parent: 31 - uid: 6448 components: - type: Transform @@ -55131,6 +54763,12 @@ entities: - type: Transform pos: 45.5,18.5 parent: 31 + - uid: 6723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,15.5 + parent: 31 - uid: 6828 components: - type: Transform @@ -55595,6 +55233,12 @@ entities: - type: Transform pos: 29.5,21.5 parent: 31 + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,17.5 + parent: 31 - uid: 9128 components: - type: Transform @@ -55922,6 +55566,12 @@ entities: - type: Transform pos: -54.5,-9.5 parent: 31 + - uid: 11055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,16.5 + parent: 31 - uid: 11130 components: - type: Transform @@ -55955,19 +55605,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-2.5 parent: 31 -- proto: RemoteSignaller - entities: - - uid: 4469 - components: - - type: MetaData - name: igniter remote - - type: Transform - pos: 51.490143,16.211384 - parent: 31 - - type: DeviceLinkSource - linkedPorts: - 4470: - - Pressed: Trigger - proto: ResearchAndDevelopmentServer entities: - uid: 8437 @@ -56247,7 +55884,7 @@ entities: - uid: 1485 components: - type: Transform - pos: 39,16 + pos: 35.436428,14.905443 parent: 31 - uid: 1683 components: @@ -56267,12 +55904,12 @@ entities: - uid: 5029 components: - type: Transform - pos: 38,16 + pos: 36.1654,15.203077 parent: 31 - uid: 8232 components: - type: Transform - pos: 37,16 + pos: 35.04859,15.921068 parent: 31 - uid: 8997 components: @@ -56545,15 +56182,6 @@ entities: linkedPorts: 7588: - Pressed: Toggle - - uid: 10449 - components: - - type: Transform - pos: 51.5,18.5 - parent: 31 - - type: DeviceLinkSource - linkedPorts: - 6557: - - Pressed: Toggle - uid: 10996 components: - type: Transform @@ -57385,11 +57013,6 @@ entities: - type: Transform pos: 71.5,2.5 parent: 31 - - uid: 6470 - components: - - type: Transform - pos: 38.5,8.5 - parent: 31 - proto: Sink entities: - uid: 638 @@ -58134,23 +57757,6 @@ entities: - type: Transform pos: 33.5,12.5 parent: 31 -- proto: SpawnMobDrone - entities: - - uid: 60 - components: - - type: Transform - pos: 27.5,1.5 - parent: 31 - - uid: 99 - components: - - type: Transform - pos: 28.5,1.5 - parent: 31 - - uid: 644 - components: - - type: Transform - pos: 26.5,1.5 - parent: 31 - proto: SpawnMobFoxRenault entities: - uid: 4294 @@ -58243,15 +57849,15 @@ entities: parent: 31 - proto: SpawnPointAtmos entities: - - uid: 9106 + - uid: 6425 components: - type: Transform - pos: 39.5,12.5 + pos: 52.5,16.5 parent: 31 - - uid: 9107 + - uid: 9078 components: - type: Transform - pos: 38.5,12.5 + pos: 52.5,17.5 parent: 31 - proto: SpawnPointBartender entities: @@ -58772,34 +58378,26 @@ entities: parent: 31 - proto: StorageCanister entities: + - uid: 1108 + components: + - type: Transform + pos: 36.5,8.5 + parent: 31 - uid: 1536 components: - type: Transform pos: 36.5,9.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 1918 components: - type: Transform pos: 38.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - - uid: 8990 - components: - - type: Transform - pos: 36.5,10.5 - parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 11070 components: - type: Transform pos: 44.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: SubstationBasic entities: - uid: 2361 @@ -58893,18 +58491,6 @@ entities: - type: Transform pos: -31.5,7.5 parent: 31 -- proto: SuitStorageAtmos - entities: - - uid: 11024 - components: - - type: Transform - pos: 41.5,11.5 - parent: 31 - - uid: 11026 - components: - - type: Transform - pos: 42.5,11.5 - parent: 31 - proto: SuitStorageEngi entities: - uid: 257 @@ -59140,17 +58726,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: AME Room - - uid: 9152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,14.5 - parent: 31 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - uid: 9153 components: - type: Transform @@ -59184,6 +58759,16 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Telecomms + - uid: 11015 + components: + - type: Transform + pos: 38.5,11.5 + parent: 31 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics - proto: SurveillanceCameraGeneral entities: - uid: 727 @@ -60995,28 +60580,27 @@ entities: parent: 31 - proto: TegCenter entities: - - uid: 9078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,14.5 - parent: 31 - - type: AtmosDevice - joinedGrid: 31 -- proto: TegCirculator - entities: - - uid: 1483 - components: - - type: Transform - pos: 39.5,14.5 - parent: 31 - - type: PointLight - color: '#FF3300FF' - - uid: 1914 + - uid: 11059 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,14.5 + pos: 38.5,14.5 + parent: 31 +- proto: TegCirculator + entities: + - uid: 11057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 31 + - type: PointLight + color: '#FF3300FF' + - uid: 11060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,15.5 parent: 31 - type: PointLight color: '#FF3300FF' @@ -61264,13 +60848,6 @@ entities: - type: Transform pos: -2.63186,18.64349 parent: 31 -- proto: ToolboxMechanical - entities: - - uid: 7121 - components: - - type: Transform - pos: 42.508034,13.767397 - parent: 31 - proto: ToolboxMechanicalFilled entities: - uid: 7115 @@ -61415,10 +60992,10 @@ entities: parent: 31 - proto: VendingMachineAtmosDrobe entities: - - uid: 6341 + - uid: 6557 components: - type: Transform - pos: 44.5,13.5 + pos: 53.5,15.5 parent: 31 - proto: VendingMachineBooze entities: @@ -61502,11 +61079,6 @@ entities: - type: Transform pos: 0.5,-22.5 parent: 31 - - uid: 5090 - components: - - type: Transform - pos: -2.5,1.5 - parent: 31 - uid: 8705 components: - type: MetaData @@ -61514,6 +61086,11 @@ entities: - type: Transform pos: -32.5,-29.5 parent: 31 + - uid: 11446 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 31 - proto: VendingMachineClothing entities: - uid: 7647 @@ -63704,11 +63281,6 @@ entities: - type: Transform pos: 32.5,23.5 parent: 31 - - uid: 3053 - components: - - type: Transform - pos: 47.5,14.5 - parent: 31 - uid: 3130 components: - type: Transform @@ -63769,11 +63341,6 @@ entities: - type: Transform pos: 59.5,8.5 parent: 31 - - uid: 3675 - components: - - type: Transform - pos: 48.5,14.5 - parent: 31 - uid: 3833 components: - type: Transform @@ -63834,11 +63401,6 @@ entities: - type: Transform pos: 61.5,-1.5 parent: 31 - - uid: 4265 - components: - - type: Transform - pos: 49.5,14.5 - parent: 31 - uid: 4271 components: - type: Transform @@ -63849,11 +63411,6 @@ entities: - type: Transform pos: 51.5,8.5 parent: 31 - - uid: 4276 - components: - - type: Transform - pos: 51.5,13.5 - parent: 31 - uid: 4277 components: - type: Transform @@ -63864,11 +63421,6 @@ entities: - type: Transform pos: 51.5,6.5 parent: 31 - - uid: 4292 - components: - - type: Transform - pos: 50.5,14.5 - parent: 31 - uid: 4300 components: - type: Transform @@ -64792,6 +64344,12 @@ entities: - type: Transform pos: 58.5,5.5 parent: 31 + - uid: 6243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,10.5 + parent: 31 - uid: 6244 components: - type: Transform @@ -64859,6 +64417,12 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 31 + - uid: 6353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,9.5 + parent: 31 - uid: 6368 components: - type: Transform @@ -64875,11 +64439,6 @@ entities: - type: Transform pos: 38.5,7.5 parent: 31 - - uid: 6390 - components: - - type: Transform - pos: 45.5,12.5 - parent: 31 - uid: 6395 components: - type: Transform @@ -64952,11 +64511,6 @@ entities: - type: Transform pos: 44.5,14.5 parent: 31 - - uid: 6492 - components: - - type: Transform - pos: 43.5,14.5 - parent: 31 - uid: 6493 components: - type: Transform @@ -64987,21 +64541,6 @@ entities: - type: Transform pos: 33.5,23.5 parent: 31 - - uid: 6531 - components: - - type: Transform - pos: 46.5,14.5 - parent: 31 - - uid: 6535 - components: - - type: Transform - pos: 45.5,13.5 - parent: 31 - - uid: 6536 - components: - - type: Transform - pos: 45.5,11.5 - parent: 31 - uid: 6537 components: - type: Transform @@ -65062,11 +64601,6 @@ entities: - type: Transform pos: 41.5,10.5 parent: 31 - - uid: 6628 - components: - - type: Transform - pos: 42.5,10.5 - parent: 31 - uid: 6751 components: - type: Transform @@ -65134,11 +64668,6 @@ entities: - type: Transform pos: -4.5,30.5 parent: 31 - - uid: 6886 - components: - - type: Transform - pos: 42.5,14.5 - parent: 31 - uid: 6889 components: - type: Transform @@ -65371,12 +64900,6 @@ entities: - type: Transform pos: -20.5,9.5 parent: 31 - - uid: 7352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,18.5 - parent: 31 - uid: 7441 components: - type: Transform @@ -65636,6 +65159,12 @@ entities: - type: Transform pos: -1.5,-20.5 parent: 31 + - uid: 8075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,18.5 + parent: 31 - uid: 8107 components: - type: Transform @@ -66058,6 +65587,12 @@ entities: - type: Transform pos: -25.5,-21.5 parent: 31 + - uid: 9106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,14.5 + parent: 31 - uid: 9118 components: - type: Transform @@ -66816,20 +66351,11 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,21.5 parent: 31 - - uid: 11048 + - uid: 11061 components: - type: Transform - pos: 56.5,18.5 - parent: 31 - - uid: 11093 - components: - - type: Transform - pos: 56.5,14.5 - parent: 31 - - uid: 11094 - components: - - type: Transform - pos: 54.5,14.5 + rot: 3.141592653589793 rad + pos: 54.5,18.5 parent: 31 - uid: 11114 components: @@ -66851,6 +66377,12 @@ entities: - type: Transform pos: -8.5,27.5 parent: 31 + - uid: 11291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,14.5 + parent: 31 - uid: 11390 components: - type: Transform @@ -70112,7 +69644,7 @@ entities: pos: 58.5,2.5 parent: 31 - type: WarpPoint - location: singularity engine + location: particle accelerator - uid: 11313 components: - type: Transform @@ -70212,15 +69744,11 @@ entities: - type: Transform pos: 35.5,12.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - uid: 6826 components: - type: Transform pos: 46.5,23.5 parent: 31 - - type: AtmosDevice - joinedGrid: 31 - proto: WeaponCapacitorRecharger entities: - uid: 4293 @@ -70310,10 +69838,10 @@ entities: parent: 31 - proto: WelderIndustrial entities: - - uid: 6180 + - uid: 6446 components: - type: Transform - pos: 42.356472,13.463804 + pos: 51.379066,17.2747 parent: 31 - proto: WelderMini entities: @@ -70858,30 +70386,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 31 - - uid: 6481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,9.5 - parent: 31 - - uid: 6599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,10.5 - parent: 31 - - uid: 6602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,11.5 - parent: 31 - - uid: 6847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,12.5 - parent: 31 - uid: 8887 components: - type: Transform diff --git a/Resources/Prototypes/AlertLevels/alert_levels.yml b/Resources/Prototypes/AlertLevels/alert_levels.yml index 2d01a29fef..fb6e316ed0 100644 --- a/Resources/Prototypes/AlertLevels/alert_levels.yml +++ b/Resources/Prototypes/AlertLevels/alert_levels.yml @@ -5,28 +5,35 @@ green: announcement: alert-level-green-announcement color: Green + emergencyLightColor: LawnGreen shuttleTime: 600 blue: announcement: alert-level-blue-announcement sound: /Audio/Misc/bluealert.ogg color: DodgerBlue + forceEnableEmergencyLights: true + emergencyLightColor: DodgerBlue shuttleTime: 600 violet: announcement: alert-level-violet-announcement sound: /Audio/Misc/notice1.ogg color: Violet emergencyLightColor: Violet + forceEnableEmergencyLights: true shuttleTime: 600 yellow: announcement: alert-level-yellow-announcement sound: /Audio/Misc/notice1.ogg color: Yellow emergencyLightColor: Goldenrod + forceEnableEmergencyLights: true shuttleTime: 600 red: announcement: alert-level-red-announcement sound: /Audio/Misc/redalert.ogg color: Red + emergencyLightColor: Red + forceEnableEmergencyLights: true shuttleTime: 600 #No reduction in time as we don't have swiping for red alert like in /tg/. Shuttle times are intended to create friction, so having a way to brainlessly bypass that would be dumb. gamma: announcement: alert-level-gamma-announcement diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index fdbe647e62..66f52b74eb 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -54,6 +54,19 @@ - id: Handcuffs - id: Handcuffs +- type: entity + id: ClothingBeltSecurityWebbingFilled + parent: ClothingBeltSecurityWebbing + suffix: Filled + components: + - type: StorageFill + contents: + - id: GrenadeFlashBang + - id: TearGasGrenade + - id: Stunbaton + - id: Handcuffs + - id: Handcuffs + - type: entity id: ClothingBeltJanitorFilled parent: ClothingBeltJanitor diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml index 384c27b0df..d9d9071d44 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml @@ -65,13 +65,20 @@ components: - type: StorageFill contents: - - id: WelderMini - - id: Welder - prob: 0.7 - - id: WelderIndustrial - prob: 0.5 + - id: ClothingHeadHatWelding + - id: ClothingHeadHatWelding - id: ClothingHeadHatWelding prob: 0.5 + - id: Welder + - id: Welder + - id: WelderMini + orGroup: thirdWelder + - id: Welder + prob: 0.33 + orGroup: thirdWelder + - id: WelderIndustrial + prob: 0.33 + orGroup: thirdWelder - type: entity id: LockerAtmosphericsFilledHardsuit diff --git a/Resources/Prototypes/Catalog/Jukebox/Standard.yml b/Resources/Prototypes/Catalog/Jukebox/Standard.yml new file mode 100644 index 0000000000..7440428bd4 --- /dev/null +++ b/Resources/Prototypes/Catalog/Jukebox/Standard.yml @@ -0,0 +1,41 @@ +- type: jukebox + id: FlipFlap + name: X-CEED - Flip Flap + path: + path: /Audio/Jukebox/flip-flap.ogg + +- type: jukebox + id: Tintin + name: Jeroen Tel - Tintin on the Moon + path: + path: /Audio/Jukebox/title3.ogg + +- type: jukebox + id: Thunderdome + name: MashedByMachines - Sector 11 + path: + path: /Audio/Jukebox/sector11.ogg + +- type: jukebox + id: Constellations + name: Qwertyquerty - Constellations + path: + path: /Audio/Jukebox/constellations.ogg + +- type: jukebox + id: Drifting + name: Qwertyquerty - Drifting + path: + path: /Audio/Jukebox/drifting.ogg + +- type: jukebox + id: starlight + name: Qwertyquerty - Starlight + path: + path: /Audio/Jukebox/starlight.ogg + +- type: jukebox + id: sunset + name: PigeonBeans - Sunset + path: + path: /Audio/Jukebox/sunset.ogg diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml index f45dd229a2..91e45c8391 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/detdrobe.yml @@ -4,7 +4,7 @@ ClothingUniformJumpsuitDetective: 2 ClothingUniformJumpskirtDetective: 2 ClothingShoesColorBrown: 2 - ClothingOuterCoatDetective: 2 + ClothingOuterCoatDetectiveLoadout: 2 ClothingHeadHatFedoraBrown: 2 ClothingUniformJumpsuitDetectiveGrey: 2 ClothingUniformJumpskirtDetectiveGrey: 2 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index b1e6b88435..6375ac37f7 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -622,6 +622,16 @@ categories: - UplinkDeception +- type: listing + id: UplinkChameleonProjector + name: uplink-chameleon-projector-name + description: uplink-chameleon-projector-desc + productEntity: ChameleonProjector + cost: + Telecrystal: 7 + categories: + - UplinkDeception + - type: listing id: UplinkHeadsetEncryptionKey name: uplink-encryption-key-name diff --git a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml index 76aca4df13..703730daf3 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml @@ -9,6 +9,8 @@ size: Normal - type: Clothing slots: [belt] + equipSound: + path: /Audio/Items/belt_equip.ogg quickEquip: false - type: PhysicalComposition materialComposition: diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 24944f02dd..7ad21ba93a 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -156,7 +156,7 @@ - WhitelistChameleon - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesGlassesSecurity name: security glasses description: Upgraded sunglasses that provide flash immunity and a security HUD. @@ -178,7 +178,6 @@ - type: GuideHelp guides: - Security - - type: ShowSecurityIcons - type: IdentityBlocker coverage: EYES diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index fabb7bc642..c919f9173b 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -1,3 +1,13 @@ +- type: entity + id: ShowSecurityIcons + abstract: true + noSpawn: true + components: + - type: ShowJobIcons + - type: ShowMindShieldIcons + - type: ShowCriminalRecordIcons + + - type: entity parent: ClothingEyesBase id: ClothingEyesHudDiagnostic @@ -17,7 +27,7 @@ parent: ClothingEyesBase id: ClothingEyesHudMedical name: medical hud - description: A heads-up display that scans the humanoids in view and provides accurate data about their health status. + description: A heads-up display that scans the humanoids in view and provides accurate data about their health status. components: - type: Sprite sprite: Clothing/Eyes/Hud/med.rsi @@ -34,7 +44,7 @@ - HudMedical - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudSecurity name: security hud description: A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. @@ -43,7 +53,6 @@ sprite: Clothing/Eyes/Hud/sec.rsi - type: Clothing sprite: Clothing/Eyes/Hud/sec.rsi - - type: ShowSecurityIcons - type: Tag tags: - HudSecurity @@ -138,7 +147,7 @@ - type: ShowThirstIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudMedSec name: medsec hud description: An eye display that looks like a mixture of medical and security huds. @@ -150,13 +159,12 @@ - type: Construction graph: HudMedSec node: medsecHud - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudMultiversal name: multiversal hud description: Filler @@ -165,7 +173,6 @@ sprite: Clothing/Eyes/Hud/medsecengi.rsi - type: Clothing sprite: Clothing/Eyes/Hud/medsecengi.rsi - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological @@ -176,7 +183,7 @@ - type: ShowSyndicateIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudOmni name: omni hud description: Filler @@ -185,7 +192,6 @@ sprite: Clothing/Eyes/Hud/omni.rsi - type: Clothing sprite: Clothing/Eyes/Hud/omni.rsi - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological @@ -198,7 +204,7 @@ - type: ShowSyndicateIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudSyndicate name: syndicate visor description: The syndicate's professional head-up display, designed for better detection of humanoids and their subsequent elimination. @@ -208,14 +214,26 @@ - type: Clothing sprite: Clothing/Eyes/Hud/synd.rsi - type: ShowSyndicateIcons - - type: ShowSecurityIcons - type: entity - parent: ClothingEyesGlassesSunglasses + parent: [ClothingEyesBase, ShowSecurityIcons] + id: ClothingEyesHudSyndicateAgent + name: syndicate agent visor + description: The Syndicate Agent's professional heads-up display, designed for quick diagnosis of their team's status. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/syndagent.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/syndagent.rsi + - type: ShowSyndicateIcons + - type: ShowHealthBars + damageContainers: + - Biological + +- type: entity + parent: [ClothingEyesGlassesSunglasses, ShowSecurityIcons] id: ClothingEyesGlassesHiddenSecurity suffix: Syndicate - components: - - type: ShowSecurityIcons - type: entity parent: ClothingEyesHudMedical diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index bf08db78f7..96bdd61f94 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -20,6 +20,7 @@ soundHit: collection: BoxingHit animation: WeaponArcFist + mustBeEquippedToUse: true - type: Fiber fiberMaterial: fibers-leather fiberColor: fibers-red @@ -90,6 +91,7 @@ types: Blunt: 8 bluntStaminaDamageFactor: 0.0 # so blunt doesn't deal stamina damage at all + mustBeEquippedToUse: true - type: entity parent: ClothingHandsBase @@ -362,6 +364,7 @@ soundHit: collection: Punch animation: WeaponArcFist + mustBeEquippedToUse: true - type: Fiber fiberMaterial: fibers-leather fiberColor: fibers-blue diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index d13b284ff2..e1e5ddc11f 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -133,11 +133,13 @@ unequipSound: /Audio/Mecha/mechmove03.ogg - type: Tag tags: - - HidesHair - WhitelistChameleon - HelmetEVA - - HidesNose - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity abstract: true @@ -173,10 +175,12 @@ - type: IngestionBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon - - HidesNose - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity abstract: true @@ -248,6 +252,6 @@ - type: TemperatureProtection coefficient: 0.7 - type: GroupExamine - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index a35cf498f6..453f3d1267 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -17,9 +17,9 @@ sprite: Clothing/Head/Hardsuits/basic.rsi - type: Clothing sprite: Clothing/Head/Hardsuits/basic.rsi - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout #Atmospherics Hardsuit - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index fba77d885f..ec0921c512 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -382,9 +382,12 @@ sprite: Clothing/Head/Hats/plaguedoctor.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - ClothMade + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity parent: ClothingHeadBase @@ -537,9 +540,11 @@ sprite: Clothing/Head/Hats/witch.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - ClothMade + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index f38efd5c8b..88070b430f 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -110,6 +110,10 @@ Blunt: 0.95 Slash: 0.95 Piercing: 0.95 + - type: HideLayerClothing + slots: + - Hair + - Snout #Janitorial Bombsuit Helmet - type: entity @@ -157,10 +161,13 @@ sprite: Clothing/Head/Helmets/spaceninja.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout #Templar Helmet - type: entity @@ -220,8 +227,11 @@ - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Atmos Fire Helmet - type: entity @@ -244,8 +254,11 @@ - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Chitinous Helmet - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 68d50c5ab1..b62834dd98 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -13,8 +13,11 @@ - type: IngestionBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity parent: ClothingHeadHatHoodBioGeneral @@ -94,9 +97,11 @@ sprite: Clothing/Head/Hoods/chaplain.rsi - type: Tag tags: - - HidesHair - HamsterWearable - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -110,8 +115,10 @@ sprite: Clothing/Head/Hoods/cult.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -125,9 +132,11 @@ sprite: Clothing/Head/Hoods/nun.rsi - type: Tag tags: - - HidesHair - HamsterWearable - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -145,9 +154,10 @@ Heat: 0.95 Radiation: 0.65 - type: BreathMask - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity parent: ClothingHeadBase @@ -161,8 +171,10 @@ sprite: Clothing/Head/Hoods/goliathcloak.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -175,9 +187,9 @@ sprite: Clothing/Head/Hoods/iansuit.rsi - type: Clothing sprite: Clothing/Head/Hoods/iansuit.rsi - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -190,9 +202,9 @@ sprite: Clothing/Head/Hoods/carpsuit.rsi - type: Clothing sprite: Clothing/Head/Hoods/carpsuit.rsi - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -207,8 +219,11 @@ - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Winter Coat Hoods - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/welding.yml b/Resources/Prototypes/Entities/Clothing/Head/welding.yml index 93d9b1e084..cd5c63d7ec 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/welding.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/welding.yml @@ -19,6 +19,9 @@ - type: Tag tags: - WhitelistChameleon + - type: HideLayerClothing + slots: + - Snout - type: entity parent: WeldingMaskBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml index 246b47b800..f5ad2fb6c8 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml @@ -25,7 +25,10 @@ - type: Tag tags: - Bandana - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskBandanaBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 4d7351464f..850050b2d3 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -15,7 +15,10 @@ tags: - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGas @@ -197,7 +200,9 @@ tags: - ClownMask - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskClownBase @@ -208,7 +213,9 @@ - ClownMask - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskClown @@ -235,9 +242,9 @@ sprite: Clothing/Mask/joy.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -255,7 +262,9 @@ tags: - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskPullableBase @@ -306,9 +315,10 @@ - type: BreathMask - type: IngestionBlocker - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskClownBase @@ -338,8 +348,11 @@ - type: Tag tags: - WhitelistChameleon - - HidesHair - - HidesNose + - type: HideLayerClothing + slots: + - Hair + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGasExplorer @@ -365,8 +378,11 @@ - type: Tag tags: - WhitelistChameleon - - HidesHair - - HidesNose + - type: HideLayerClothing + slots: + - Hair + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGasERT @@ -401,7 +417,9 @@ tags: - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: IdentityBlocker - type: entity @@ -416,9 +434,9 @@ sprite: Clothing/Mask/fox.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -432,9 +450,9 @@ sprite: Clothing/Mask/bee.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -448,9 +466,9 @@ sprite: Clothing/Mask/bear.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -464,9 +482,9 @@ sprite: Clothing/Mask/raven.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -480,9 +498,9 @@ sprite: Clothing/Mask/jackal.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -496,9 +514,9 @@ sprite: Clothing/Mask/bat.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index d0e4e4d7e9..0a0fc68469 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -6,8 +6,7 @@ suffix: Chameleon components: - type: Tag - tags: # ignore "WhitelistChameleon" tag - - HidesNose + tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Mask/gas.rsi - type: Clothing @@ -21,6 +20,9 @@ interfaces: - key: enum.ChameleonUiKey.Key type: ChameleonBoundUserInterface + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskGasChameleon @@ -28,3 +30,6 @@ suffix: Voice Mask, Chameleon components: - type: VoiceMasker + - type: HideLayerClothing + slots: + - Snout diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index ca0e2d4b4d..7a78eca2ff 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -31,6 +31,15 @@ Piercing: 0.70 Heat: 0.80 +- type: entity + parent: ClothingOuterCoatDetective + id: ClothingOuterCoatDetectiveLoadout + components: + - type: StorageFill + contents: + - id: SmokingPipeFilledTobacco + - id: FlippoLighter #Not the steal objective, only difference from normal detective trenchcoat + - type: entity parent: ClothingOuterStorageBase id: ClothingOuterCoatGentle @@ -43,7 +52,36 @@ sprite: Clothing/OuterClothing/Coats/gentlecoat.rsi - type: entity - parent: ClothingOuterStorageBase + abstract: true + id: ClothingOuterArmorHoS + components: + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.7 + Heat: 0.7 + Caustic: 0.75 # not the full 90% from ss13 because of the head + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + abstract: true + id: ClothingOuterArmorWarden + components: + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.7 + Heat: 0.7 + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + parent: [ClothingOuterArmorHoS, ClothingOuterStorageBase] id: ClothingOuterCoatHoSTrench name: head of security's armored trenchcoat description: A greatcoat enhanced with a special alloy for some extra protection and style for those with a commanding presence. @@ -52,16 +90,6 @@ sprite: Clothing/OuterClothing/Coats/hos_trenchcoat.rsi - type: Clothing sprite: Clothing/OuterClothing/Coats/hos_trenchcoat.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.70 - Slash: 0.70 - Piercing: 0.70 - Heat: 0.70 - Caustic: 0.75 #not the full 90% from ss13 because of the head - - type: ExplosionResistance - damageCoefficient: 0.90 - type: entity parent: ClothingOuterStorageBase @@ -286,7 +314,7 @@ sprite: Clothing/OuterClothing/Coats/pirate.rsi - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterArmorWarden, ClothingOuterStorageBase] id: ClothingOuterCoatWarden name: warden's armored jacket description: A sturdy, utilitarian jacket designed to protect a warden from any brig-bound threats. @@ -295,15 +323,6 @@ sprite: Clothing/OuterClothing/Coats/warden.rsi - type: Clothing sprite: Clothing/OuterClothing/Coats/warden.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.70 - Slash: 0.70 - Piercing: 0.70 - Heat: 0.70 - - type: ExplosionResistance - damageCoefficient: 0.90 - type: entity parent: ClothingOuterStorageBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index e74ace47c8..f04548072e 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -368,7 +368,7 @@ parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitRd name: experimental research hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. Able to be compressed to small sizes. + description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/rd.rsi @@ -393,7 +393,9 @@ sprintModifier: 0.75 - type: HeldSpeedModifier - type: Item - size: Normal + size: Huge + shape: + - 0,0,4,4 #5X5, can fit in a duffel bag but nothing smaller. - type: Tag tags: - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index b792a97627..207532c5dd 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -224,9 +224,23 @@ clothingPrototype: ClothingHeadHatHoodWinterHOP - type: entity - parent: ClothingOuterWinterCoatToggleable + parent: [ClothingOuterArmorHoS, ClothingOuterWinterCoatToggleable] id: ClothingOuterWinterHoS + name: head of security's armored winter coat + description: A sturdy, utilitarian winter coat designed to protect a head of security from any brig-bound threats and hypothermic events. + components: + - type: Sprite + sprite: Clothing/OuterClothing/WinterCoats/coathosarmored.rsi + - type: Clothing + sprite: Clothing/OuterClothing/WinterCoats/coathosarmored.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterHOS + +- type: entity + parent: ClothingOuterWinterCoatToggleable + id: ClothingOuterWinterHoSUnarmored name: head of security's winter coat + description: A sturdy coat, a warm coat, but not an armored coat. components: - type: Sprite sprite: Clothing/OuterClothing/WinterCoats/coathos.rsi @@ -424,22 +438,28 @@ clothingPrototype: ClothingHeadHatHoodWinterSci - type: entity - parent: ClothingOuterWinterCoatToggleable + parent: [ClothingOuterArmorWarden, ClothingOuterWinterCoatToggleable] id: ClothingOuterWinterWarden name: warden's armored winter coat description: A sturdy, utilitarian winter coat designed to protect a warden from any brig-bound threats and hypothermic events. components: + - type: Sprite + sprite: Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi + - type: Clothing + sprite: Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterWarden + +- type: entity + parent: ClothingOuterWinterCoatToggleable + id: ClothingOuterWinterWardenUnarmored + name: warden's winter coat + description: A sturdy coat, a warm coat, but not an armored coat. + components: - type: Sprite sprite: Clothing/OuterClothing/WinterCoats/coatwarden.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatwarden.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.70 - Slash: 0.70 - Piercing: 0.8 #slightly less bulletproof then warden's normal coat - Heat: 0.70 - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodWinterWarden diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 50d84e30eb..aeebaca31c 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -35,7 +35,7 @@ parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtChiefEngineer name: chief engineer's jumpskirt - description: It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. + description: It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer. components: - type: Sprite sprite: Clothing/Uniforms/Jumpskirt/ce.rsi @@ -167,7 +167,7 @@ parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtHoS name: head of security's jumpskirt - description: It's bright red and rather crisp, much like security's victims tend to be. Its sturdy fabric provides minor protection from slash and pierce damage. + description: It's bright red and rather crisp, much like security's victims tend to be. components: - type: Sprite sprite: Clothing/Uniforms/Jumpskirt/hos.rsi @@ -178,7 +178,7 @@ parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtHoSAlt name: head of security's turtleneck - description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. Its sturdy fabric provides minor protection from slash and pierce damage. + description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. components: - type: Sprite sprite: Clothing/Uniforms/Jumpskirt/hos_alt.rsi @@ -338,7 +338,7 @@ parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtScientist name: scientist jumpskirt - description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. + description: It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist. components: - type: Sprite sprite: Clothing/Uniforms/Jumpskirt/scientist.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index ec160b54cb..0151784b66 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -94,7 +94,7 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitChiefEngineer name: chief engineer's jumpsuit - description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. + description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/ce.rsi @@ -538,7 +538,7 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitScientist name: scientist jumpsuit - description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. + description: It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/scientist.rsi diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index 2c845e1d0f..fecf9f19a4 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -142,8 +142,11 @@ mode: CardinalFlags - type: SolutionContainerManager solutions: - puddle: { maxVol: 1000 } + puddle: + maxVol: 1000 - type: Puddle + - type: MixableSolution + solution: puddle - type: Appearance - type: ActiveEdgeSpreader - type: EdgeSpreader diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml index 6edf341e10..a889b939bd 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml @@ -33,8 +33,8 @@ - FoodOnion - FoodOnionRed - FoodMushroom - - FoodChili - - FoodChilly + - FoodChiliPepper + - FoodChillyPepper - FoodAloe - FoodPoppy - FoodLingzhi diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml index d1ed51013a..b7d9266327 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml @@ -184,6 +184,17 @@ - sprite: Mobs/Customization/reptilian_parts.rsi state: snout_sharp +- type: marking + id: LizardSnoutSplotch + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Reptilian] + sprites: + - sprite: Mobs/Customization/reptilian_parts.rsi + state: snout_splotch_primary + - sprite: Mobs/Customization/reptilian_parts.rsi + state: snout_splotch_secondary + - type: marking id: LizardChestTiger bodyPart: Chest diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 9ca99f9982..9907c5f71f 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -227,7 +227,8 @@ - AllAccess - type: AccessReader access: [["Command"], ["Research"]] - - type: ShowSecurityIcons + - type: ShowJobIcons + - type: ShowMindShieldIcons - type: entity id: BaseBorgChassisSyndicate diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml index 633a4ff3ca..6fca4e6a63 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml @@ -66,3 +66,98 @@ interactFailureString: petting-failure-generic interactSuccessSound: path: /Audio/Animals/lizard_happy.ogg + +- type: entity + id: MobTomatoKiller + parent: + - BaseSimpleMob + - MobDamageable + - MobBloodstream + - MobFlammable + - MobCombat + name: tomato killer + description: it seems today it's not you eating tomatoes, it's the tomatoes eating you. + components: + - type: Item + size: Huge + - type: NpcFactionMember + factions: + - SimpleHostile + - type: HTN + rootTask: + task: KillerTomatoCompound + - type: NPCImprintingOnSpawnBehaviour + whitelist: + components: + - HumanoidAppearance + - type: Sprite + sprite: Mobs/Demons/tomatokiller.rsi + noRot: true + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + - type: Bloodstream + bloodReagent: JuiceTomato + bloodMaxVolume: 50 + chemicalMaxVolume: 30 + - type: DamageStateVisuals + states: + Alive: + Base: alive + Dead: + Base: dead + - type: Butcherable + spawned: + - id: FoodMeatTomato + amount: 2 + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 100 + behaviors: + - !type:GibBehavior { } + - type: MobThresholds + thresholds: + 0: Alive + 24: Dead + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.30 + density: 80 + mask: + - MobMask + layer: + - MobLayer + - type: MeleeWeapon + hidden: true + damage: + groups: + Brute: 4 + animation: WeaponArcBite + - type: Climbing + - type: NameIdentifier + group: GenericNumber + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.7 + 80: 0.5 + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Effects/Footsteps/slime1.ogg + params: + volume: 3 + - type: Tag + tags: + - FootstepSound + - Fruit + - type: Extractable + grindableSolutionName: bloodstream + - type: PotencyVisuals + - type: Appearance + - type: Produce + seedId: killerTomato diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 9489fda5f0..9a4d4ec3aa 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -61,6 +61,7 @@ group: GenericNumber - type: Repairable doAfterDelay: 8 + fuelCost: 15 - type: Pullable - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index 2c0ab1e15d..5a54b56c48 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -51,6 +51,11 @@ accent: dwarf - type: Speech speechSounds: Bass + - type: HumanoidAppearance + species: Human + hideLayersOnEquip: + - Hair + - Snout - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/human.yml b/Resources/Prototypes/Entities/Mobs/Species/human.yml index d469d6c60f..6716d3902b 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/human.yml @@ -15,6 +15,11 @@ spawned: - id: FoodMeatHuman amount: 5 + - type: HumanoidAppearance + species: Human + hideLayersOnEquip: + - Hair + - Snout - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml index d60134fce0..aef0c5a8f5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml @@ -15,6 +15,9 @@ solutions: drink: maxVol: 50 + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: Sprite state: icon - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index aac2803dd2..e8ae787636 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -10,6 +10,8 @@ solutions: drink: maxVol: 30 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true - type: Drink diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index 0c7707c5f2..73b1e06f9b 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -39,6 +39,9 @@ - type: PhysicalComposition materialComposition: Plastic: 100 + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: entity parent: DrinkBottlePlasticBaseFull diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index 585e5ed14d..ca67e51792 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -6,7 +6,7 @@ components: - type: Drink - type: Openable - - type: PressurizedDrink + - type: Shakeable - type: SolutionContainerManager solutions: drink: @@ -14,6 +14,8 @@ - ReagentId: Cola Quantity: 30 maxVol: 30 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true maxTransferAmount: 15 @@ -34,6 +36,8 @@ solution: drink - type: DrainableSolution solution: drink + - type: PressurizedSolution + solution: drink - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml index 8242496e20..763c4210ae 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -10,7 +10,8 @@ solutions: drink: maxVol: 20 - canMix: true + - type: MixableSolution + solution: drink - type: FitsInDispenser solution: drink - type: DrawableSolution diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml index 2fd2331f91..ef6208b69d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml @@ -146,6 +146,9 @@ - type: RandomFillSolution solution: drink weightedRandomId: RandomFillMopwata + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml index c80398e349..829d68279d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml @@ -8,7 +8,10 @@ solutions: drink: maxVol: 100 + - type: MixableSolution + solution: drink - type: Drink + - type: Shakeable # Doesn't do anything, but I mean... - type: FitsInDispenser solution: drink - type: DrawableSolution diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml index a3f5bf1903..67154963d1 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml @@ -25,6 +25,8 @@ damage: types: Blunt: 0 + - type: MixableSolution + solution: drink - type: Spillable solution: drink - type: FitsInDispenser @@ -102,6 +104,8 @@ solutions: drink: maxVol: 50 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true maxTransferAmount: 5 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml index 4595329635..70303cfdff 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml @@ -19,6 +19,8 @@ - map: ["enum.SolutionContainerLayers.Fill"] state: fill-1 visible: false + - type: MixableSolution + solution: food - type: DamageOnLand damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 3f0277e1bc..302c0d98b6 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -1133,9 +1133,9 @@ Quantity: 1 - type: entity - name: chili + name: chili pepper parent: FoodProduceBase - id: FoodChili + id: FoodChiliPepper description: Spicy, best not touch your eyes. components: - type: FlavorProfile @@ -1163,7 +1163,7 @@ - type: entity name: chilly pepper parent: FoodProduceBase - id: FoodChilly + id: FoodChillyPepper description: Icy hot. components: - type: FlavorProfile diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 7a9e60ac56..63c7908432 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -253,23 +253,6 @@ materialRequirements: Glass: 5 -- type: entity - id: TraversalDistorterMachineCircuitboard - parent: BaseMachineCircuitboard - name: traversal distorter machine board - description: A machine printed circuit board for a traversal distorter. - components: - - type: Sprite - state: science - - type: MachineBoard - prototype: MachineTraversalDistorter - requirements: - Manipulator: 1 - Capacitor: 2 - materialRequirements: - Steel: 5 - Cable: 1 - - type: entity id: ArtifactCrusherMachineCircuitboard parent: BaseMachineCircuitboard @@ -1369,4 +1352,18 @@ MatterBin: 1 Manipulator: 3 materialRequirements: - Glass: 1 \ No newline at end of file + Glass: 1 + +- type: entity + parent: BaseMachineCircuitboard + id: JukeboxCircuitBoard + name: jukebox machine board + description: A machine printed circuit board for a jukebox. + components: + - type: MachineBoard + prototype: Jukebox + materialRequirements: + WoodPlank: 5 + Steel: 2 + Glass: 5 + Cable: 2 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml index 8b1826857d..bb2f481644 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml @@ -1,68 +1,4 @@ - -- type: entity - parent: DoorElectronics - id: DoorElectronicsService - suffix: Service, Locked - components: - - type: AccessReader - access: [["Service"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsTheatre - suffix: Theatre, Locked - components: - - type: AccessReader - access: [["Theatre"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsChapel - suffix: Chapel, Locked - components: - - type: AccessReader - access: [["Chapel"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsJanitor - suffix: Janitor, Locked - components: - - type: AccessReader - access: [["Janitor"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsKitchen - suffix: Kitchen, Locked - components: - - type: AccessReader - access: [["Kitchen"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsBar - suffix: Bar, Locked - components: - - type: AccessReader - access: [["Bar"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsHydroponics - suffix: Hydroponics, Locked - components: - - type: AccessReader - access: [["Hydroponics"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsLawyer - suffix: Lawyer, Locked - components: - - type: AccessReader - access: [["Lawyer"]] - +# Command - type: entity parent: DoorElectronics id: DoorElectronicsCaptain @@ -71,134 +7,6 @@ - type: AccessReader access: [["Captain"]] -- type: entity - parent: DoorElectronics - id: DoorElectronicsExternal - suffix: External, Locked - components: - - type: AccessReader - access: [["External"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsCargo - suffix: Cargo, Locked - components: - - type: AccessReader - access: [["Cargo"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsEngineering - suffix: Engineering, Locked - components: - - type: AccessReader - access: [["Engineering"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsAtmospherics - suffix: Atmospherics, Locked - components: - - type: AccessReader - access: [["Atmospherics"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsFreezer - suffix: Freezer, Locked - components: - - type: AccessReader - access: [["Kitchen"], ["Hydroponics"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsSalvage - suffix: Salvage, Locked - components: - - type: AccessReader - access: [["Salvage"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsMedical - suffix: Medical, Locked - components: - - type: AccessReader - access: [["Medical"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsChemistry - suffix: Chemistry, Locked - components: - - type: AccessReader - access: [["Chemistry"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsResearch - suffix: Research, Locked - components: - - type: AccessReader - access: [["Research"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsScience - suffix: Science, Locked - components: - - type: AccessReader - access: [["Research"], ["Medical"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsCommand - suffix: Command, Locked - components: - - type: AccessReader - access: [["Command"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsCentralCommand - suffix: CentralCommand, Locked - components: - - type: AccessReader - access: [["CentralCommand"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsChiefMedicalOfficer - suffix: ChiefMedicalOfficer, Locked - components: - - type: AccessReader - access: [["ChiefMedicalOfficer"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsChiefEngineer - suffix: ChiefEngineer, Locked - components: - - type: AccessReader - access: [["ChiefEngineer"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsHeadOfSecurity - suffix: HeadOfSecurity, Locked - components: - - type: AccessReader - access: [["HeadOfSecurity"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsResearchDirector - suffix: ResearchDirector, Locked - components: - - type: AccessReader - access: [["ResearchDirector"]] - - type: entity parent: DoorElectronics id: DoorElectronicsHeadOfPersonnel @@ -207,6 +15,96 @@ - type: AccessReader access: [["HeadOfPersonnel"]] +- type: entity + parent: DoorElectronics + id: DoorElectronicsCommand + suffix: Command, Locked + components: + - type: AccessReader + access: [["Command"]] + +# Service +- type: entity + parent: DoorElectronics + id: DoorElectronicsBar + suffix: Bar, Locked + components: + - type: AccessReader + access: [["Bar"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsBarKitchen + suffix: Bar, Locked + components: + - type: AccessReader + access: [["Bar"], ["Kitchen"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsHydroponics + suffix: Hydroponics, Locked + components: + - type: AccessReader + access: [["Hydroponics"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsChapel + suffix: Chapel, Locked + components: + - type: AccessReader + access: [["Chapel"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsTheatre + suffix: Theatre, Locked + components: + - type: AccessReader + access: [["Theatre"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsKitchen + suffix: Kitchen, Locked + components: + - type: AccessReader + access: [["Kitchen"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsKitchenHydroponics + suffix: Kitchen/Hydroponics, Locked + components: + - type: AccessReader + access: [["Kitchen"], ["Hydroponics"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsJanitor + suffix: Janitor, Locked + components: + - type: AccessReader + access: [["Janitor"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsLawyer + suffix: Lawyer, Locked + components: + - type: AccessReader + access: [["Lawyer"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsService + suffix: Service, Locked + components: + - type: AccessReader + access: [["Service"]] + +# Cargo - type: entity parent: DoorElectronics id: DoorElectronicsQuartermaster @@ -215,6 +113,97 @@ - type: AccessReader access: [["Quartermaster"]] +- type: entity + parent: DoorElectronics + id: DoorElectronicsSalvage + suffix: Salvage, Locked + components: + - type: AccessReader + access: [["Salvage"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsCargo + suffix: Cargo, Locked + components: + - type: AccessReader + access: [["Cargo"]] + +# Engineering +- type: entity + parent: DoorElectronics + id: DoorElectronicsChiefEngineer + suffix: ChiefEngineer, Locked + components: + - type: AccessReader + access: [["ChiefEngineer"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsAtmospherics + suffix: Atmospherics, Locked + components: + - type: AccessReader + access: [["Atmospherics"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsEngineering + suffix: Engineering, Locked + components: + - type: AccessReader + access: [["Engineering"]] + +# Science +- type: entity + parent: DoorElectronics + id: DoorElectronicsResearchDirector + suffix: ResearchDirector, Locked + components: + - type: AccessReader + access: [["ResearchDirector"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsMedicalResearch + suffix: Medical/Science, Locked + components: + - type: AccessReader + access: [["Research"], ["Medical"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsResearch + suffix: Research, Locked + components: + - type: AccessReader + access: [["Research"]] + +# Security +- type: entity + parent: DoorElectronics + id: DoorElectronicsHeadOfSecurity + suffix: HeadOfSecurity, Locked + components: + - type: AccessReader + access: [["HeadOfSecurity"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsArmory + suffix: Armory, Locked + components: + - type: AccessReader + access: [["Armory"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsDetective + suffix: Detective, Locked + components: + - type: AccessReader + access: [["Detective"]] + - type: entity parent: DoorElectronics id: DoorElectronicsSecurity @@ -231,14 +220,6 @@ - type: AccessReader access: [["Security"], ["Lawyer"]] -- type: entity - parent: DoorElectronics - id: DoorElectronicsDetective - suffix: Detective, Locked - components: - - type: AccessReader - access: [["Detective"]] - - type: entity parent: DoorElectronics id: DoorElectronicsBrig @@ -247,21 +228,64 @@ - type: AccessReader access: [["Brig"]] +# Medical - type: entity parent: DoorElectronics - id: DoorElectronicsArmory - suffix: Armory, Locked + id: DoorElectronicsChiefMedicalOfficer + suffix: ChiefMedicalOfficer, Locked components: - type: AccessReader - access: [["Armory"]] + access: [["ChiefMedicalOfficer"]] - type: entity parent: DoorElectronics - id: DoorElectronicsVault - suffix: Vault, Locked + id: DoorElectronicsChemistry + suffix: Chemistry, Locked components: - type: AccessReader - access: [["Security"], ["Command"]] + access: [["Chemistry"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsMedical + suffix: Medical, Locked + components: + - type: AccessReader + access: [["Medical"]] + +# Syndicate +- type: entity + parent: DoorElectronics + id: DoorElectronicsNukeop + suffix: Nukeop, Locked + components: + - type: AccessReader + access: [["NuclearOperative"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsSyndicateAgent + suffix: SyndicateAgent, Locked + components: + - type: AccessReader + access: [["SyndicateAgent"]] + +# Misc +- type: entity + parent: DoorElectronics + id: DoorElectronicsCentralCommand + suffix: CentralCommand, Locked + components: + - type: AccessReader + access: [["CentralCommand"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsExternal + suffix: External, Locked + components: + - type: AccessReader + access: [["External"]] - type: entity parent: DoorElectronics @@ -273,24 +297,8 @@ - type: entity parent: DoorElectronics - id: DoorElectronicsSyndicateAgent - suffix: SyndicateAgent, Locked + id: DoorElectronicsVault + suffix: Vault, Locked components: - type: AccessReader - access: [["SyndicateAgent"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsNukeop - suffix: Nukeop, Locked - components: - - type: AccessReader - access: [["NuclearOperative"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsRnDMed - suffix: Medical/Science, Locked - components: - - type: AccessReader - access: [["Research"], ["Medical"]] + access: [["Security"], ["Command"]] diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/signaller.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/signaller.yml index aa889341b1..db4406905a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/signaller.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/signaller.yml @@ -32,7 +32,13 @@ description: A handheld device used for remotely sending signals to objects within a small radius of about 50 meters. components: - type: Sprite - state: signaller2 + state: advanced + - type: Item + inhandVisuals: + left: + - state: advanced-inhand-left + right: + - state: advanced-inhand-right - type: WirelessNetworkConnection range: 50 - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml new file mode 100644 index 0000000000..e021281021 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml @@ -0,0 +1,71 @@ +- type: entity + parent: BaseItem + id: ChameleonProjector + name: chameleon projector + description: Holoparasite technology used to create a hard-light replica of any object around you. Disguise is destroyed when picked up or deactivated. + components: + - type: Sprite + sprite: /Textures/Objects/Devices/chameleon_projector.rsi + state: icon + - type: ChameleonProjector + whitelist: + components: + - Anchorable + - Item + blacklist: + components: + - ChameleonDisguise # no becoming kleiner + - InsideEntityStorage # no clark kent going in phone booth and becoming superman + - MindContainer # no + - Pda # PDAs currently make you invisible /!\ + polymorph: + entity: ChameleonDisguise + +- type: entity + noSpawn: true + parent: BaseMob + id: ChameleonDisguise + name: Urist McKleiner + components: + # this and the name/desc get replaced, this is just placeholder incase something goes wrong + - type: Sprite + sprite: /Textures/Mobs/Species/Human/parts.rsi + state: full + # so people can attempt to pick it up + - type: Item + # so it can take damage + # projector system sets health to be proportional to mass + - type: Damageable + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 1: Critical + 200: Dead + - type: MovementSpeedModifier + baseWalkSpeed: 1 # precise movement for the perfect spot + baseSprintSpeed: 5 # the jig is up + - type: ChameleonDisguise + +# actions +- type: entity + noSpawn: true + id: ActionDisguiseNoRot + name: Toggle Rotation + description: Use this to prevent your disguise from rotating, making it easier to hide in some scenarios. + components: + - type: InstantAction + icon: Interface/VerbIcons/refresh.svg.192dpi.png + event: !type:DisguiseToggleNoRotEvent + +- type: entity + noSpawn: true + id: ActionDisguiseAnchor + name: Toggle Anchored + description: For many objects you will want to be anchored to not be completely obvious. + components: + - type: InstantAction + icon: + sprite: Objects/Tools/wrench.rsi + state: icon + event: !type:DisguiseToggleAnchoredEvent diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index aad12a5025..e52f66d39b 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -35,6 +35,7 @@ - type: entity id: ImmovableRodDespawn + suffix: Despawn parent: ImmovableRod components: - type: TimedDespawn diff --git a/Resources/Prototypes/Entities/Objects/Materials/shards.yml b/Resources/Prototypes/Entities/Objects/Materials/shards.yml index 621a3b1c38..834a2e7ff0 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/shards.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/shards.yml @@ -17,7 +17,7 @@ shard2: "" shard3: "" - type: MeleeWeapon - attackRate: 1.5 + attackRate: 1 damage: types: Slash: 3.5 @@ -91,7 +91,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 4.5 - type: Tag tags: - GlassShard @@ -116,6 +116,10 @@ components: - type: Sprite color: "#96cdef" + - type: MeleeWeapon + damage: + types: + Slash: 4.5 - type: WelderRefinable refineResult: - SheetGlass1 @@ -123,7 +127,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 5.5 - type: Tag tags: - ReinforcedGlassShard @@ -148,6 +152,10 @@ components: - type: Sprite color: "#FF72E7" + - type: MeleeWeapon + damage: + types: + Slash: 5.5 - type: WelderRefinable refineResult: - SheetGlass1 @@ -155,7 +163,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 6.5 - type: Tag tags: - PlasmaGlassShard @@ -182,6 +190,11 @@ components: - type: Sprite color: "#8eff7a" + - type: MeleeWeapon + damage: + types: + Slash: 4.5 + Radiation: 2 - type: WelderRefinable refineResult: - SheetGlass1 @@ -189,8 +202,8 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 3 - Radiation: 2 + Piercing: 5 + Radiation: 2.5 - type: Tag tags: - UraniumGlassShard diff --git a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml index 2e19d0ba19..2d65f851d7 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml @@ -30,7 +30,7 @@ radius: 0.45 density: 25 mask: - - SmallMobMask + - ItemMask layer: - MachineLayer - type: EntityStorage diff --git a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml index c628d199a9..07bdee63cf 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml @@ -1,7 +1,7 @@ - type: entity id: CargoPallet name: cargo pallet - description: Designates valid items to sell to CentCom when a shuttle is recalled. + description: Common fixture of logistics and cargo. Subtle reminder where crates go during transport to avoid bruised shins. parent: BaseStructure components: - type: InteractionOutline @@ -58,17 +58,20 @@ - type: entity id: CargoPalletSell name: cargo selling pallet - description: Designates valid items to sell with a selling computer, or to CentCom when a shuttle is recalled. + description: Designates valid items to sell. parent: CargoPallet components: - type: CargoPallet palletType: sell - type: Sprite drawdepth: FloorTiles - layers: - - sprite: Structures/cargo_pallets.rsi - state: cargo_pallet_sell - + sprite: Structures/cargo_pallets.rsi + - type: Icon + sprite: Structures/cargo_pallets.rsi + state: cargo_pallet_sell + - type: IconSmooth + key: cargo_pallet_sell + base: cargo_pallet_sell_ - type: entity id: CargoPalletBuy @@ -80,7 +83,10 @@ palletType: buy - type: Sprite drawdepth: FloorTiles - layers: - - sprite: Structures/cargo_pallets.rsi - state: cargo_pallet_buy - + sprite: Structures/cargo_pallets.rsi + - type: Icon + sprite: Structures/cargo_pallets.rsi + state: cargo_pallet_buy + - type: IconSmooth + key: cargo_pallet_buy + base: cargo_pallet_buy_ diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index 2b232d643d..0a084dc246 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -213,6 +213,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/blood_tomato.rsi +- type: entity + parent: SeedBase + name: packet of killer tomato seeds + id: KillerTomatoSeeds + components: + - type: Seed + seedId: killerTomato + - type: Sprite + sprite: Objects/Specific/Hydroponics/tomatokiller.rsi + - type: entity parent: SeedBase name: packet of eggplant seeds diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index 0e19c03dee..64b3568adf 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -24,6 +24,8 @@ solution: spray - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: spray - type: UseDelay - type: Spray transferAmount: 10 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml index f802ae1c5c..9927d836ba 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml @@ -22,6 +22,8 @@ tags: - Cartridge - Trash + - type: UseDelay + delay: 0.5 - type: Tag tags: - TrashBag diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index c38868b399..e1716f0843 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -36,7 +36,7 @@ radius: 0.45 density: 50 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - MachineLayer - type: Icon diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index 027ff206f8..8034844a82 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -8,7 +8,6 @@ solutions: beaker: maxVol: 200 - canMix: true - type: Sprite sprite: Objects/Specific/Chemistry/jug.rsi layers: @@ -19,6 +18,8 @@ - type: Item size: Normal sprite: Objects/Specific/Chemistry/jug.rsi + - type: MixableSolution + solution: beaker - type: RefillableSolution solution: beaker - type: DrainableSolution @@ -31,6 +32,8 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: - key: enum.TransferAmountUiKey.Key diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index acfb65aa54..6c81fa9466 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -29,7 +29,8 @@ solutions: drink: # This solution name and target volume is hard-coded in ChemMasterComponent maxVol: 30 - canMix: true + - type: MixableSolution + solution: drink - type: RefillableSolution solution: drink - type: DrainableSolution diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml index c5de88d690..65f5fbb5d0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml @@ -35,7 +35,8 @@ solutions: beaker: maxVol: 30 - canMix: true + - type: MixableSolution + solution: beaker - type: RefillableSolution solution: beaker - type: DrainableSolution diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 9e68879fb4..fdf58dc484 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -25,7 +25,8 @@ solutions: beaker: maxVol: 50 - canMix: true + - type: MixableSolution + solution: beaker - type: FitsInDispenser solution: beaker - type: RefillableSolution @@ -40,6 +41,8 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: - key: enum.TransferAmountUiKey.Key @@ -117,7 +120,8 @@ solutions: beaker: maxVol: 50 - canMix: true + - type: MixableSolution + solution: beaker - type: FitsInDispenser solution: beaker - type: RefillableSolution @@ -200,7 +204,6 @@ solutions: beaker: maxVol: 100 - canMix: true - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 6 @@ -244,7 +247,6 @@ solutions: beaker: maxVol: 1000 - canMix: true - type: entity name: dropper diff --git a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml index 496fd231b8..77803a13ec 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml @@ -26,6 +26,8 @@ solutions: bucket: maxVol: 250 + - type: MixableSolution + solution: bucket - type: SolutionTransfer transferAmount: 100 maxTransferAmount: 100 @@ -49,6 +51,8 @@ solution: bucket - type: DrainableSolution solution: bucket + - type: SolutionItemStatus + solution: bucket - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 3 diff --git a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml index 977a8a931b..295412debc 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml @@ -128,11 +128,6 @@ sprite: Objects/Tools/Cowtools/cowelder.rsi - type: Tool speed: 0.05 - - type: Welder - litMeleeDamageBonus: - types: # When lit, negate standard melee damage and replace with heat - Heat: 0.5 - Blunt: -5 - type: entity name: milkalyzer diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 52c5dc8a9d..6f925139fb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: BaseItem id: BaseArrow abstract: true @@ -35,7 +35,6 @@ - type: Tag tags: - Arrow - - CannonRestrict - type: Projectile deleteOnCollide: false onlyCollideWhenShot: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index ae1f5df3c1..1251172946 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -22,7 +22,6 @@ selectedMode: SemiAuto availableModes: - SemiAuto - - FullAuto soundGunshot: path: /Audio/Effects/thunk.ogg soundEmpty: @@ -34,10 +33,7 @@ - type: Storage maxItemSize: Normal grid: - - 0,0,3,3 - blacklist: - tags: - - CannonRestrict + - 0,0,1,1 - type: Appearance - type: ItemMapper containerWhitelist: [gas_tank] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index 9cd1bb2940..afe4644517 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -263,7 +263,6 @@ tags: - CombatKnife - Knife - - CannonRestrict - type: Sprite sprite: Objects/Weapons/Melee/throwing_knife.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml index b0b166f6ce..9e187651ec 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml @@ -25,9 +25,9 @@ - type: ItemToggleMeleeWeapon activatedDamage: types: - Blunt: 0 + Shock: 5 - type: Stunbaton - energyPerUse: 70 + energyPerUse: 120 - type: MeleeWeapon wideAnimationRotation: -135 damage: @@ -36,10 +36,10 @@ angle: 60 animation: WeaponArcThrust - type: StaminaDamageOnHit - damage: 20 + damage: 35 sound: /Audio/Weapons/egloves.ogg - type: StaminaDamageOnCollide - damage: 20 + damage: 35 sound: /Audio/Weapons/egloves.ogg - type: Battery maxCharge: 360 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index 75b1b25916..7cc33b7155 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -18,7 +18,7 @@ path: /Audio/Weapons/bladeslice.ogg - type: Reflect enabled: true - reflectProb: .5 + reflectProb: .1 spread: 90 - type: Item size: Normal diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index 3cc202c6cb..5a337cb136 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -152,7 +152,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsFreezer ] + board: [ DoorElectronicsKitchenHydroponics ] - type: entity parent: AirlockFreezer @@ -251,7 +251,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsScience ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockCentralCommand @@ -616,7 +616,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsScience ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockCentralCommandGlass @@ -965,7 +965,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsRnDMed ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockMaint diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 4ca7df6482..8b2ce8ab56 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -64,6 +64,7 @@ containers: board: !type:Container - type: Weldable + fuel: 5 time: 3 - type: Airlock - type: NavMapDoor @@ -116,7 +117,7 @@ - type: RCDDeconstructable cost: 6 delay: 8 - fx: EffectRCDDeconstruct8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -154,7 +155,7 @@ - type: BlockWeather placement: mode: SnapgridCenter - + - type: entity id: AirlockRCDResistant parent: Airlock @@ -203,4 +204,4 @@ - type: Tag tags: - GlassAirlock - # This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor \ No newline at end of file + # This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index e9ea05a1c3..2a8cc0c526 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -55,6 +55,7 @@ denySound: path: /Audio/Machines/airlock_deny.ogg - type: Weldable + fuel: 10 time: 10 - type: Airlock - type: NavMapDoor diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 1ba867773b..a5b8a8dc74 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -82,6 +82,7 @@ openingAnimationTime: 0.6 closingAnimationTime: 0.6 - type: Weldable + fuel: 5 time: 3 - type: Firelock - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index d58273edcc..a6515b52c6 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -93,10 +93,11 @@ max: 4 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: AccessReader - type: ContainerFill containers: board: [ DoorElectronics ] + - type: AccessReader + containerAccessProvider: board - type: ContainerContainer containers: board: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml index 0c5b48df09..fcc47bc2e3 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml @@ -48,88 +48,99 @@ id: WindoorBarLocked suffix: Bar, Locked components: - - type: AccessReader - access: [["Bar"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBar ] - type: entity parent: Windoor id: WindoorBarKitchenLocked suffix: Bar&Kitchen, Locked components: - - type: AccessReader - access: [["Bar"], ["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBarKitchen ] - type: entity parent: Windoor id: WindoorCargoLocked suffix: Cargo, Locked components: - - type: AccessReader - access: [["Cargo"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCargo ] - type: entity parent: Windoor id: WindoorChapelLocked suffix: Chapel, Locked components: - - type: AccessReader - access: [["Chapel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChapel ] - type: entity parent: Windoor id: WindoorHydroponicsLocked suffix: Hydroponics, Locked components: - - type: AccessReader - access: [["Hydroponics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsHydroponics ] - type: entity parent: Windoor id: WindoorJanitorLocked suffix: Janitor, Locked components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorPlasma id: PlasmaWindoorJanitorLocked suffix: Janitor, Locked, Plasma components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: Windoor id: WindoorKitchenLocked suffix: Kitchen, Locked components: - - type: AccessReader - access: [["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchen ] - type: entity parent: Windoor id: WindoorKitchenHydroponicsLocked suffix: Kitchen&Hydroponics, Locked components: - - type: AccessReader - access: [["Kitchen"], ["Hydroponics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchenHydroponics ] - type: entity parent: Windoor id: WindoorServiceLocked suffix: Service, Locked components: - - type: AccessReader - access: [["Service"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsService ] - type: entity parent: Windoor id: WindoorTheatreLocked suffix: Theatre, Locked components: - - type: AccessReader - access: [["Theatre"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsTheatre ] # Secure @@ -138,221 +149,285 @@ id: WindoorSecureArmoryLocked suffix: Armory, Locked components: - - type: AccessReader - access: [["Armory"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsArmory ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureArmoryLocked + suffix: Armory, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsArmory ] - type: entity parent: WindoorSecure id: WindoorSecureAtmosphericsLocked suffix: Atmospherics, Locked components: - - type: AccessReader - access: [["Atmospherics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsAtmospherics ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureAtmosphericsLocked + suffix: Atmospherics, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsAtmospherics ] - type: entity parent: WindoorSecure id: WindoorSecureBarLocked suffix: Bar, Locked components: - - type: AccessReader - access: [["Bar"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBar ] - type: entity parent: WindoorSecureSecurityLocked id: WindoorSecureBrigLocked suffix: Brig, Locked components: - - type: AccessReader - access: [["Brig"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBrig ] - type: entity parent: WindoorSecure id: WindoorSecureCargoLocked suffix: Cargo, Locked components: - - type: AccessReader - access: [["Cargo"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCargo ] - type: entity parent: WindoorSecure id: WindoorSecureChapelLocked suffix: Chapel, Locked components: - - type: AccessReader - access: [["Chapel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChapel ] - type: entity parent: WindoorSecure id: WindoorSecureChemistryLocked suffix: Chemistry, Locked components: - - type: AccessReader - access: [["Chemistry"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChemistry ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureChemistryLocked suffix: Chemistry, Locked, Plasma components: - - type: AccessReader - access: [["Chemistry"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChemistry ] - type: entity parent: WindoorSecure id: WindoorSecureCentralCommandLocked suffix: Central Command, Locked components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureCentralCommandLocked suffix: Central Command, Locked, Plasma components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecureUranium id: UraniumWindoorSecureCentralCommandLocked suffix: Central Command, Locked, Uranium components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecure id: WindoorSecureCommandLocked suffix: Command, Locked components: - - type: AccessReader - access: [["Command"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCommand ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureCommandLocked + suffix: Command, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCommand ] - type: entity parent: WindoorSecure id: WindoorSecureDetectiveLocked suffix: Detective, Locked components: - - type: AccessReader - access: [["Detective"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsDetective ] - type: entity parent: WindoorSecure id: WindoorSecureEngineeringLocked suffix: Engineering, Locked components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureEngineeringLocked suffix: Engineering, Locked, Plasma components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecureUranium id: UraniumWindoorSecureEngineeringLocked suffix: Engineering, Locked, Uranium components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecure id: WindoorSecureExternalLocked suffix: External, Locked components: - - type: AccessReader - access: [["External"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsExternal ] - type: entity parent: WindoorSecure id: WindoorSecureJanitorLocked suffix: Janitor, Locked components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureJanitorLocked suffix: Janitor, Locked, Plasma components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorSecure id: WindoorSecureKitchenLocked suffix: Kitchen, Locked components: - - type: AccessReader - access: [["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchen ] - type: entity parent: WindoorSecureSecurityLocked id: WindoorSecureSecurityLawyerLocked suffix: Security/Lawyer, Locked components: - - type: AccessReader - access: [["Security"], ["Lawyer"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurityLawyer ] - type: entity parent: WindoorSecure id: WindoorSecureMedicalLocked suffix: Medical, Locked components: - - type: AccessReader - access: [["Medical"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsMedical ] - type: entity parent: WindoorSecure id: WindoorSecureSalvageLocked suffix: Salvage, Locked components: - - type: AccessReader - access: [["Salvage"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSalvage ] - type: entity parent: WindoorSecure id: WindoorSecureSecurityLocked suffix: Security, Locked components: - - type: AccessReader - access: [["Security"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurity ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureSecurityLocked + suffix: Security, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurity ] - type: entity parent: WindoorSecure id: WindoorSecureScienceLocked suffix: Science, Locked components: - - type: AccessReader - access: [["Research"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsResearch ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureScienceLocked suffix: Science, Locked, Plasma components: - - type: AccessReader - access: [["Research"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsResearch ] - type: entity parent: WindoorSecure id: WindoorSecureServiceLocked suffix: Service, Locked components: - - type: AccessReader - access: [["Service"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsService ] - type: entity parent: WindoorSecure id: WindoorSecureHeadOfPersonnelLocked suffix: HeadOfPersonnel, Locked components: - - type: AccessReader - access: [["HeadOfPersonnel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsHeadOfPersonnel ] diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index ef89088d1a..167b376214 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -360,7 +360,7 @@ radius: 5 energy: 0.6 offset: "0, 0.4" - color: "#FF4020" + color: "#7CFC00" mask: /Textures/Effects/LightMasks/double_cone.png - type: ApcPowerReceiver - type: ExtensionCableReceiver @@ -377,10 +377,10 @@ map: [ "enum.EmergencyLightVisualLayers.Base" ] - state: emergency_light_off map: [ "enum.EmergencyLightVisualLayers.LightOff" ] - color: "#FF4020" + color: "#7CFC00" - state: emergency_light_on map: [ "enum.EmergencyLightVisualLayers.LightOn" ] - color: "#FF4020" + color: "#7CFC00" shader: "unshaded" visible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 95bf2e1dd4..ef15f73b32 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -735,6 +735,9 @@ - map: ["computerLayerKeys"] state: tech_key - type: CargoOrderConsole + - type: ActiveRadio + channels: + - Supply - type: ActivatableUI key: enum.CargoConsoleUiKey.Orders - type: UserInterface diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index b00d6d8986..8b0c578763 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -43,6 +43,7 @@ powerLoad: 12000 needsPower: false #only turns on when scanning - type: ArtifactAnalyzer + - type: TraversalDistorter - type: ItemPlacer whitelist: components: @@ -72,62 +73,6 @@ True: { visible: true } False: { visible: false } -- type: entity - id: MachineTraversalDistorter - parent: [ BaseMachinePowered, ConstructibleMachine ] - name: traversal distorter - description: A machine capable of distorting the traversal of artifact nodes. - components: - - type: Sprite - noRot: true - sprite: Structures/Machines/traversal_distorter.rsi - drawdepth: FloorObjects - layers: - - state: icon - - state: unshaded - shader: unshaded - map: ["enum.PowerDeviceVisualLayers.Powered"] - - type: Physics - bodyType: Static - canCollide: true - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.35,-0.35,0.35,0.35" - density: 190 - mask: - - MachineMask - layer: - - Impassable - - MidImpassable - - LowImpassable - hard: False - - type: Transform - noRot: false - - type: TraversalDistorter - - type: ItemPlacer - # don't limit the number of artifacts that can be biased - maxEntities: 0 - whitelist: - components: - - Artifact - - type: PlaceableSurface - placeCentered: true - - type: Machine - board: TraversalDistorterMachineCircuitboard - - type: Appearance - - type: GuideHelp - guides: - - TraversalDistorter - - type: GenericVisualizer - visuals: - enum.PowerDeviceVisuals.Powered: - enum.PowerDeviceVisualLayers.Powered: - True: { visible: true } - False: { visible: false } - - type: entity id: MachineArtifactCrusher parent: [ ConstructibleMachine, BaseMachinePowered ] diff --git a/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml b/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml new file mode 100644 index 0000000000..76b8ddd36b --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml @@ -0,0 +1,59 @@ +- type: entity + id: Jukebox + name: jukebox + parent: [ BaseMachinePowered, ConstructibleMachine ] + description: A machine capable of playing a wide variety of tunes. Enjoyment not guaranteed. + components: + - type: Sprite + sprite: Structures/Machines/jukebox.rsi + layers: + - state: "off" + map: ["enum.JukeboxVisualLayers.Base"] + - type: Transform + anchored: true + - type: Jukebox + onState: on + offState: off + selectState: select + - type: Machine + board: JukeboxCircuitBoard + - type: Appearance + - type: ApcPowerReceiver + powerLoad: 100 + - type: ExtensionCableReceiver + - type: ActivatableUI + key: enum.JukeboxUiKey.Key + - type: ActivatableUIRequiresPower + - type: UserInterface + interfaces: + - key: enum.JukeboxUiKey.Key + type: JukeboxBoundUserInterface + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 75 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 2 + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.45,0.25,0.45" + mask: + - MachineMask + layer: + - MachineLayer + density: 200 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index c32f2992f9..25c6545286 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -121,6 +121,7 @@ - DrinkGlass - DrinkShotGlass - DrinkGlassCoupeShaped + - CustomDrinkJug - FoodPlate - FoodPlateSmall - FoodPlatePlastic @@ -154,6 +155,7 @@ - APCElectronics - SMESMachineCircuitboard - SubstationMachineCircuitboard + - WallmountSubstationElectronics - CellRechargerCircuitboard - BorgChargerCircuitboard - WeaponCapacitorRechargerCircuitboard @@ -441,11 +443,11 @@ - AnomalySynchronizerCircuitboard - APECircuitboard - ArtifactAnalyzerMachineCircuitboard - - TraversalDistorterMachineCircuitboard - ArtifactCrusherMachineCircuitboard - TelecomServerCircuitboard - MassMediaCircuitboard - ReagentGrinderIndustrialMachineCircuitboard + - JukeboxCircuitBoard - type: MaterialStorage whitelist: tags: @@ -955,7 +957,8 @@ - ClothingOuterWinterCE - ClothingOuterWinterCMO - ClothingOuterWinterHoP - - ClothingOuterWinterHoS + - ClothingOuterWinterHoSUnarmored + - ClothingOuterWinterWardenUnarmored - ClothingOuterWinterQM - ClothingOuterWinterRD - ClothingNeckMantleCap diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index 6e4e339ae6..e046fb831a 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -457,7 +457,8 @@ solutions: tank: maxVol: 400 - canMix: true + - type: MixableSolution + solution: tank - type: DrainableSolution solution: tank - type: ExaminableSolution diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index 4bd0bec5ea..347b18ecae 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -241,6 +241,16 @@ - type: Battery maxCharge: 2000000 startingCharge: 2000000 + - type: ContainerFill + containers: + board: [ WallmountSubstationElectronics ] + capacitor: [ CapacitorStockPart ] + powercell: [ PowerCellSmall ] + - type: ContainerContainer + containers: + board: !type:Container + capacitor: !type:Container + powercell: !type:Container # Construction Frame - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index 95580292d9..2d84541231 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -34,7 +34,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 50 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - MachineLayer - type: EntityStorage diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 8d8eec9538..171b664c83 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -356,7 +356,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 135 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - LargeMobLayer - type: Construction @@ -413,7 +413,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 80 mask: - - LargeMobMask + - CrateMask layer: - LargeMobLayer - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index c4ee507395..4439c11d68 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -23,7 +23,7 @@ bounds: "-0.49,-0.49,0.49,0.49" density: 100 mask: - - TabletopMachineMask + - Impassable layer: - MidImpassable - type: Damageable @@ -61,7 +61,7 @@ bounds: "-0.49,-0.49,0.49,0.49" density: 100 mask: - - TabletopMachineMask + - Impassable layer: - Opaque - MidImpassable diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index d3084e43b6..32cfd69cb0 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -402,7 +402,7 @@ - type: StationEvent earliestStart: 50 minimumPlayers: 15 - weight: 5 + weight: 3 duration: 1 - type: ZombieRule minStartDelay: 0 #let them know immediately diff --git a/Resources/Prototypes/Guidebook/science.yml b/Resources/Prototypes/Guidebook/science.yml index 4382696df8..2c3018dcee 100644 --- a/Resources/Prototypes/Guidebook/science.yml +++ b/Resources/Prototypes/Guidebook/science.yml @@ -38,7 +38,6 @@ text: "/ServerInfo/Guidebook/Science/Xenoarchaeology.xml" children: - ArtifactReports - - TraversalDistorter - type: guideEntry id: Robotics @@ -52,11 +51,6 @@ name: guide-entry-artifact-reports text: "/ServerInfo/Guidebook/Science/ArtifactReports.xml" -- type: guideEntry - id: TraversalDistorter - name: guide-entry-traversal-distorter - text: "/ServerInfo/Guidebook/Science/TraversalDistorter.xml" - - type: guideEntry id: Cyborgs name: guide-entry-cyborgs diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 71b20440f5..053300b986 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -479,8 +479,10 @@ packetPrototype: BloodTomatoSeeds productPrototypes: - FoodBloodTomato + mutationPrototypes: + - killerTomato harvestRepeat: Repeat - lifespan: 25 + lifespan: 60 maturation: 8 production: 6 yield: 2 @@ -500,6 +502,37 @@ Max: 4 PotencyDivisor: 25 +- type: seed + id: killerTomato + name: seeds-killertomato-name + noun: seeds-noun-seeds + displayName: seeds-killertomato-display-name + plantRsi: Objects/Specific/Hydroponics/tomatokiller.rsi + packetPrototype: KillerTomatoSeeds + productPrototypes: + - MobTomatoKiller + harvestRepeat: Repeat + lifespan: 25 + maturation: 15 + production: 6 + yield: 2 + potency: 10 + waterConsumption: 0.60 + nutrientConsumption: 0.70 + idealLight: 8 + idealHeat: 298 + growthStages: 2 + splatPrototype: PuddleSplatter + chemicals: + Blood: + Min: 1 + Max: 10 + PotencyDivisor: 10 + JuiceTomato: + Min: 1 + Max: 4 + PotencyDivisor: 25 + - type: seed id: eggplant name: seeds-eggplant-name @@ -865,7 +898,7 @@ plantRsi: Objects/Specific/Hydroponics/chili.rsi packetPrototype: ChiliSeeds productPrototypes: - - FoodChili + - FoodChiliPepper mutationPrototypes: - chilly harvestRepeat: Repeat @@ -898,7 +931,7 @@ plantRsi: Objects/Specific/Hydroponics/chilly.rsi packetPrototype: ChillySeeds productPrototypes: - - FoodChilly + - FoodChillyPepper harvestRepeat: Repeat lifespan: 25 maturation: 6 diff --git a/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml index 6252ad8e99..84806a051a 100644 --- a/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml @@ -11,6 +11,7 @@ displayName: ID - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml index daf0161b7c..c0da3567c2 100644 --- a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml @@ -55,6 +55,7 @@ displayName: Head - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -64,6 +65,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -72,6 +74,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 @@ -81,6 +84,7 @@ - name: pocket4 slotTexture: web + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -89,6 +93,7 @@ displayName: Pocket 4 - name: pocket3 slotTexture: web + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -104,6 +109,7 @@ displayName: Suit - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -114,6 +120,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 diff --git a/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml index 41fa7dc375..a672e403b3 100644 --- a/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml @@ -55,6 +55,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -65,6 +66,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -84,6 +86,7 @@ displayName: Suit Storage - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml index 4bbd18b136..5d909264fe 100644 --- a/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml @@ -56,6 +56,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -66,6 +67,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -85,6 +87,7 @@ displayName: Suit Storage - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -94,6 +97,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -102,6 +106,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml index 57dce506ea..7be9c75015 100644 --- a/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml @@ -3,6 +3,7 @@ slots: - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -12,6 +13,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 diff --git a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml index 574ecca35f..2070f646b7 100644 --- a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml @@ -62,6 +62,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -72,6 +73,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -91,6 +93,7 @@ displayName: Suit Storage - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -100,6 +103,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -108,6 +112,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml index fb7dee1ec2..5f81cdebc6 100644 --- a/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml @@ -35,6 +35,7 @@ - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -47,6 +48,7 @@ - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -60,6 +62,7 @@ slots: - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 diff --git a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml index 5af23dabac..bdd5100084 100644 --- a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml @@ -29,6 +29,7 @@ displayName: Jumpsuit - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml index 614930968d..1964acbb02 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml @@ -27,6 +27,34 @@ equipment: jumpsuit: ClothingUniformJumpskirtJanitor +# Gloves +- type: loadout + id: JanitorRubberGloves + equipment: JanitorRubberGloves + +- type: startingGear + id: JanitorRubberGloves + equipment: + gloves: ClothingHandsGlovesJanitor + +- type: loadout + id: OrangeGloves + equipment: OrangeGloves + +- type: startingGear + id: OrangeGloves + equipment: + gloves: ClothingHandsGlovesColorOrange + +- type: loadout + id: PurpleGloves + equipment: PurpleGloves + +- type: startingGear + id: PurpleGloves + equipment: + gloves: ClothingHandsGlovesColorPurple + # Outer clothing - type: loadout id: JanitorWintercoat @@ -35,4 +63,4 @@ - type: startingGear id: JanitorWintercoat equipment: - outerClothing: ClothingOuterWinterJani \ No newline at end of file + outerClothing: ClothingOuterWinterJani diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml index f0e69ca1ff..5c09b1299f 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml @@ -21,7 +21,8 @@ equipment: mask: ClothingMaskGas -# Jumpsuit +# Jumpsuits +# Grey - type: loadout id: GreyJumpsuit equipment: GreyJumpsuit @@ -40,6 +41,20 @@ equipment: jumpsuit: ClothingUniformJumpskirtColorGrey +# Rainbow +- type: loadout + id: RainbowJumpsuit + equipment: RainbowJumpsuit + effects: + - !type:GroupLoadoutEffect + proto: GreyTider + +- type: startingGear + id: RainbowJumpsuit + equipment: + jumpsuit: ClothingUniformColorRainbow + +# Ancient - type: loadout id: AncientJumpsuit equipment: AncientJumpsuit @@ -120,4 +135,4 @@ - type: startingGear id: WinterBoots equipment: - shoes: ClothingShoesBootsWinter \ No newline at end of file + shoes: ClothingShoesBootsWinter diff --git a/Resources/Prototypes/Loadouts/Jobs/Engineering/station_engineer.yml b/Resources/Prototypes/Loadouts/Jobs/Engineering/station_engineer.yml index faf03f0547..7104598b3a 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Engineering/station_engineer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Engineering/station_engineer.yml @@ -20,14 +20,32 @@ # Head - type: loadout - id: StationEngineerHead - equipment: StationEngineerHead + id: StationEngineerHardhatYellow + equipment: StationEngineerHardhatYellow - type: startingGear - id: StationEngineerHead + id: StationEngineerHardhatYellow equipment: head: ClothingHeadHatHardhatYellow +- type: loadout + id: StationEngineerHardhatOrange + equipment: StationEngineerHardhatOrange + +- type: startingGear + id: StationEngineerHardhatOrange + equipment: + head: ClothingHeadHatHardhatOrange + +- type: loadout + id: StationEngineerHardhatRed + equipment: StationEngineerHardhatRed + +- type: startingGear + id: StationEngineerHardhatRed + equipment: + head: ClothingHeadHatHardhatRed + - type: loadout id: SeniorEngineerBeret equipment: EngineeringBeret diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/chemist.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/chemist.yml index aaa7b64cbb..9b05120b1a 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/chemist.yml @@ -62,4 +62,5 @@ - type: startingGear id: ChemistWintercoat equipment: - outerClothing: ClothingOuterWinterChem \ No newline at end of file + outerClothing: ClothingOuterWinterChem + diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/chief_medical_officer.yml index d128d72379..4a0c011f43 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/chief_medical_officer.yml @@ -91,4 +91,5 @@ - type: startingGear id: ChiefMedicalOfficerWintercoat equipment: - outerClothing: ClothingOuterWinterCMO \ No newline at end of file + outerClothing: ClothingOuterWinterCMO + diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml index 919d9d288c..7e4732cd03 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml @@ -68,6 +68,15 @@ equipment: head: ClothingHeadHatSurgcapPurple +- type: loadout + id: NurseHat + equipment: NurseHat + +- type: startingGear + id: NurseHat + equipment: + head: ClothingHeadNurseHat + # Jumpsuit - type: loadout id: MedicalDoctorJumpsuit @@ -219,3 +228,23 @@ id: SeniorPhysicianPDA equipment: id: SeniorPhysicianPDA + +# Gloves +- type: loadout + id: NitrileGloves + equipment: NitrileGloves + +- type: startingGear + id: NitrileGloves + equipment: + gloves: ClothingHandsGlovesNitrile + +#Masks +- type: loadout + id: SterileMask + equipment: SterileMask + +- type: startingGear + id: SterileMask + equipment: + mask: ClothingMaskSterile diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/paramedic.yml index 4630a0363f..f393109eea 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/paramedic.yml @@ -82,4 +82,5 @@ - type: startingGear id: BlueShoes equipment: - shoes: ClothingShoesColorBlue \ No newline at end of file + shoes: ClothingShoesColorBlue + diff --git a/Resources/Prototypes/Loadouts/Jobs/Science/scientist.yml b/Resources/Prototypes/Loadouts/Jobs/Science/scientist.yml index f263d7fdb9..c03ae4cfbc 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Science/scientist.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Science/scientist.yml @@ -22,6 +22,24 @@ equipment: head: ClothingHeadHatBeretRND +- type: loadout + id: RoboticistCap + equipment: RoboticistCap + +- type: startingGear + id: RoboticistCap + equipment: + head: ClothingHeadHatCorpsoft + +- type: loadout + id: SkullBandana + equipment: SkullBandana + +- type: startingGear + id: SkullBandana + equipment: + head: ClothingHeadBandSkull + # Neck - type: loadout @@ -52,6 +70,24 @@ equipment: jumpsuit: ClothingUniformJumpskirtScientist +- type: loadout + id: RoboticistJumpsuit + equipment: RoboticistJumpsuit + +- type: startingGear + id: RoboticistJumpsuit + equipment: + jumpsuit: ClothingUniformJumpsuitRoboticist + +- type: loadout + id: RoboticistJumpskirt + equipment: RoboticistJumpskirt + +- type: startingGear + id: RoboticistJumpskirt + equipment: + jumpsuit: ClothingUniformJumpskirtRoboticist + - type: loadout id: SeniorResearcherJumpsuit equipment: SeniorResearcherJumpsuit @@ -132,6 +168,24 @@ equipment: outerClothing: ClothingOuterWinterSci +- type: loadout + id: RoboticistLabCoat + equipment: RoboticistLabCoat + +- type: startingGear + id: RoboticistLabCoat + equipment: + outerClothing: ClothingOuterCoatRobo + +- type: loadout + id: RoboticistWintercoat + equipment: RoboticistWintercoat + +- type: startingGear + id: RoboticistWintercoat + equipment: + outerClothing: ClothingOuterWinterRobo + - type: loadout id: SeniorResearcherLabCoat equipment: SeniorResearcherLabCoat @@ -144,6 +198,25 @@ equipment: outerClothing: ClothingOuterCoatLabSeniorResearcher +# Gloves +- type: loadout + id: LatexGloves + equipment: LatexGloves + +- type: startingGear + id: LatexGloves + equipment: + gloves: ClothingHandsGlovesLatex + +- type: loadout + id: RobohandsGloves + equipment: RobohandsGloves + +- type: startingGear + id: RobohandsGloves + equipment: + gloves: ClothingHandsGlovesRobohands + # Shoes - type: loadout id: ScienceWinterBoots diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml b/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml index c102277e45..c16d24e5b8 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/detective.yml @@ -109,4 +109,4 @@ - type: startingGear id: DetectiveCoat equipment: - outerClothing: ClothingOuterCoatDetective \ No newline at end of file + outerClothing: ClothingOuterCoatDetectiveLoadout \ No newline at end of file diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml index 40fc491684..b2b9e1e0c1 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml @@ -60,6 +60,24 @@ equipment: jumpsuit: ClothingUniformJumpskirtSec +- type: loadout + id: SecurityJumpsuitGrey + equipment: SecurityJumpsuitGrey + +- type: startingGear + id: SecurityJumpsuitGrey + equipment: + jumpsuit: ClothingUniformJumpsuitSecGrey + +- type: loadout + id: SecurityJumpskirtGrey + equipment: SecurityJumpskirtGrey + +- type: startingGear + id: SecurityJumpskirtGrey + equipment: + jumpsuit: ClothingUniformJumpskirtSecGrey + - type: loadout id: SeniorOfficerJumpsuit equipment: SeniorOfficerJumpsuit @@ -112,6 +130,25 @@ equipment: back: ClothingBackpackDuffelSecurityFilled +# Belt +- type: loadout + id: SecurityBelt + equipment: SecurityBelt + +- type: startingGear + id: SecurityBelt + equipment: + belt: ClothingBeltSecurityFilled + +- type: loadout + id: SecurityWebbing + equipment: SecurityWebbing + +- type: startingGear + id: SecurityWebbing + equipment: + belt: ClothingBeltSecurityWebbingFilled + # Outerclothing - type: loadout id: ArmorVest diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index a3322efdae..a50e9ceb71 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -105,6 +105,7 @@ loadouts: - GreyJumpsuit - GreyJumpskirt + - RainbowJumpsuit - AncientJumpsuit - type: loadoutGroup @@ -295,6 +296,15 @@ - JanitorJumpsuit - JanitorJumpskirt +- type: loadoutGroup + id: JanitorGloves + name: loadout-group-janitor-gloves + minLimit: 0 + loadouts: + - JanitorRubberGloves + - OrangeGloves + - PurpleGloves + - type: loadoutGroup id: JanitorOuterClothing name: loadout-group-janitor-outerclothing @@ -592,7 +602,9 @@ id: StationEngineerHead name: loadout-group-station-engineer-head loadouts: - - StationEngineerHead + - StationEngineerHardhatYellow + - StationEngineerHardhatOrange + - StationEngineerHardhatRed - SeniorEngineerBeret - type: loadoutGroup @@ -716,6 +728,8 @@ name: loadout-group-scientist-head minLimit: 0 loadouts: + - RoboticistCap + - SkullBandana - ScientificBeret - type: loadoutGroup @@ -731,6 +745,8 @@ loadouts: - ScientistJumpsuit - ScientistJumpskirt + - RoboticistJumpsuit + - RoboticistJumpskirt - SeniorResearcherJumpsuit - SeniorResearcherJumpskirt @@ -750,6 +766,8 @@ - RegularLabCoat - ScienceLabCoat - ScienceWintercoat + - RoboticistLabCoat + - RoboticistWintercoat - SeniorResearcherLabCoat - type: loadoutGroup @@ -757,8 +775,18 @@ name: loadout-group-scientist-shoes loadouts: - WhiteShoes + - BlackShoes - ScienceWinterBoots +- type: loadoutGroup + id: ScientistGloves + name: loadout-group-scientist-gloves + minLimit: 0 + loadouts: + - LatexGloves + - PurpleGloves + - RobohandsGloves + - type: loadoutGroup id: ScientistPDA name: loadout-group-scientist-id @@ -845,6 +873,8 @@ loadouts: - SecurityJumpsuit - SecurityJumpskirt + - SecurityJumpsuitGrey + - SecurityJumpskirtGrey - SeniorOfficerJumpsuit - SeniorOfficerJumpskirt @@ -856,6 +886,13 @@ - SecuritySatchel - SecurityDuffel +- type: loadoutGroup + id: SecurityBelt + name: loadout-group-security-belt + loadouts: + - SecurityBelt + - SecurityWebbing + - type: loadoutGroup id: SecurityOuterClothing name: loadout-group-security-outerclothing @@ -981,6 +1018,7 @@ - BlueSurgeryCap - GreenSurgeryCap - PurpleSurgeryCap + - NurseHat - type: loadoutGroup id: MedicalDoctorJumpsuit @@ -1025,6 +1063,21 @@ - MedicalDoctorPDA - SeniorPhysicianPDA +- type: loadoutGroup + id: MedicalGloves + name: loadout-group-medical-gloves + minLimit: 0 + loadouts: + - LatexGloves + - NitrileGloves + +- type: loadoutGroup + id: MedicalMask + name: loadout-group-medical-mask + minLimit: 0 + loadouts: + - SterileMask + - type: loadoutGroup id: MedicalInternJumpsuit name: loadout-group-medical-intern-jumpsuit diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index de8cd979d5..c5fb042d0c 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -88,6 +88,7 @@ groups: - JanitorHead - JanitorJumpsuit + - JanitorGloves - CommonBackpack - JanitorOuterClothing - Trinkets @@ -206,6 +207,7 @@ - ResearchDirectorJumpsuit - ResearchDirectorBackpack - ResearchDirectorOuterClothing + - ScientistGloves - ResearchDirectorShoes - Trinkets @@ -217,6 +219,7 @@ - ScientistJumpsuit - ScientistBackpack - ScientistOuterClothing + - ScientistGloves - ScientistShoes - ScientistPDA - Trinkets @@ -236,6 +239,7 @@ - HeadofSecurityNeck - HeadofSecurityJumpsuit - SecurityBackpack + - SecurityBelt - HeadofSecurityOuterClothing - SecurityShoes - Trinkets @@ -246,6 +250,7 @@ - WardenHead - WardenJumpsuit - SecurityBackpack + - SecurityBelt - WardenOuterClothing - SecurityShoes - Trinkets @@ -259,6 +264,7 @@ - SecurityOuterClothing - SecurityShoes - SecurityPDA + - SecurityBelt - Trinkets - type: roleLoadout @@ -284,7 +290,9 @@ id: JobChiefMedicalOfficer groups: - ChiefMedicalOfficerHead + - MedicalMask - ChiefMedicalOfficerJumpsuit + - MedicalGloves - ChiefMedicalOfficerBackpack - ChiefMedicalOfficerOuterClothing - ChiefMedicalOfficerNeck @@ -295,7 +303,9 @@ id: JobMedicalDoctor groups: - MedicalDoctorHead + - MedicalMask - MedicalDoctorJumpsuit + - MedicalGloves - MedicalBackpack - MedicalDoctorOuterClothing - MedicalShoes @@ -312,7 +322,9 @@ - type: roleLoadout id: JobChemist groups: + - MedicalMask - ChemistJumpsuit + - MedicalGloves - ChemistBackpack - ChemistOuterClothing - MedicalShoes @@ -322,7 +334,9 @@ id: JobParamedic groups: - ParamedicHead + - MedicalMask - ParamedicJumpsuit + - MedicalGloves - ParamedicBackpack - ParamedicOuterClothing - ParamedicShoes diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 55e7a1965c..a1e72a7683 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -10,6 +10,7 @@ # - Fland # - Marathon # - Meta +# - Oasis # - Omega # - Origin # - Saltern diff --git a/Resources/Prototypes/Maps/europa.yml b/Resources/Prototypes/Maps/europa.yml index fb9c15cad5..271fa7d0d3 100644 --- a/Resources/Prototypes/Maps/europa.yml +++ b/Resources/Prototypes/Maps/europa.yml @@ -8,6 +8,8 @@ # Europa: # stationProto: StandardNanotrasenStation # components: +# - type: StationBiome +# biome: Snow # - type: StationRandomTransform # enableStationRotation: false # maxStationOffset: null diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml new file mode 100644 index 0000000000..c79225823b --- /dev/null +++ b/Resources/Prototypes/Maps/oasis.yml @@ -0,0 +1,64 @@ +- type: gameMap + id: Oasis + mapName: 'Oasis' + mapPath: /Maps/oasis.yml + minPlayers: 70 + stations: + Oasis: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Oasis {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'B' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 4, 4 ] + Chef: [ 2, 2 ] + Janitor: [ 3, 3 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + Zookeeper: [ 1, 1 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 5, 5 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 3, 3 ] + MedicalDoctor: [ 6, 6 ] + Paramedic: [ 2, 2 ] + MedicalIntern: [ 4, 4 ] + Psychologist: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + ResearchAssistant: [ 6, 6 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 8, 8 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 3, 3 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 4, 4 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] \ No newline at end of file diff --git a/Resources/Prototypes/NPCs/mob.yml b/Resources/Prototypes/NPCs/mob.yml index 740f7ca576..b0e1c8ae9b 100644 --- a/Resources/Prototypes/NPCs/mob.yml +++ b/Resources/Prototypes/NPCs/mob.yml @@ -77,3 +77,16 @@ - tasks: - !type:HTNCompoundTask task: IdleCompound + +- type: htnCompound + id: KillerTomatoCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: MeleeCombatCompound + - tasks: + - !type:HTNCompoundTask + task: FollowCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index 6dc2ed46e7..14397535d4 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -191,6 +191,9 @@ components: - type: StealCondition stealGroup: ClothingOuterHardsuitRd + - type: Objective + # This item must be worn or stored in a slowing duffelbag, very hard to hide. + difficulty: 3 - type: entity noSpawn: true diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 44eba0f848..ef02161165 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -39,6 +39,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.6 - type: reagent id: Beer @@ -55,6 +56,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.6 - type: reagent id: BlueCuracao @@ -458,6 +460,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.3 + fizziness: 0.8 # Mixed Alcohol @@ -675,6 +678,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.15 + fizziness: 0.3 - type: reagent id: BlackRussian @@ -814,6 +818,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.2 - type: reagent id: DemonsBlood @@ -829,6 +834,7 @@ metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.3 - type: reagent id: DevilsKiss @@ -916,6 +922,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.15 - type: reagent id: GargleBlaster @@ -962,6 +969,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.4 # A little high, but it has fizz in the name - type: reagent id: GinTonic @@ -985,6 +993,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.4 - type: reagent id: Gildlager @@ -1062,6 +1071,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.6 - type: reagent id: IrishCarBomb @@ -1199,6 +1209,7 @@ metamorphicMaxFillLevels: 2 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.7 - type: reagent id: Margarita @@ -1252,6 +1263,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.4 - type: reagent id: Mojito @@ -1267,6 +1279,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.3 - type: reagent id: Moonshine @@ -1371,6 +1384,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.4 - type: reagent id: PinaColada @@ -1500,6 +1514,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.3 - type: reagent id: SuiDream @@ -1515,6 +1530,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.2 - type: reagent id: SyndicateBomb @@ -1530,6 +1546,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.6 - type: reagent id: TequilaSunrise @@ -1568,6 +1585,7 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.2 - type: reagent id: ThreeMileIsland @@ -1655,6 +1673,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.4 - type: reagent id: WhiskeyCola @@ -1678,6 +1697,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.3 - type: reagent id: WhiskeySoda @@ -1701,6 +1721,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.4 - type: reagent id: WhiteGilgamesh @@ -1718,6 +1739,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.15 + fizziness: 0.5 - type: reagent id: WhiteRussian diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml b/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml index 9984b4c0cf..19a5e1bf8f 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml @@ -40,6 +40,7 @@ collection: FootstepSticky params: volume: 6 + fizziness: 0.5 - type: reagent id: BaseAlcohol @@ -75,4 +76,4 @@ footstepSound: collection: FootstepSticky params: - volume: 6 \ No newline at end of file + volume: 6 diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 5c09b3c909..71de67adb9 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -322,6 +322,7 @@ damage: types: Poison: 1 + fizziness: 0.5 - type: reagent id: SodaWater @@ -331,6 +332,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: fizzy color: "#619494" + fizziness: 0.8 - type: reagent id: SoyLatte @@ -373,6 +375,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: tonicwater color: "#0064C8" + fizziness: 0.4 - type: reagent id: Water @@ -467,6 +470,7 @@ effects: - !type:SatiateThirst factor: 1 + fizziness: 0.3 - type: reagent id: Posca @@ -491,6 +495,7 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.3 - type: reagent id: Rewriter @@ -506,6 +511,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.3 - type: reagent id: Mopwata diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml index ba5adc4f2a..3dda5b5329 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml @@ -59,6 +59,7 @@ - !type:AdjustReagent reagent: Theobromine amount: 0.05 + fizziness: 0.4 - type: reagent id: GrapeSoda @@ -84,6 +85,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0 - type: reagent id: LemonLime @@ -102,6 +104,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: pwrgamesoda color: "#9385bf" + fizziness: 0.9 # gamers crave the fizz - type: reagent id: RootBeer @@ -132,6 +135,7 @@ metamorphicMaxFillLevels: 7 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.4 - type: reagent id: SolDry diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index bd960b460a..5df80543a7 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -1041,6 +1041,10 @@ flavor: holy color: "#91C3F7" metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 3 Medicine: effects: - !type:HealthChange @@ -1054,6 +1058,16 @@ Heat: -0.2 Shock: -0.2 Cold: -0.2 + reactiveEffects: + Extinguish: + methods: [ Touch ] + effects: + - !type:ExtinguishReaction + plantMetabolism: + - !type:PlantAdjustWater + amount: 1 + tileReactions: + - !type:ExtinguishTileReaction { } - type: reagent id: Pyrazine diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 11a9fd00ae..8c91c5f226 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -481,7 +481,6 @@ - !type:OrganType type: Animal shouldHave: false - reagent: Protein type: Local visualType: MediumCaution messages: [ "generic-reagent-effect-sick" ] diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml index 381871f94a..7e4087b20a 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml @@ -26,7 +26,13 @@ steps: - material: Cable amount: 5 - doAfter: 2 + doAfter: 0.5 + - material: CableMV + amount: 5 + doAfter: 0.5 + - material: CableHV + amount: 5 + doAfter: 0.5 - tool: Screwing doAfter: 2 @@ -41,12 +47,34 @@ icon: sprite: "Objects/Misc/module.rsi" state: "charger_APC" - doAfter: 1 + doAfter: 0.5 + - anyTags: + - PowerCell + - PowerCellSmall + store: powercell + name: a powercell + icon: + sprite: "Objects/Power/power_cells.rsi" + state: "medium" + doAfter: 0.5 + - tag: CapacitorStockPart + name: a capacitor + store: capacitor + icon: + sprite: "Objects/Misc/stock_parts.rsi" + state: "capacitor" + doAfter: 0.5 - to: frame completed: - !type:GivePrototype prototype: CableApcStack1 amount: 5 + - !type:GivePrototype + prototype: CableMVStack1 + amount: 5 + - !type:GivePrototype + prototype: CableHVStack1 + amount: 5 steps: - tool: Cutting doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index a5620fd8ef..47a2841b6d 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -135,7 +135,7 @@ FoodBreadBun: 1 FoodMeat: 2 FoodCheeseSlice: 2 - FoodChili: 1 + FoodChiliPepper: 1 FoodCabbage: 1 CrayonGreen: 1 Flare: 1 @@ -177,7 +177,7 @@ solids: FoodBreadBun: 1 FoodMeat: 1 - FoodChili: 3 + FoodChiliPepper: 3 - type: microwaveMealRecipe id: RecipeGhostBurger @@ -675,7 +675,7 @@ solids: FoodRiceBoiled: 1 FoodMeatCutlet: 3 - FoodChili: 2 + FoodChiliPepper: 2 - type: microwaveMealRecipe id: RecipeEggRice @@ -894,7 +894,7 @@ solids: FoodBowlBig: 1 FoodBungo: 2 - FoodChili: 1 + FoodChiliPepper: 1 #Pies @@ -965,7 +965,7 @@ time: 15 solids: FoodDoughPie: 1 - FoodChilly: 3 + FoodChillyPepper: 3 FoodPlateTin: 1 - type: microwaveMealRecipe @@ -1063,7 +1063,7 @@ solids: FoodDough: 1 FoodCheeseSlice: 2 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatFish: 2 - type: microwaveMealRecipe @@ -1504,7 +1504,7 @@ time: 20 solids: FoodBowlBig: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodOnionSlice: 1 FoodTomato: 1 @@ -1537,7 +1537,7 @@ time: 30 solids: FoodBowlBig: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodOnionSlice: 1 FoodTomato: 1 @@ -1552,7 +1552,7 @@ #reagents: #blackpepper: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodCheeseSlice: 2 - type: microwaveMealRecipe @@ -1572,7 +1572,7 @@ result: FoodMealEnchiladas time: 20 solids: - FoodChili: 2 + FoodChiliPepper: 2 FoodMeatCutlet: 1 FoodCorn: 1 @@ -1740,7 +1740,7 @@ result: FoodMeatHawaiianKebab time: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodPineappleSlice: 1 FoodKebabSkewer: 1 @@ -1751,7 +1751,7 @@ result: FoodMeatFiestaKebab time: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodCorn: 1 FoodMeatCutlet: 1 FoodTomato: 1 diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml index fa006a938b..024a7c5876 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml @@ -8,24 +8,23 @@ steps: - material: MetalRod amount: 1 - - material: Cable - amount: 15 - - tag: DrinkSpaceGlue - name: Drink Space Glue - icon: - sprite: Objects/Consumable/Drinks/glue-tube.rsi - state: icon - tag: PowerCellSmall name: Power Cell Small icon: sprite: Objects/Power/power_cells.rsi state: small - - tag: CapacitorStockPart - name: Capacitor Stock Part + - tag: Handcuffs icon: - sprite: Objects/Misc/stock_parts.rsi - state: capacitor - doAfter: 20 + sprite: Objects/Misc/cablecuffs.rsi + state: cuff + color: red + name: cuffs + - tag: Igniter + name: Igniter + icon: + sprite: Objects/Devices/igniter.rsi + state: icon + doAfter: 15 - node: msstunprod entity: Stunprod diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml index 19b2fbb883..729f20e979 100644 --- a/Resources/Prototypes/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml @@ -706,8 +706,16 @@ Durathread: 300 - type: latheRecipe - id: ClothingOuterWinterHoS - result: ClothingOuterWinterHoS + id: ClothingOuterWinterHoSUnarmored + result: ClothingOuterWinterHoSUnarmored + completetime: 3.2 + materials: + Cloth: 500 + Durathread: 300 + +- type: latheRecipe + id: ClothingOuterWinterWardenUnarmored + result: ClothingOuterWinterWardenUnarmored completetime: 3.2 materials: Cloth: 500 diff --git a/Resources/Prototypes/Recipes/Lathes/cooking.yml b/Resources/Prototypes/Recipes/Lathes/cooking.yml index a8836ff392..577d8299da 100644 --- a/Resources/Prototypes/Recipes/Lathes/cooking.yml +++ b/Resources/Prototypes/Recipes/Lathes/cooking.yml @@ -49,6 +49,13 @@ materials: Glass: 100 +- type: latheRecipe + id: CustomDrinkJug + result: CustomDrinkJug + completetime: 2 + materials: + Plastic: 200 + - type: latheRecipe id: FoodPlate result: FoodPlate diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 29ba973f10..a6b7f942c9 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -328,16 +328,6 @@ Glass: 900 Gold: 100 -- type: latheRecipe - id: TraversalDistorterMachineCircuitboard - result: TraversalDistorterMachineCircuitboard - category: Circuitry - completetime: 4 - materials: - Steel: 100 - Glass: 900 - Gold: 100 - - type: latheRecipe id: ArtifactCrusherMachineCircuitboard result: ArtifactCrusherMachineCircuitboard @@ -604,7 +594,7 @@ completetime: 4 materials: Steel: 50 - Glass: 350 + Glass: 450 - type: latheRecipe id: SMESMachineCircuitboard @@ -921,7 +911,7 @@ materials: Steel: 100 Glass: 900 - + - type: latheRecipe id: ShuttleGunPerforatorCircuitboard result: ShuttleGunPerforatorCircuitboard @@ -930,7 +920,7 @@ Steel: 100 Glass: 900 Gold: 100 - + - type: latheRecipe id: ShuttleGunKineticCircuitboard result: ShuttleGunKineticCircuitboard @@ -938,7 +928,7 @@ materials: Steel: 100 Glass: 900 - + - type: latheRecipe id: ShuttleGunFriendshipCircuitboard result: ShuttleGunFriendshipCircuitboard @@ -947,7 +937,7 @@ Steel: 100 Glass: 900 Gold: 50 - + - type: latheRecipe id: ShuttleGunDusterCircuitboard result: ShuttleGunDusterCircuitboard @@ -962,4 +952,14 @@ result: ReagentGrinderIndustrialMachineCircuitboard completetime: 5 materials: - Steel: 100 \ No newline at end of file + Steel: 100 + Glass: 900 + Gold: 100 + +- type: latheRecipe + id: JukeboxCircuitBoard + result: JukeboxCircuitBoard + completetime: 4 + materials: + Steel: 100 + Glass: 900 diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index a1ca3ea38e..60cb8a21f3 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -542,11 +542,8 @@ amount: 1 Silicon: amount: 1 - Benzene: - amount: 1 products: Insuzine: 3 - Ash: 1 - type: reaction id: Necrosol @@ -573,4 +570,4 @@ Sigynate: amount: 2 products: - Aloxadone: 4 + Aloxadone: 4 diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 79dac27510..afb1f0ff50 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -70,6 +70,7 @@ - BorgModuleClowning - DawInstrumentMachineCircuitboard - MassMediaCircuitboard + - JukeboxCircuitBoard - type: technology id: RoboticCleanliness diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index 1b1a738322..77adfcf5d5 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -87,13 +87,12 @@ id: AbnormalArtifactManipulation name: research-technology-abnormal-artifact-manipulation icon: - sprite: Structures/Machines/traversal_distorter.rsi - state: display + sprite: Structures/Machines/artifact_crusher.rsi + state: icon discipline: Experimental tier: 2 cost: 5000 recipeUnlocks: - - TraversalDistorterMachineCircuitboard - ArtifactCrusherMachineCircuitboard - type: technology diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index 850b25700e..88fe5b5ce5 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -21,7 +21,6 @@ equipment: shoes: ClothingShoesGaloshes id: JanitorPDA - gloves: ClothingHandsGlovesJanitor ears: ClothingHeadsetService belt: ClothingBeltJanitorFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 8388cec302..70d74b932a 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -127,7 +127,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperativeMedic mask: ClothingMaskGasSyndicate - eyes: ClothingEyesHudSyndicate + eyes: ClothingEyesHudSyndicateAgent ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitSyndieMedic diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml index 7e956826fa..bcacf12e90 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml @@ -23,4 +23,4 @@ ears: ClothingHeadsetMedical belt: ChemBag pocket1: HandLabeler - # the purple glasses? \ No newline at end of file + eyes: ClothingEyesGlassesChemical \ No newline at end of file diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml index 3e852ae33f..23943b919d 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml @@ -20,7 +20,6 @@ - type: startingGear id: ResearchAssistantGear equipment: - back: ClothingBackpackScienceFilled shoes: ClothingShoesColorWhite id: ResearchAssistantPDA ears: ClothingHeadsetScience diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 2a1c8edc4c..dfd2da5351 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -47,5 +47,4 @@ id: HoSPDA gloves: ClothingHandsGlovesCombat ears: ClothingHeadsetAltSecurity - belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolMk58 \ No newline at end of file + pocket1: WeaponPistolMk58 diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index 5ba90c350b..1bd5c70c81 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -28,5 +28,4 @@ equipment: eyes: ClothingEyesGlassesSecurity ears: ClothingHeadsetSecurity - belt: ClothingBeltSecurityFilled pocket1: WeaponPistolMk58 diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 82bdaf8952..ad31409f70 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -31,5 +31,4 @@ eyes: ClothingEyesGlassesSecurity id: WardenPDA ears: ClothingHeadsetSecurity - belt: ClothingBeltSecurityFilled - pocket1: WeaponPistolMk58 \ No newline at end of file + pocket1: WeaponPistolMk58 diff --git a/Resources/Prototypes/StatusEffects/health.yml b/Resources/Prototypes/StatusEffects/health.yml index 562dbb336d..6456ac6dc2 100644 --- a/Resources/Prototypes/StatusEffects/health.yml +++ b/Resources/Prototypes/StatusEffects/health.yml @@ -1,7 +1,7 @@ - type: statusIcon id: HealthIcon abstract: true - priority: 1 + priority: 3 locationPreference: Right isShaded: true diff --git a/Resources/Prototypes/StatusEffects/security.yml b/Resources/Prototypes/StatusEffects/security.yml index ca25f746f2..00119fb44d 100644 --- a/Resources/Prototypes/StatusEffects/security.yml +++ b/Resources/Prototypes/StatusEffects/security.yml @@ -1,7 +1,7 @@ - type: statusIcon id: SecurityIcon abstract: true - priority: 2 + priority: 3 offset: 1 locationPreference: Right isShaded: true diff --git a/Resources/Prototypes/StatusIcon/antag.yml b/Resources/Prototypes/StatusIcon/antag.yml index da530a86d8..0dbdfce4f9 100644 --- a/Resources/Prototypes/StatusIcon/antag.yml +++ b/Resources/Prototypes/StatusIcon/antag.yml @@ -28,7 +28,7 @@ - type: statusIcon id: MindShieldIcon - priority: 1 + priority: 2 locationPreference: Right layer: Mod isShaded: true diff --git a/Resources/Prototypes/floor_trap.yml b/Resources/Prototypes/floor_trap.yml new file mode 100644 index 0000000000..217dd9fca2 --- /dev/null +++ b/Resources/Prototypes/floor_trap.yml @@ -0,0 +1,116 @@ +- type: entity + id: CollideFloorTrap + abstract: true + placement: + mode: SnapgridCenter + components: + - type: Sprite + sprite: Tiles/Misc/floortrap.rsi + state: floortrap + - type: Fixtures + fixtures: + floortrap: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + hard: false + mask: + - ItemMask + layer: + - SlipLayer + - type: Physics + - type: Tag + tags: + - HideContextMenu + +- type: entity + parent: CollideFloorTrap + id: CollideFloorTrapSpawn + name: floor trap spawn + abstract: true + components: + - type: Sprite + sprite: Tiles/Misc/floortrap.rsi + state: floortrapspawn + +- type: entity + parent: CollideFloorTrap + id: FloorTrapExplosion + name: explosion floor trap + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: ExplodeOnTrigger + - type: Explosive + explosionType: Default + totalIntensity: 20.0 + intensitySlope: 5 + maxIntensity: 4 + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrap + id: FloorTrapEMP + name: EMP floor trap + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: EmpOnTrigger + range: 2 + energyConsumption: 5000 + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapCarp + suffix: Carp + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobCarp + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapBear + suffix: Bear + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobBearSpace + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapKangaroo + suffix: Kangaroo + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobKangarooSpace + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapXenoDrone + suffix: Xeno. Drone + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobXenoDrone + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapXenoBurrower + suffix: Xeno. Burrower + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobXeno + - type: DeleteOnTrigger diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 021427014c..f6cedeb937 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -261,9 +261,6 @@ - type: Tag id: CannonBall -- type: Tag - id: CannonRestrict - - type: Tag id: CannotSuicide diff --git a/Resources/Prototypes/themes.yml b/Resources/Prototypes/themes.yml index edd2681a62..3952687255 100644 --- a/Resources/Prototypes/themes.yml +++ b/Resources/Prototypes/themes.yml @@ -12,6 +12,8 @@ concerningOrangeFore: "#A5762F" dangerousRedFore: "#BB3232" disabledFore: "#5A5A5A" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14PlasmafireTheme path: /Textures/Interface/Plasmafire/ @@ -26,6 +28,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14SlimecoreTheme path: /Textures/Interface/Slimecore/ @@ -40,6 +44,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14ClockworkTheme path: /Textures/Interface/Clockwork/ @@ -54,6 +60,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14RetroTheme path: /Textures/Interface/Retro/ @@ -68,6 +76,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14MinimalistTheme path: /Textures/Interface/Minimalist/ @@ -82,6 +92,8 @@ concerningOrangeFore: "#A5762F" dangerousRedFore: "#BB3232" disabledFore: "#5A5A5A" + _itemstatus_content_margin_right: "#06060604" + _itemstatus_content_margin_left: "#06060604" - type: uiTheme id: SS14AshenTheme path: /Textures/Interface/Ashen/ @@ -96,3 +108,5 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060604" + _itemstatus_content_margin_left: "#06060604" diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml b/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml index a0e434dc77..927a56a505 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml @@ -8,5 +8,6 @@ Antagonists can take many forms, like: - Nuclear operatives, with the goal of infiltrating and destroying the station. - Traitors infiltrating the crew who can assassinate targets and steal high value items. + - Space Ninjas, masters of espionage and sabotage, who are equipped with special gear. - Several non-humanoid creatures, who usually just try to bring down as many crewmembers as they can. diff --git a/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml b/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml index 7fed84da73..f088b9f27b 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml @@ -1,74 +1,80 @@ -# Space Ninja + # Space Ninja -The Space Ninja is a ghost role randomly available mid-late game. If you pick it you will be given your gear, your objectives and the greeting. + The [color=#66FF00]Space Ninja[/color] is a ghost role randomly available mid-late game. If you pick it you will be given your gear, your objectives and the greeting. -You are a ninja, but in space. The Spider Clan has sent you to the station to wreak all kinds of havoc, from bolting the armory open and killing the entire station to engaging in a slipping war with the clown and fighting in rage cages. + You are a ninja, but in space. [color=#66FF00]The Spider Clan[/color] has sent you to the station to wreak all kinds of havoc, and you are equipped to keep it silent-but-deadly. -# Equipment + Whether you mercilessly pick off the station's crew one by one, or assassinate the clown over and over, your discipline has taught you that [color=#66FF00]your objectives must be at least attempted[/color]. For honor! -You start with a microbomb implant, so if you get KIA or seppuku you will leave behind a nice crater and all your precious equipment is kept out of enemy hands. + # Equipment -Your bag is full of tools for more subtle sabotage, along with a survival box if you need a snack. + You begin implanted with a [color=#a4885c]death acidifier[/color], so if you are KIA or decide to commit seppuku you will leave behind one final gift to the janitor and all your precious equipment is kept out of enemy hands. -You have a jetpack and pinpointer that will let you find the station. + Your bag is full of tools for more subtle sabotage, along with a survival box if you need a snack. - + You have a [color=#a4885c]jetpack[/color] and [color=#a4885c]pinpointer[/color] that will let you find the station. -## Ninja Suit + - + ## Ninja Suit -Your single most important item is your suit, without it none of your abilities would work. -Your suit requires power to function, its internal battery can be replaced by clicking on it **with a better one**. -You can see the current charge by examining the suit or in a sweet battery alert at the top right of your screen. + -If you run out of power and need to recharge your battery, just use your gloves to drain an APC, substation or a SMES. + Your single most important item is [color=#66FF00]your suit[/color], without it none of your abilities would work. + Your suit requires power to function. Its [color=#a4885c]internal battery[/color] can be replaced by clicking on it with another one, and [color=#a4885c]higher capacity batteries[/color] mean a [color=#a4885c]highly effective ninja[/color]. + You can see the current charge by examining the suit or in a sweet battery alert at the top right of your screen. -## Ninja Gloves + If you run out of power and need to recharge your battery, just use your gloves to drain an APC, substation or a SMES. - + ## Ninja Gloves -These bad boys are your bread and butter. + -They are insulated so you can nom on wires in peace. Obviously they block your fingerprints from being left on things you touch. + [color=#66FF00]These bad boys are your bread and butter.[/color] -You have an action to toggle gloves. When the gloves are turned on, they allow you to use special abilities, which are triggered by interacting with things with an empty hand and with combat mode disabled. + They are made from [color=#a4885c]insulated nanomachines[/color] to assist you in gracefully breaking and entering into your destination without leaving behind fingerprints. -Your glove abilities include: -- Emagging an unlimited number of doors. -- Draining power from transformers such as APCs, substations or SMESes. The higher the voltage, the more efficient the draining is. -- You can shock any mob, stunning and slightly damaging them. -- You can download technologies from a R&D server for one of your objectives. -- You can hack a communications console to call in a threat. + You have an action to toggle gloves. When the gloves are turned on, they allow you to use [color=#a4885c]special abilities[/color], which are triggered by interacting with things with an empty hand and with combat mode disabled. -## Energy Katana + Your glove abilities include: + - Emagging an unlimited number of doors. + - Draining power from transformers such as APCs, substations or SMESes. The higher the voltage, the more efficient the draining is. + - You can shock any mob, stunning and slightly damaging them. + - You can download technologies from a R&D server for one of your objectives. + - You can hack a communications console to call in a threat. - + ## Energy Katana -Deals a lot of damage and can be recalled at will, costing suit power proportional to the distance teleported. -While in hand you can teleport to anywhere that you can see, meaning most doors and windows, but not past solid walls. -This has a limited number of charges which regenerate slowly, so keep a charge or two spare incase you need a quick getaway. + -## Spider Clan Charge + You have sworn yourself to the [color=#66FF00]sword[/color] and refuse to use firearms. + Deals a lot of damage and can be recalled at will, costing suit power proportional to the distance teleported. + + While in hand you can [color=#a4885c]teleport[/color] to anywhere that you can see, meaning most doors and windows, but not past solid walls. + This has a limited number of charges which regenerate slowly, so keep a charge or two spare incase you need a quick getaway. - + ## Spider Clan Charge -A modified C-4 explosive, you start with this in your pocket. Creates a large explosion but must be armed in your target area. -A random area on the map is selected for you to blow up, which is one of your objectives. It can't be activated manually, simply plant it on a wall or something. -Can't be unstuck once planted. + -## Ninja Shoes + [color=#66FF00]A modified C-4 explosive[/color], you start with this in your pocket. Creates a large explosion but must be armed in your target area. + A random area on the map is selected for you to blow up, which is one of your [color=#a4885c]objectives[/color]. -Special noslips that make you go really fast. -Energy not required. + It can't be activated manually, simply plant it on a wall or a particularly ugly piece of furniture. + Can't be unstuck once planted. -# Objectives + ## Ninja Shoes -- Download X research nodes: Use your gloves on an R&D server with a number of unlocked technologies -- Doorjack X doors on the station: Use your gloves to emag a number of doors. -- Detonate the spider clan charge: Plant your spider clan charge at a random location and watch it go boom. -- Call in a threat: Use your gloves on a communications console. -- Survive: Don't die. + Special [color=#a4885c]noslips[/color] that keep you agile, swift and upright. + Energy not required. + + # Objectives + + - Download X research nodes: Use your gloves on an R&D server with a number of unlocked technologies + - Doorjack X doors on the station: Use your gloves to emag a number of doors. + - Detonate the spider clan charge: Plant your spider clan charge at a random location and watch it go boom. + - Call in a threat: Use your gloves on a communications console. + - Survive: Don't die. diff --git a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml index ef6e1a49e8..f70f43c8a8 100644 --- a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml +++ b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml @@ -12,7 +12,7 @@ Cryogenics can be a bit daunting to understand, but hopefully, quick run through - + diff --git a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml index b7ba3d4c8b..b010e20abc 100644 --- a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml +++ b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml @@ -1,25 +1,24 @@ -# Artifact Reports -A large portion of Xenoarchaeology gameplay revolves around the interpretation of artifact reports, which are created at the [color=#a4885c]analysis console[/color] after an artifact is scanned. Reports contain the following information: + # Artifact Reports + A large portion of Xenoarchaeology gameplay revolves around the interpretation of artifact reports, which are created at the [color=#a4885c]analysis console[/color] after an artifact is scanned. Reports contain the following information: -- [color=#a4885c]Node ID:[/color] a unique numeric ID corresponding to this artifact's node. Useful in conjunction with a [color=#a4885c]node scanner[/color] for quickly identifying recurring nodes. + - [color=#a4885c]Node ID:[/color] a unique numeric ID corresponding to this artifact's node. Useful in conjunction with a [color=#a4885c]node scanner[/color] for quickly identifying recurring nodes. -- [color=#a4885c]Depth:[/color] a distance from the starting node (depth 0). This is a good shorthand for the value and danger of a node. + - [color=#a4885c]Depth:[/color] a distance from the starting node (depth 0). This is a good shorthand for the value and danger of a node. -- [color=#a4885c]Activation status:[/color] whether or not a node has been activated in the past. + - [color=#a4885c]Activation status:[/color] whether or not a node has been activated in the past. -- [color=#a4885c]Stimulus:[/color] the stimulus for that particular node. + - [color=#a4885c]Stimulus:[/color] the stimulus for that particular node. -- [color=#a4885c]Reaction:[/color] the reaction the stimulus induces. This is often vague, so caution is advised. + - [color=#a4885c]Reaction:[/color] the reaction the stimulus induces. This is often vague, so caution is advised. -- [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections. + - [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections. -- [color=#a4885c]Unextracted value:[/color] the amount of research points an artifact will give when extracted. Extracting sets this to zero and traversing new nodes increases it. - -Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated. - - - -To help with this process, consider printing out reports, writing down details uncovered during activation, or storing them in a folder nearby. + - [color=#a4885c]Unextracted value:[/color] the amount of research points an artifact will give when extracted. Extracting sets this to zero and traversing new nodes increases it. + Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated. + + + + To help with this process, consider printing out reports, writing down details uncovered during activation, or storing them in a folder nearby. diff --git a/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml b/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml deleted file mode 100644 index f46065c744..0000000000 --- a/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml +++ /dev/null @@ -1,18 +0,0 @@ - -# Traversal Distorter - -The traversal distorter is a late-game artifact machine that can aid in moving through the nodes of an artifact. - - - -Artifacts placed on top of a powered traversal distorter are subjected to a bias which affects which node they will move to after being activated. The bias can be set by clicking on the distorter. - -There are two types of biases: -- [color=#a4885c]In:[/color] favors nodes closer to the origin. Results in a decrease of depth. -- [color=#a4885c]Out:[/color] favors nodes farther away from the origin. Results in an increase of depth. - -Setting it to bias inwards allows you to return to the beginning of an artifact graph, if you've reached a dead end. - -Likewise, if you find yourself stuck at low depths, setting it to bias outward will help you find new nodes. In certain circumstances, toggling between the two allows you to repeatedly activate the same node. - - diff --git a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml index 3fedb678df..87177acbaf 100644 --- a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml +++ b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml @@ -2,18 +2,28 @@ # Xenoarchaeology Xenoarchaeology is a science subdepartment focused on researching and experimenting on alien artifacts. -## Artifacts +At the start of each shift, the Science department will usually have access to at least two artifacts to experiment on. You can buy more by talking to the Cargo department. + +By researching the unique things each artifact can do, you gain Research Points, increase the artifact's sale value, and potentially discover a useful ability or two that can help your department or the whole station! + +## Artifact Nodes -Artifacts consist of a randomly-generated graph structure. They consist of nodes connected to each other by edges, the traversal of which is the main goal of the scientists working on them. +Artifacts consist of a randomly-generated tree of nodes. These nodes have a "[color=#a4885c]depth[/color]", representing how dangerous the node is, and the number of other nodes connected to it, called "[color=#a4885c]edges[/color]", -Each node has two main components: a [color=#a4885c]stimulus[/color] and a [color=#a4885c]reaction[/color]. A stimulus is the external behavior that triggers the reaction. Some reactions are instantaneous effects while others are permanent changes. Triggering the reaction causes the artifact to move to one of the node's edges. +Artifacts always start at depth zero, the root of the tree. Travelling the tree to find as many nodes as possible is the main goal of the scientists working on them. Knowledge is extracted from nodes to gain Research Points and increase the artifact's sale value. -With these basic principles, you can begin to grasp how the different nodes of an artifact are interconnected, and how one can move between them by repeatedly activating nodes. +Each node has two components: its [color=#a4885c]stimulus[/color] and a [color=#a4885c]reaction[/color]. -While it might seem random to an untrained eye, a skilled scientist can learn to understand the internal structure of any artifact. +A stimulus is the external behavior that triggers the reaction. There's a variety of these, and higher depth nodes have more difficult to accomplish stimuli. Some stimuli will need improvisation to trigger, and you may need to talk to other departments to get everything you need. + +Some reactions are instantaneous effects while others are permanent changes. Once an artifact is triggered, the reaction causes the artifact to randomly move to another node it is linked to. + +With some experimental science, you can begin to grasp how the different nodes of an artifact are connected, and how to move between them by repeatedly activating nodes. + +All non-zero-depth nodes will have exactly one edge that leads up to its parent node. All other edges a node has lead down to the next depth. ## Artifact Analyzer and Analysis Console @@ -22,13 +32,26 @@ While it might seem random to an untrained eye, a skilled scientist can learn to The main equipment that you'll be using for Xenoarchaeology is the [color=#a4885c]artifact analyzer[/color] and the [color=#a4885c]analysis console[/color]. You can use these to create reports that contain valuable information about an artifact. -To set them up, simply link them with a network configurator, set an artifact on top of the analyzer, and press the [color=#a4885c]Scan[/color] button. +To set them up, simply link them with a network configurator and set an artifact on top of the analyzer. Every station has at least one of these machines already set up. -Using the console, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. The amount of points you extract is based on how many new nodes have been activated, since last extracting. You can extract multiple times, there is no reason not to!!! +Use the console's [color=#a4885c]scan[/color] button to discover what stimulus the artifact needs and what its reaction will do. Scanning takes thirty seconds. + +Use the [color=#a4885c]print[/color] button to save the scan result, so you can refer to it later. + +Once you've discovered a new node, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. ## Assembling Artifacts -It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, they usually find these while mining asteroids or on Expeditions. +It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, who usually find these while mining asteroids or on Expeditions. +## Traversal Bias + + + +Artifacts placed on top of a powered artifact analyzer are subjected to a bias which affects which node they will move to after being activated. The bias can be set in the artifact console. + +There are two types of biases: +- [color=#a4885c]Up:[/color] favors nodes closer to the origin. Results in a decrease of depth. +- [color=#a4885c]Down:[/color] favors nodes farther away from the origin. Results in an increase of depth. diff --git a/Resources/ServerInfo/Guidebook/Security/Forensics.xml b/Resources/ServerInfo/Guidebook/Security/Forensics.xml index 2189488c6b..3eb53b1e9a 100644 --- a/Resources/ServerInfo/Guidebook/Security/Forensics.xml +++ b/Resources/ServerInfo/Guidebook/Security/Forensics.xml @@ -1,4 +1,4 @@ - + # Forensics There are a lot of tools to help you gather and examine the evidence at your disposal @@ -40,7 +40,7 @@ ## Fibers Whenenever people wearing gloves touch anything on the station, they are bound to leave behind some fibers. This complicates things, but nothing is unsolvable for a real detective. - There are up to [color=red]16[/color] different types of fibers possible. Can that stop you from solving the case? + There are up to [color=red]25[/color] different types of fibers possible. Can that stop you from solving the case? diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png new file mode 100644 index 0000000000..84979d1097 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png new file mode 100644 index 0000000000..900b438c7e Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png new file mode 100644 index 0000000000..b888ce227a Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png new file mode 100644 index 0000000000..0e248905fb Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json new file mode 100644 index 0000000000..f3acabcc54 --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by IntegerTempest, edited by Golinth", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..b74049130c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..a3def50f88 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/black.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..7266432372 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..6bc5266367 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-hamster.png deleted file mode 100644 index 3b89ea8bdf..0000000000 Binary files a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-hamster.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..c576b30f47 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..378a1a3c19 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json index a9b3b1556d..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/botany.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -18,13 +18,17 @@ "directions": 4 }, { - "name": "equipped-HELMET-hamster", + "name": "equipped-HELMET-vox", "directions": 4 }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..5189f62e25 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..616bb8eeb3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/gold.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..ed4c08a325 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..958bcdf0ea Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json index a555369032..ef97b40b36 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/green.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..92f305f183 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..5d2af65f4b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..22df7888e7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..7cea36d539 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/meta.json index a555369032..a39a46ac81 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/red.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..99ed4f9cc2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..a5fdbe4aac Binary files /dev/null and b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json index a555369032..96c7993dd3 100644 --- a/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Bandanas/skull.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-MASK-vox & equipped-HELMET-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi and modified by Flareguy", "size": { "x": 32, "y": 32 @@ -17,10 +17,18 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..b432655c5a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/meta.json index bbb0aac664..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/gladiator.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -20,7 +20,11 @@ }, { "name": "inhand-right", - "direction": 4 + "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hats/paper.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/paper.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..5f5c3376d7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/paper.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/paper.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..a51c268041 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json index ade65863af..e099085bde 100644 --- a/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..81601c6c2b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_green.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..24ea1365cd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/surgcap_purple.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/templar.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..3572a5de9f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json index 7bd2e3e22a..5c8b454ea6 100644 --- a/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/templar.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..0cabbe106c Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json index a470e00944..8e639d26bc 100644 --- a/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/wizardhelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and modified to remove duplicate states", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..35cfa8ddc0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..90ad846f9b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..35cfa8ddc0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..2a8f1b0cdb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..4b90b700a8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json index a470e00944..8661a35af6 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-helmet-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..402d6bf76a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..d4a1f0848e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json index a470e00944..057d0b0ab2 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..65a8cb83c1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/meta.json b/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/meta.json index a470e00944..8e639d26bc 100644 --- a/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Misc/chickenhead.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and modified to remove duplicate states", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..5b2c255049 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json index e52e61ea70..e5a67c14e4 100644 --- a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, icon by лазік#7305", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, icon by лазік#7305. equipped-HELMET-vox state modified by Flareguy from vox welding helmet state", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "up-equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vox.png new file mode 100644 index 0000000000..14129a80cb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..6401496252 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json index e52e61ea70..07d399a7b1 100644 --- a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, icon by лазік#7305", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and up-equipped-HELMET modified by Flareguy, icon by лазік#7305. equipped-HELMET-vox state modified by Flareguy from vox welding helmet state", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "up-equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -38,4 +46,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vox.png new file mode 100644 index 0000000000..d011e47c2d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET.png index b60219becc..e7ef24dcee 100644 Binary files a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..0b9342b236 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json index e52e61ea70..0f5f121242 100644 --- a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, icon by лазік#7305", + "copyright": "Taken from CEV-Eris at https://github.com/discordia-space/CEV-Eris/blob/2a0d963d5bf68bd8ddf6fba6f60479bec172b51d/icons/inventory/head/mob.dmi, icon by лазік#7305. equipped-HELMET-vox state modified by Flareguy from 'welding' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "up-equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vox.png new file mode 100644 index 0000000000..6ecdfda3ea Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vox.png new file mode 100644 index 0000000000..6b19f42a82 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json index 90730cb2d0..10c0a80701 100644 --- a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "up-equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vox", + "directions": 4 + }, { "name": "equipped-HELMET-hamster", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vox.png new file mode 100644 index 0000000000..b13423cd8b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/bee.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/bee.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..05af835e9d Binary files /dev/null and b/Resources/Textures/Clothing/Mask/bee.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/bee.rsi/meta.json b/Resources/Textures/Clothing/Mask/bee.rsi/meta.json index cc214ea433..628b5d1ffc 100644 --- a/Resources/Textures/Clothing/Mask/bee.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/bee.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/dannno/-tg-station/blob/a51c5a85d327f562004cef2f36c081ad0d95fd9a/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/dannno/-tg-station/blob/a51c5a85d327f562004cef2f36c081ad0d95fd9a/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json index 40340959f5..654b8824dc 100644 --- a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -18,6 +18,14 @@ "name": "up-equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -50,10 +58,6 @@ "name": "equipped-MASK-possum", "directions": 4 }, - { - "name": "equipped-MASK-vox", - "directions": 4 - }, { "name": "equipped-MASK-pig", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..770ad70cf5 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..0a7c6fc327 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json index 5a2271a685..de1f50a21b 100644 --- a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..7170d7ebdf Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json index 5a2271a685..ae1156c2f3 100644 --- a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..8975b1eb04 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json index ad2f1bb02a..f0d269dcd4 100644 --- a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state modified by Flareguy from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..bc0f5e9011 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json index e94986f1c5..d54a0aedee 100644 --- a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for ss14. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for ss14. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..ff33f30944 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json index 05b793baab..9c1b597c1d 100644 --- a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -14,10 +14,22 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "up-equipped-MASK", "directions": 4 }, + { + "name": "up-equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -25,10 +37,6 @@ { "name": "inhand-right", "directions": 4 - }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..e701323f55 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..59a80479f7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json index 45d104113e..22e5230685 100644 --- a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified to fix an error", "size": { "x": 32, "y": 32 @@ -37,6 +37,16 @@ [ 0.5, 0.5, 0.5 ], [ 0.5, 0.5, 0.5 ] ] + }, + { + "name": "equipped-MASK-vox", + "directions": 4, + "delays": [ + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ] + ] } ] } diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..9bd2b35d77 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json index 3c25ce6906..d47388b076 100644 --- a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..c3fa7f5917 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json index ca572b6d79..6d0cf06eee 100644 --- a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -67,6 +67,14 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..770ad70cf5 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..cab47297f0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json index 0efd190e10..41f28d6b51 100644 --- a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..529c87878e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json index 6add0fab0d..19aa5ab859 100644 --- a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..924742fa94 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json index be28392cdb..a8d15a80ad 100644 --- a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..67d3c25cac Binary files /dev/null and b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json index fe4aeba684..028c4bcc29 100644 --- a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..b1cb32a157 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json b/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json index 7f056eb524..1fcceb3516 100644 --- a/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..4ceaf59677 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json index 7f056eb524..88aad8fdc9 100644 --- a/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..18c64e1048 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json index 05b793baab..7af2fde86e 100644 --- a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -14,10 +14,22 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "up-equipped-MASK", "directions": 4 }, + { + "name": "up-equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -25,10 +37,6 @@ { "name": "inhand-right", "directions": 4 - }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vox.png new file mode 100644 index 0000000000..770ad70cf5 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..d654e3493c Binary files /dev/null and b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json index e85e91678e..2d5073b988 100644 --- a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github)", + "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,14 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -21,10 +29,6 @@ { "name": "inhand-right", "directions": 4 - }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..9d92b21329 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json index c7a0afcae3..5f95573206 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/armor_reflec.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dbc2435fa562f4ef130a7112d2a4cc9c80099894. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..599e73c76f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json index e482264df5..5c326232e4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/cult_armour.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/fce54deb01d465957691ba2907218d4af4830db2/icons/mob/clothing/species/vox/suit.dmi and north sprite modified", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f37eba3359 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavygreen.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..164f5e4592 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/heavyred.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e62fa89ab5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json index e482264df5..ca1146d007 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..0a224c92b9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/general.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..82b0ea9f36 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json index e482264df5..ca1146d007 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/janitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..044d87e2f6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json index e482264df5..ca1146d007 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/scientist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e426556e7d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json index e482264df5..ca1146d007 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f6b5c43d2b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json index e482264df5..ca1146d007 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/virology.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..59bf1f287b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1679773c73 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..a56db4fd53 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..091fe54d8b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apronbotanist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e0fd17d98a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/apronchef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..a159e88777 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/chef.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..94835833cc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json index e482264df5..21cd9257fd 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/classicponcho.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/fce54deb01d465957691ba2907218d4af4830db2/icons/mob/clothing/species/vox/suit.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..36e53e4396 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json index 56c0392ec4..86c101326a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Misc/nunrobe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/a20589c401fc9b0f23c1dea08c56d4a1697adcd6", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/a20589c401fc9b0f23c1dea08c56d4a1697adcd6. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..d9ccc1dd96 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json index e482264df5..ca1146d007 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/chicken.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..920cc9e05f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json index e482264df5..232bec9c0a 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/fire.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..440fc3375f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1d75531317 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json index 146bd662b4..19f610cdfe 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatatmos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -23,4 +27,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..092d66ea3e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json index c9f0d90ea1..1c427d3df9 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatbar.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..0fca4396ea Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json index c9a1729262..a4806cc1cb 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcap.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62 , edited by Skarletto (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, edited by Skarletto (github). equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and repaletted to match with the default state", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f4427249ec Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatcargo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..29002eaf6b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatce.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..781df9000b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json index c9f0d90ea1..1c427d3df9 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatclown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..015e325023 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatengi.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..d279e92da2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png new file mode 100644 index 0000000000..6f7573420d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png new file mode 100644 index 0000000000..85a0b83457 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png new file mode 100644 index 0000000000..70ade34a8d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json new file mode 100644 index 0000000000..4010520850 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd, recolored by Github user PursuitinAshes", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..334e1e8fe8 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathydro.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..7b1b9d883c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..f713d3c846 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json index c9f0d90ea1..1c427d3df9 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..438eced1b5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatminer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..a7ff104066 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatparamed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..1634304d13 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsci.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..e67c55f114 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json index 146bd662b4..f2f80aaa03 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatsec.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000..b4f8cacea5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png index 28cf03f49c..baeeca8781 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png index eaf984f437..854ea543e9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png index df033631e9..464c4bfc5e 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png index 77baaca885..d537128b82 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json index c9f0d90ea1..ade0905fb8 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 / https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, recolored by Github user Dutch-VanDerLinde.", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 @@ -23,4 +27,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..28cf03f49c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png new file mode 100644 index 0000000000..eaf984f437 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png new file mode 100644 index 0000000000..df033631e9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png new file mode 100644 index 0000000000..77baaca885 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json new file mode 100644 index 0000000000..c9f0d90ea1 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..73ab1326b8 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/jackboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..0d3d83cbad Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json index 8d56bf0c2b..5b3afdcd74 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/3d319f6157acc1c1cd9ebcb0f6f12641e051cf91", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/3d319f6157acc1c1cd9ebcb0f6f12641e051cf91. equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", "size": { "x": 32, "y": 32 @@ -15,6 +15,14 @@ "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "on-equipped-FEET-vox", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-vox.png new file mode 100644 index 0000000000..9c1af7f061 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/on-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..ff7074dbe3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json index ead74d8896..ae71606af3 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/debf90acfcafa4fb8d6723a37e0b8ac556c0702b", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/debf90acfcafa4fb8d6723a37e0b8ac556c0702b. equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", "size": { "x": 32, "y": 32 @@ -15,6 +15,14 @@ "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "on-equipped-FEET-vox", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-vox.png new file mode 100644 index 0000000000..c14f707834 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..66083b253d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json index 96b3f4109e..f2aa6dbc5b 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox & on-equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi, and equipped-FEET-vox state modified to fix inconsistencies", "size": { "x": 32, "y": 32 @@ -15,6 +15,14 @@ "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "on-equipped-FEET-vox", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-vox.png new file mode 100644 index 0000000000..e9d3dffc76 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..02a752334b Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Misc/slippers.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..a738307297 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Misc/tourist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..2dc1885cd3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..73ab1326b8 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/swat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/equipped-FEET-vox.png new file mode 100644 index 0000000000..838d02bb45 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json index 54b1191d42..1abf6951f1 100644 --- a/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Specific/wizard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. equipped-FEET-vox state taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/31d6576ba8102135d058ef49c3cb6ecbe8db8a79/icons/mob/species/vox/shoes.dmi", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Interface/Ashen/item_status_left.png b/Resources/Textures/Interface/Ashen/item_status_left.png new file mode 100644 index 0000000000..fb2bf2b9b4 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_left.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_left_highlight.png b/Resources/Textures/Interface/Ashen/item_status_left_highlight.png new file mode 100644 index 0000000000..91cd15dd4c Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_right.png b/Resources/Textures/Interface/Ashen/item_status_right.png new file mode 100644 index 0000000000..53f4f362d0 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_right.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_right_highlight.png b/Resources/Textures/Interface/Ashen/item_status_right_highlight.png new file mode 100644 index 0000000000..ad16bab6d1 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Ashen/template_small.png b/Resources/Textures/Interface/Ashen/template_small.png new file mode 100644 index 0000000000..f3a4379f76 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/template_small.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_left.png b/Resources/Textures/Interface/Clockwork/item_status_left.png new file mode 100644 index 0000000000..1ce950362d Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_left.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png b/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png new file mode 100644 index 0000000000..f715e06276 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_right.png b/Resources/Textures/Interface/Clockwork/item_status_right.png new file mode 100644 index 0000000000..5ea5ffcffa Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_right.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png b/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png new file mode 100644 index 0000000000..315d595c92 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Default/item_status_left.png b/Resources/Textures/Interface/Default/item_status_left.png new file mode 100644 index 0000000000..6c980f226e Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_left.png differ diff --git a/Resources/Textures/Interface/Default/item_status_left_highlight.png b/Resources/Textures/Interface/Default/item_status_left_highlight.png new file mode 100644 index 0000000000..87dea5cf10 Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Default/item_status_right.png b/Resources/Textures/Interface/Default/item_status_right.png new file mode 100644 index 0000000000..82ad44b48c Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_right.png differ diff --git a/Resources/Textures/Interface/Default/item_status_right_highlight.png b/Resources/Textures/Interface/Default/item_status_right_highlight.png new file mode 100644 index 0000000000..0c1c344848 Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_left.png b/Resources/Textures/Interface/Minimalist/item_status_left.png new file mode 100644 index 0000000000..d70eca2fe9 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_left.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png b/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png new file mode 100644 index 0000000000..b69872cd89 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_right.png b/Resources/Textures/Interface/Minimalist/item_status_right.png new file mode 100644 index 0000000000..89171b9b47 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_right.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png b/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png new file mode 100644 index 0000000000..d1474cee12 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Minimalist/template_small.png b/Resources/Textures/Interface/Minimalist/template_small.png new file mode 100644 index 0000000000..eb0ee037fd Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/template_small.png differ diff --git a/Resources/Textures/Interface/Nano/item_status_left.svg b/Resources/Textures/Interface/Nano/item_status_left.svg deleted file mode 100644 index c97f8de016..0000000000 --- a/Resources/Textures/Interface/Nano/item_status_left.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png deleted file mode 100644 index ec56480811..0000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Nano/item_status_middle.svg b/Resources/Textures/Interface/Nano/item_status_middle.svg deleted file mode 100644 index a913981db1..0000000000 --- a/Resources/Textures/Interface/Nano/item_status_middle.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png deleted file mode 100644 index 821a7cf1e2..0000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Nano/item_status_right.svg b/Resources/Textures/Interface/Nano/item_status_right.svg deleted file mode 100644 index d898bb2ce0..0000000000 --- a/Resources/Textures/Interface/Nano/item_status_right.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png deleted file mode 100644 index 5c11992a30..0000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_left.png b/Resources/Textures/Interface/Plasmafire/item_status_left.png new file mode 100644 index 0000000000..d5d25c9809 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_left.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png b/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png new file mode 100644 index 0000000000..afe37513fd Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_right.png b/Resources/Textures/Interface/Plasmafire/item_status_right.png new file mode 100644 index 0000000000..ca97f81c8f Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_right.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png b/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png new file mode 100644 index 0000000000..b95822b737 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_left.png b/Resources/Textures/Interface/Retro/item_status_left.png new file mode 100644 index 0000000000..21b107b84d Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_left.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_left_highlight.png b/Resources/Textures/Interface/Retro/item_status_left_highlight.png new file mode 100644 index 0000000000..fdd5a4fe7d Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_right.png b/Resources/Textures/Interface/Retro/item_status_right.png new file mode 100644 index 0000000000..5e7d54618d Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_right.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_right_highlight.png b/Resources/Textures/Interface/Retro/item_status_right_highlight.png new file mode 100644 index 0000000000..c6e12c41e6 Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/template_small.png b/Resources/Textures/Interface/Retro/template_small.png new file mode 100644 index 0000000000..7244b37f5c Binary files /dev/null and b/Resources/Textures/Interface/Retro/template_small.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_left.png b/Resources/Textures/Interface/Slimecore/item_status_left.png new file mode 100644 index 0000000000..a7d940f401 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_left.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png b/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png new file mode 100644 index 0000000000..322355b135 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_right.png b/Resources/Textures/Interface/Slimecore/item_status_right.png new file mode 100644 index 0000000000..77b53340a6 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_right.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png b/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png new file mode 100644 index 0000000000..1e1a631db4 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png index f7f54acdae..d61b60824c 100644 Binary files a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json index 8eaac10cd9..de7b26ad6c 100644 --- a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC.", + "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC. Splotch modified from Sharp by KittenColony(github)", "size": { "x": 32, "y": 32 @@ -600,6 +600,14 @@ { "name": "body_backspikes", "directions": 4 - } + }, + { + "name": "snout_splotch_primary", + "directions": 4 + }, + { + "name": "snout_splotch_secondary", + "directions": 4 + } ] } diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png new file mode 100644 index 0000000000..0098822db9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png new file mode 100644 index 0000000000..5a982ed354 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png differ diff --git a/Resources/Textures/Mobs/Demons/tomatokiller.rsi/alive.png b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/alive.png new file mode 100644 index 0000000000..5f459d518b Binary files /dev/null and b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Demons/tomatokiller.rsi/dead.png b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/dead.png new file mode 100644 index 0000000000..4b3ee970a0 Binary files /dev/null and b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Demons/tomatokiller.rsi/meta.json b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/meta.json new file mode 100644 index 0000000000..57e4c7351f --- /dev/null +++ b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": " taken from TG on commit https://github.com/tgstation/tgstation/commit/7e5f13f558253e76865e81c9641b7ec68e57754b", + "states": [ + { + "name": "alive", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "dead" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vox.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vox.png new file mode 100644 index 0000000000..c0723dcde6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json index c219407953..5e4d9412b0 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -57,6 +57,56 @@ ] ] }, + { + "name": "unlit-equipped-MASK-vox", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vox", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, { "name": "burnt-icon" }, diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vox.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vox.png new file mode 100644 index 0000000000..3cbf873967 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vox.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vox.png new file mode 100644 index 0000000000..c0723dcde6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json index c219407953..5e4d9412b0 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", "size": { "x": 32, "y": 32 @@ -57,6 +57,56 @@ ] ] }, + { + "name": "unlit-equipped-MASK-vox", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vox", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, { "name": "burnt-icon" }, diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vox.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vox.png new file mode 100644 index 0000000000..3cbf873967 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png new file mode 100644 index 0000000000..ce20b5eeee Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png new file mode 100644 index 0000000000..2d3863145b Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png new file mode 100644 index 0000000000..1704b9c3c1 Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json new file mode 100644 index 0000000000..3eb42e9e6f --- /dev/null +++ b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at ", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-left.png b/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-left.png new file mode 100644 index 0000000000..e04554ef29 Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-right.png b/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-right.png new file mode 100644 index 0000000000..a3a7a18608 Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/advanced.png b/Resources/Textures/Objects/Devices/signaller.rsi/advanced.png new file mode 100644 index 0000000000..2383bf5e21 Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/advanced.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/signaller.rsi/inhand-left.png new file mode 100644 index 0000000000..011508c4d1 Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/signaller.rsi/inhand-right.png new file mode 100644 index 0000000000..751ae9080b Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/meta.json b/Resources/Textures/Objects/Devices/signaller.rsi/meta.json index cefaeebebf..97bbc40162 100644 --- a/Resources/Textures/Objects/Devices/signaller.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/signaller.rsi/meta.json @@ -1,21 +1,33 @@ { - "version": 1, - - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Goonstation at commit https://github.com/goonstation/goonstation/commit/354d9635460c296dc7dce23ab39481dc4de6dc00, signaller2 created by TheShuEd", - - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "signaller state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/2c980a1f423f26e990a578bae057d1eca19675ec. inhands & advanced made by Flaregy for Space Station 14. advanced is modified from signaller", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "signaller" }, - "states": [ - { - "name": "signaller", - "directions": 1 - }, - { - "name": "signaller2", - "directions": 1 - } - ] -} \ No newline at end of file + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "advanced" + }, + { + "name": "advanced-inhand-left", + "directions": 4 + }, + { + "name": "advanced-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/signaller.png b/Resources/Textures/Objects/Devices/signaller.rsi/signaller.png index 37a47342a6..68ff28ad16 100644 Binary files a/Resources/Textures/Objects/Devices/signaller.rsi/signaller.png and b/Resources/Textures/Objects/Devices/signaller.rsi/signaller.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/signaller2.png b/Resources/Textures/Objects/Devices/signaller.rsi/signaller2.png deleted file mode 100644 index 799a7be6ea..0000000000 Binary files a/Resources/Textures/Objects/Devices/signaller.rsi/signaller2.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png index 5033cdecc7..873f89e181 100644 Binary files a/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png and b/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png index 45ea8a32f5..b2c59dc31a 100644 Binary files a/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png and b/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/dead.png new file mode 100644 index 0000000000..0051c4dc73 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/harvest.png new file mode 100644 index 0000000000..46a3b38982 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/meta.json new file mode 100644 index 0000000000..84a4237a60 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 1dbcf389b0ec6b2c51b002df5fef8dd1519f8068", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/seed.png new file mode 100644 index 0000000000..110dc64a4f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-1.png new file mode 100644 index 0000000000..0b1d58de9d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-2.png new file mode 100644 index 0000000000..6225f0c62d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-2.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png new file mode 100644 index 0000000000..af5f78e368 Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json index dc0d23c539..279bc73ec7 100644 --- a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json @@ -7,6 +7,9 @@ "y": 64 }, "states": [ + { + "name": "icon" + }, { "name": "glass" }, diff --git a/Resources/Textures/Structures/Machines/jukebox.rsi/meta.json b/Resources/Textures/Structures/Machines/jukebox.rsi/meta.json new file mode 100644 index 0000000000..f447b26ddf --- /dev/null +++ b/Resources/Textures/Structures/Machines/jukebox.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at f349b842c84f500399bd5673e5e34a6bc45b001a, direct dmi link https://github.com/tgstation/tgstation/blob/f349b842c84f500399bd5673e5e34a6bc45b001a/icons/obj/stationobjs.dmi", + "states": [ + { + "name": "on" + }, + { + "name": "off" + }, + { + "name": "select", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Machines/jukebox.rsi/off.png b/Resources/Textures/Structures/Machines/jukebox.rsi/off.png new file mode 100644 index 0000000000..f3c24b1c56 Binary files /dev/null and b/Resources/Textures/Structures/Machines/jukebox.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/jukebox.rsi/on.png b/Resources/Textures/Structures/Machines/jukebox.rsi/on.png new file mode 100644 index 0000000000..b397adc16a Binary files /dev/null and b/Resources/Textures/Structures/Machines/jukebox.rsi/on.png differ diff --git a/Resources/Textures/Structures/Machines/jukebox.rsi/select.png b/Resources/Textures/Structures/Machines/jukebox.rsi/select.png new file mode 100644 index 0000000000..0dd6d81373 Binary files /dev/null and b/Resources/Textures/Structures/Machines/jukebox.rsi/select.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png new file mode 100644 index 0000000000..1505c892b8 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png new file mode 100644 index 0000000000..e0d5a4d39e Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png new file mode 100644 index 0000000000..1505c892b8 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png new file mode 100644 index 0000000000..e0d5a4d39e Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png new file mode 100644 index 0000000000..38cb411508 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png new file mode 100644 index 0000000000..b863e36b8c Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png new file mode 100644 index 0000000000..38cb411508 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png new file mode 100644 index 0000000000..88ffa378d2 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png new file mode 100644 index 0000000000..136a48087b Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png new file mode 100644 index 0000000000..06fb688c5b Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png new file mode 100644 index 0000000000..136a48087b Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png new file mode 100644 index 0000000000..06fb688c5b Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png new file mode 100644 index 0000000000..80a85ef238 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png new file mode 100644 index 0000000000..4a194d7fb1 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png new file mode 100644 index 0000000000..80a85ef238 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png new file mode 100644 index 0000000000..88ffa378d2 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/meta.json b/Resources/Textures/Structures/cargo_pallets.rsi/meta.json index 4751d95b9b..c32fcfefd0 100644 --- a/Resources/Textures/Structures/cargo_pallets.rsi/meta.json +++ b/Resources/Textures/Structures/cargo_pallets.rsi/meta.json @@ -10,8 +10,72 @@ { "name": "cargo_pallet_buy" }, + { + "name": "cargo_pallet_buy_0", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_1", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_2", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_3", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_4", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_5", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_6", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_7", + "directions": 4 + }, { "name": "cargo_pallet_sell" + }, + { + "name": "cargo_pallet_sell_0", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_1", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_2", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_3", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_4", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_5", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_6", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_7", + "directions": 4 } ] } diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png new file mode 100644 index 0000000000..391437064e Binary files /dev/null and b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png differ diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png new file mode 100644 index 0000000000..764a0fed15 Binary files /dev/null and b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png differ diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json b/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json new file mode 100644 index 0000000000..586fad6d23 --- /dev/null +++ b/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "floortrap" + }, + { + "name": "floortrapspawn" + } + ] +} diff --git a/Resources/Textures/Tiles/glass.png b/Resources/Textures/Tiles/glass.png index 37adc67679..bc782a9c6c 100644 Binary files a/Resources/Textures/Tiles/glass.png and b/Resources/Textures/Tiles/glass.png differ diff --git a/Resources/Textures/Tiles/rglass.png b/Resources/Textures/Tiles/rglass.png index bae2908132..6dd3bb5917 100644 Binary files a/Resources/Textures/Tiles/rglass.png and b/Resources/Textures/Tiles/rglass.png differ diff --git a/Resources/map_attributions.txt b/Resources/map_attributions.txt index 7c97d03a2f..f18c89e00e 100644 --- a/Resources/map_attributions.txt +++ b/Resources/map_attributions.txt @@ -49,3 +49,5 @@ - files: ["core.yml"] authors: Ubaser +- files: ["oasis.yml"] + authors: CptJeanLuc \ No newline at end of file diff --git a/Resources/migration.yml b/Resources/migration.yml index 5396baa96d..934c3a10f0 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -254,6 +254,8 @@ AirlockShuttleEasyPryLocked: AirlockExternalShuttleLocked ClothingBackpackFilledDetective: ClothingBackpackSecurityFilledDetective ClothingBackpackDuffelFilledDetective: ClothingBackpackDuffelSecurityFilledDetective ClothingBackpackSatchelFilledDetective: ClothingBackpackSatchelSecurityFilledDetective +FoodChili: FoodChiliPepper +FoodChilly: FoodChillyPepper # 2024-03-11 ImprovisedExplosive: FireBomb @@ -267,6 +269,8 @@ ClothingHeadHatHairflower: FoodPoppy RPED: null # 2024-03-30 +TraversalDistorterMachineCircuitboard: null +MachineTraversalDistorter: null # These are technically not equivalent, but it probably makes more sense to replace any existing SCAF stuff with SOME kind of armor, instead of just deleting it outright. ClothingHeadHelmetScaf: ClothingHeadHelmetBasic ClothingOuterArmorScaf: ClothingOuterArmorBasic diff --git a/RobustToolbox b/RobustToolbox index a6e7224672..73da147b88 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit a6e7224672402c36f0b61d7c082427b4ff31250e +Subproject commit 73da147b8811c8d032e0f119ef507a1c11ff4073